/* ============================================
   CROSSFLOW — Global Styles
   ============================================ */

/* --- Skip to main content (accessibility) --- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  z-index: 10000;
  padding: 10px 16px;
  background: #C6F135;
  color: #0a0a0a;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: top 0.15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 8px;
  outline: 2px solid #0a0a0a;
  outline-offset: 2px;
}

/* --- Font Faces --- */
@font-face {
  font-family: 'Grady';
  src: url('../assets/fonts/Grady.woff2') format('woff2'),
       url('../assets/fonts/Grady.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --lime: #C6F135;
  --lime-dark: #a8cc2a;
  --lime-glow: rgba(198, 241, 53, 0.25);
  --lime-glow-strong: rgba(198, 241, 53, 0.4);
  --black: #000000;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-card-hover: #1a1a1a;
  --dark-border: #222222;
  --dark-border-hover: #333333;
  --gray-900: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --white: #ffffff;

  --font-brand: 'Grady', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--lime-glow);
  --shadow-glow-strong: 0 0 60px var(--lime-glow-strong);

  --glow-pink: rgba(255, 100, 200, 0.4);
  --glow-cyan: rgba(100, 220, 255, 0.4);
  --glow-purple: rgba(180, 100, 255, 0.4);
  --glow-orange: rgba(255, 160, 60, 0.4);
  --glow-blue: rgba(100, 140, 255, 0.4);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-300);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--lime); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.brand-text { font-family: var(--font-brand); }
.text-lime { color: var(--lime); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(198, 241, 53, 0.1);
  border: 1px solid rgba(198, 241, 53, 0.2);
  border-radius: var(--radius-full);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

/* Orphan fix: center lone last items so they don't float to one side */
@media (min-width: 969px) {
  .grid-4 > :last-child:nth-child(4n+1) { grid-column: 2 / 4; justify-self: center; width: 100%; }
  .grid-3 > :last-child:nth-child(3n+1) { grid-column: 2; justify-self: center; width: 100%; }
}
@media (min-width: 641px) and (max-width: 968px) {
  .grid-3 > :last-child:nth-child(2n+1),
  .grid-4 > :last-child:nth-child(2n+1) { grid-column: 1 / -1; justify-self: center; max-width: 50%; }
}

@media (max-width: 968px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.85rem; }
}

@media (max-width: 960px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.82rem; }
}

.nav-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 1px;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--lime) !important;
  color: var(--black) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  box-shadow: var(--shadow-glow) !important;
  transform: translateY(-1px) !important;
}

.nav-game {
  font-size: 0.85rem !important;
  color: var(--gray-400) !important;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s !important;
}
.nav-game:hover {
  color: var(--lime) !important;
  opacity: 1;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    min-height: calc(100vh - var(--nav-height));
    z-index: 999;
    background: #000;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1.25rem !important; }
  /* Suppress animated hero elements that bleed through the nav overlay */
  body.nav-open .hero-game-btn {
    animation: none;
    z-index: -1;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--dark-border);
}
.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--lime);
  padding: 10px 20px;
}
.btn-ghost:hover {
  background: rgba(198, 241, 53, 0.1);
  color: var(--lime);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
  font-size: 0.9rem;
}
.btn-ghost-dark:hover {
  border-color: var(--lime-dark);
  color: var(--lime-dark);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* --- Cards --- */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--dark-border-hover);
  background: var(--dark-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 241, 53, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 1.25rem;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* --- Feature List (checkmarks) --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--gray-500);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.8rem;
}

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

.footer-bottom-links a {
  color: var(--gray-600);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Hero Section Base --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  animation: heroPan 25s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes heroPan {
  0% { transform: scale(1.05) translateX(-1%); }
  50% { transform: scale(1.12) translateY(-2%); }
  100% { transform: scale(1.05) translateX(1%); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--lime);
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(198, 241, 53, 0.1), 0 0 4px rgba(198, 241, 53, 0.15);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 { margin-bottom: 8px; }

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 20px 0;
  line-height: 1;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-card .price-note {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-card .feature-list {
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card .btn {
  width: 100%;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--lime-glow); }
  50% { box-shadow: 0 0 40px var(--lime-glow-strong); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }
.animate-in:nth-child(5) { transition-delay: 0.4s; }

/* --- Page transition --- */
#app {
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.page-enter {
  animation: fadeInUp 0.5s ease forwards;
}

/* --- Misc / Utility --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--dark-border);
}

.glow-line {
  width: 80px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 16px auto;
  box-shadow: 0 0 20px var(--lime-glow);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-lime {
  background: rgba(198, 241, 53, 0.15);
  color: var(--lime);
}

/* Badge on white backgrounds */
.section-white .badge-lime,
.card-light .badge-lime {
  background: rgba(30, 80, 10, 0.1);
  color: #3d6b1a;
}

/* Badge dark variant for white sections */
.badge-dark {
  background: rgba(0, 0, 0, 0.08);
  color: var(--gray-700);
  font-weight: 700;
}

/* Stats row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-row.visible .stat-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stats-row.visible .stat-item:nth-child(1) { transition-delay: 0s; }
.stats-row.visible .stat-item:nth-child(2) { transition-delay: 0.15s; }
.stats-row.visible .stat-item:nth-child(3) { transition-delay: 0.3s; }
.stats-row.visible .stat-item:nth-child(4) { transition-delay: 0.45s; }

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover .number {
  transform: scale(1.15);
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

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

.form-group label {
  display: block;
  color: var(--gray-300);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.75rem;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-500);
}

/* Testimonial */
.testimonial {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--lime);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial p {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 16px;
}

.testimonial .author {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-style: normal;
}

.testimonial .author strong {
  color: var(--white);
}

/* Blog card */
.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--dark-border-hover);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-meta span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.blog-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.blog-card-content h3 a {
  color: var(--white);
}

.blog-card-content h3 a:hover {
  color: var(--lime);
}

.blog-card-content p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Legal content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin: 32px 0 12px;
}

.legal-content p {
  color: var(--gray-400);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content ul li {
  color: var(--gray-400);
  margin-bottom: 8px;
  line-height: 1.7;
  list-style: disc;
}

/* Legal sidebar nav */
.legal-nav {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.legal-nav a {
  display: block;
  padding: 8px 16px;
  color: var(--gray-500);
  font-size: 0.875rem;
  border-left: 2px solid var(--dark-border);
  transition: var(--transition);
}

.legal-nav a:hover,
.legal-nav a.active {
  color: var(--lime);
  border-color: var(--lime);
}

/* Tab system */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--dark-card);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1px solid var(--dark-border);
  width: fit-content;
  margin: 0 auto 48px;
}

.tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: var(--transition);
  cursor: pointer;
}

.tab:hover { color: var(--white); }

.tab.active {
  background: var(--lime);
  color: var(--black);
  font-weight: 600;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--dark-card);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover { background: var(--dark-card-hover); }

.accordion-header .icon {
  font-size: 1.25rem;
  color: var(--lime);
  transition: var(--transition);
}

.accordion-item.open .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner {
  padding: 16px 24px 24px;
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

/* --- White Sections --- */
.section-white {
  background: var(--white);
}

.text-dark {
  color: var(--gray-900) !important;
}

.text-dark-muted {
  color: var(--gray-600) !important;
}

.section-label-dark {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--gray-700);
}

.card-light {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.card-light:hover {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.card-light h3 {
  color: var(--gray-900);
}

.card-light p {
  color: var(--gray-600);
}

.card-icon-light {
  background: rgba(100, 130, 10, 0.1);
  color: var(--lime-dark);
}

/* White section link override */
.section-white a {
  color: var(--lime-dark);
}
.section-white a:hover {
  color: var(--gray-900);
}

/* White section stats */
.section-white .stat-item .number {
  color: var(--lime-dark);
}
.section-white .stat-item .label {
  color: var(--gray-600);
}

/* White section subtitle override */
.section-white .section-subtitle {
  color: var(--gray-600);
}

/* White section button overrides */
.section-white .btn-primary {
  background: var(--lime-dark);
  color: var(--black);
}
.section-white .btn-primary:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.section-white .btn-secondary {
  border-color: var(--gray-300);
  color: var(--gray-900);
}
.section-white .btn-secondary:hover {
  border-color: var(--lime-dark);
  color: var(--lime-dark);
}

.section-white .btn-ghost {
  color: var(--lime-dark);
}
.section-white .btn-ghost:hover {
  background: rgba(168, 204, 42, 0.1);
}

/* White section glow-line */
.section-white .glow-line {
  background: var(--lime-dark);
  box-shadow: none;
}

/* White section feature list */
.section-white .feature-list li {
  color: var(--gray-700);
}
.section-white .feature-list li::before {
  color: var(--lime-dark);
}

/* White section form inputs */
.section-white .form-group input,
.section-white .form-group textarea,
.section-white .form-group select {
  background: var(--white);
  border-color: var(--gray-300);
  color: var(--gray-900);
}
.section-white .form-group input:focus,
.section-white .form-group textarea:focus,
.section-white .form-group select:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(168, 204, 42, 0.2);
}
.section-white .form-group label {
  color: var(--gray-700);
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.comparison-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  border-bottom: 2px solid var(--gray-200);
  background: transparent;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--gray-900);
}

.comparison-table tbody td:not(:first-child) {
  text-align: center;
}

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

.comparison-table tbody tr:hover {
  background: var(--gray-100);
}

@media (max-width: 640px) {
  .comparison-table {
    font-size: 0.8rem;
  }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 12px;
  }
}

/* --- Social Links --- */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
  transform: translateY(-2px);
}

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

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- Pricing Toggle --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: var(--transition);
  cursor: pointer;
}

.pricing-toggle-label.active {
  color: var(--white);
  font-weight: 600;
}

.pricing-toggle-switch {
  position: relative;
  width: 56px;
  height: 30px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--lime);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.pricing-toggle-switch.annual::after {
  transform: translateX(26px);
}

.pricing-toggle-switch:hover {
  border-color: var(--lime);
}

.pricing-save-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(198, 241, 53, 0.15);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* --- Features Page --- */
.feature-detail-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.feature-detail-card:hover {
  border-color: var(--dark-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-detail-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-detail-card .feature-list li {
  font-size: 0.9rem;
}

/* --- ARIA AI Section --- */
.aria-glow {
  position: relative;
}

.aria-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--lime), rgba(198, 241, 53, 0.2), var(--lime));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
  animation: ariaGlow 3s ease-in-out infinite alternate;
}

@keyframes ariaGlow {
  0% { opacity: 0.3; filter: blur(8px); }
  100% { opacity: 0.6; filter: blur(12px); }
}

/* --- SVG Icon System --- */
.cf-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.cf-icon-lg {
  width: 32px;
  height: 32px;
}

.cf-icon-xl {
  width: 56px;
  height: 56px;
}

.card-icon .cf-icon,
.card-icon-light .cf-icon {
  width: 24px;
  height: 24px;
}

/* --- Currency Selector --- */
.currency-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.currency-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  cursor: pointer;
  transition: var(--transition);
}

.currency-btn:hover {
  color: var(--white);
  border-color: var(--gray-500);
}

.currency-btn.active {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

/* --- Custom Package Card --- */
.pricing-card-custom {
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(198, 241, 53, 0.05) 100%);
  border: 1px dashed var(--lime);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.pricing-card-custom:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   ILLUSTRATIONS — Keyframes & Utilities
   ============================================ */

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes dashFlow {
  to { stroke-dashoffset: -24; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes sparkleFloat {
  0% { opacity: 0.9; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-90px) scale(0); }
}
@keyframes ringExpand {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.float-subtle { animation: subtleFloat 4s ease-in-out infinite; will-change: transform; }
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }
.glassmorphic {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}
.neon-border {
  border: 1px solid rgba(198,241,53,0.3);
  box-shadow: 0 0 15px rgba(198,241,53,0.15), inset 0 0 15px rgba(198,241,53,0.05);
}

/* ============================================
   CONVERGENCE ILLUSTRATION (Home — Problem)
   ============================================ */

.convergence-wrap {
  max-width: 700px;
  margin: 0 auto 56px;
}
.convergence-wrap svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 40px rgba(198,241,53,0.12));
}
.converge-line {
  stroke-dasharray: 6 4;
  animation: dashFlow 2.5s linear infinite;
}
.converge-icon-group {
  animation: subtleFloat 4s ease-in-out infinite;
  will-change: transform;
}
.converge-icon-group:nth-child(2) { animation-delay: -0.6s; }
.converge-icon-group:nth-child(3) { animation-delay: -1.2s; }
.converge-icon-group:nth-child(4) { animation-delay: -1.8s; }
.converge-icon-group:nth-child(5) { animation-delay: -2.4s; }
.converge-icon-group:nth-child(6) { animation-delay: -3.0s; }

/* ============================================
   GLOW-ENHANCED PROBLEM CARDS
   ============================================ */

.card-glow-pink { border-color: rgba(255,100,200,0.2); }
.card-glow-pink:hover { border-color: rgba(255,100,200,0.4); box-shadow: 0 0 30px rgba(255,100,200,0.15); }
.card-glow-orange { border-color: rgba(255,160,60,0.2); }
.card-glow-orange:hover { border-color: rgba(255,160,60,0.4); box-shadow: 0 0 30px rgba(255,160,60,0.15); }
.card-glow-cyan { border-color: rgba(100,220,255,0.2); }
.card-glow-cyan:hover { border-color: rgba(100,220,255,0.4); box-shadow: 0 0 30px rgba(100,220,255,0.15); }

/* ============================================
   HOW IT WORKS — Visual Flow
   ============================================ */

.hiw-step { position: relative; }
.hiw-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hiw-icon svg.cf-icon {
  width: 40px;
  height: 40px;
  color: var(--lime);
  position: relative;
  z-index: 1;
}
.hiw-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,241,53,0.12) 0%, transparent 70%);
  border: 1px solid rgba(198,241,53,0.15);
}
.hiw-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(198,241,53,0.12);
  animation: ringExpand 4s ease-out infinite;
  transform-origin: center;
  transform: translate(0,0) scale(1);
}
@keyframes hiwRing {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hiw-icon::after { animation: hiwRing 3s ease-out infinite; }

.hiw-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hiw-connector {
  display: none;
}
@media (min-width: 969px) {
  .hiw-connector {
    display: block;
    position: absolute;
    top: 50px;
    right: -52%;
    width: 104%;
    height: 2px;
    z-index: 0;
  }
  .hiw-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(198,241,53,0.3) 0, rgba(198,241,53,0.3) 6px, transparent 6px, transparent 12px);
  }
}

/* ============================================
   PLATFORM DIAGRAM (Home — Solution)
   ============================================ */

.platform-diagram {
  max-width: 640px;
  margin: 0 auto 56px;
}
.platform-diagram svg {
  width: 100%;
  height: auto;
}
.diagram-line {
  stroke-dasharray: 4 4;
  animation: dashFlow 3s linear infinite;
}

/* ============================================
   MODULE MOCKUP CARDS (Features page)
   ============================================ */

.module-mockup {
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.module-mockup-dark {
  background: linear-gradient(145deg, rgba(20,20,20,0.9) 0%, rgba(30,30,30,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
.module-mockup-light {
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.95) 100%);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.module-mockup-light .mockup-titlebar {
  border-bottom-color: rgba(0,0,0,0.06);
}
.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mockup-dot-red { background: #ff5f57; }
.mockup-dot-yellow { background: #ffbd2e; }
.mockup-dot-green { background: #28c840; }
.mockup-title {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 8px;
  opacity: 0.5;
}
.mockup-body {
  display: flex;
  gap: 12px;
  min-height: 200px;
}

/* Mockup internal elements */
.mockup-sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-sidebar-item {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}
.module-mockup-light .mockup-sidebar-item {
  background: rgba(0,0,0,0.05);
}
.mockup-sidebar-item.active {
  background: rgba(198,241,53,0.25);
  box-shadow: 0 0 8px rgba(198,241,53,0.15);
}
.mockup-content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
}
.module-mockup-light .mockup-line {
  background: rgba(0,0,0,0.04);
}
.mockup-line-short { width: 60%; }
.mockup-line-med { width: 80%; }
.mockup-progress {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  margin-top: 8px;
  overflow: hidden;
}
.module-mockup-light .mockup-progress {
  background: rgba(0,0,0,0.06);
}
.mockup-progress-fill {
  height: 100%;
  width: 65%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--lime), rgba(198,241,53,0.6));
  box-shadow: 0 0 10px rgba(198,241,53,0.3);
}

/* Kanban columns */
.mockup-kanban {
  display: flex;
  gap: 8px;
  flex: 1;
}
.mockup-kanban-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-kanban-header {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 4px;
  opacity: 0.4;
}
.mockup-kanban-card {
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.04);
}
.module-mockup-light .mockup-kanban-card {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.06);
}
.mockup-kanban-card.active {
  border-color: rgba(198,241,53,0.4);
  box-shadow: 0 0 12px rgba(198,241,53,0.15);
  background: rgba(198,241,53,0.08);
}

/* Product grid */
.mockup-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.mockup-product {
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
}
.module-mockup-light .mockup-product {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.06);
}
.mockup-product-img {
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(198,241,53,0.1) 0%, rgba(100,220,255,0.05) 100%);
}
.mockup-product-line {
  height: 6px;
  width: 70%;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
}
.mockup-product-price {
  height: 6px;
  width: 40%;
  border-radius: 3px;
  background: rgba(198,241,53,0.2);
}

/* Chat bubbles */
.mockup-chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}
.mockup-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 75%;
  min-height: 12px;
}
.mockup-bubble-left {
  background: rgba(255,255,255,0.06);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.module-mockup-light .mockup-bubble-left {
  background: rgba(0,0,0,0.04);
}
.mockup-bubble-right {
  background: rgba(198,241,53,0.15);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.mockup-bubble-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.module-mockup-light .mockup-bubble-line {
  background: rgba(0,0,0,0.06);
}
.mockup-bubble-right .mockup-bubble-line {
  background: rgba(198,241,53,0.15);
}

/* Checkout bar */
.mockup-checkout {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(198,241,53,0.12);
  border: 1px solid rgba(198,241,53,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-checkout-text {
  height: 6px;
  width: 50px;
  border-radius: 3px;
  background: rgba(198,241,53,0.3);
}
.mockup-checkout-btn {
  height: 18px;
  width: 50px;
  border-radius: 4px;
  background: var(--lime);
  opacity: 0.7;
}

/* Mockup label */
.mockup-label {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   ARIA SPARKLE PARTICLES
   ============================================ */

.aria-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aria-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,241,53,0.8), rgba(198,241,53,0) 70%);
  animation: sparkleFloat 3s ease-out infinite;
  will-change: transform, opacity;
}
.aria-particle:nth-child(1) { left: 20%; bottom: 10%; animation-delay: 0s; animation-duration: 2.8s; }
.aria-particle:nth-child(2) { left: 40%; bottom: 15%; animation-delay: 0.5s; animation-duration: 3.2s; }
.aria-particle:nth-child(3) { left: 60%; bottom: 5%; animation-delay: 1.0s; animation-duration: 2.6s; }
.aria-particle:nth-child(4) { left: 75%; bottom: 20%; animation-delay: 1.5s; animation-duration: 3.4s; }
.aria-particle:nth-child(5) { left: 30%; bottom: 25%; animation-delay: 2.0s; animation-duration: 2.9s; }
.aria-particle:nth-child(6) { left: 55%; bottom: 8%; animation-delay: 2.5s; animation-duration: 3.1s; }
.aria-particle:nth-child(7) { left: 85%; bottom: 12%; animation-delay: 0.8s; animation-duration: 3.5s; }

.aria-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(198,241,53,0.12);
  animation: ringExpand 3.5s ease-out infinite;
  pointer-events: none;
}
.aria-ring:nth-child(2) { animation-delay: 1.2s; }
.aria-ring:nth-child(3) { animation-delay: 2.4s; }

/* ============================================
   ILLUSTRATIONS — Responsive
   ============================================ */

@media (max-width: 968px) {
  .convergence-wrap { max-width: 500px; }
  .platform-diagram { max-width: 480px; }
  .module-mockup { min-height: 260px; padding: 20px; }
  .hiw-connector { display: none !important; }
}

@media (max-width: 640px) {
  .convergence-wrap { max-width: 100%; }
  .convergence-wrap svg { max-height: 200px; }
  .platform-diagram svg { max-height: 150px; }
  .module-mockup { min-height: 220px; }
  .mockup-body { flex-direction: column; }
  .mockup-sidebar { width: 100%; flex-direction: row; }
}

/* ============================================
   ILLUSTRATIONS — About Page Value Cards
   ============================================ */

.value-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.value-card-lime { border-color: rgba(198,241,53,0.25); }
.value-card-cyan { border-color: rgba(100,220,255,0.2); }
.value-card-purple { border-color: rgba(180,100,255,0.2); }
.value-card-orange { border-color: rgba(255,160,60,0.2); }

.value-card-lime:hover { box-shadow: 0 0 30px rgba(198,241,53,0.15); border-color: rgba(198,241,53,0.4); }
.value-card-cyan:hover { box-shadow: 0 0 30px rgba(100,220,255,0.15); border-color: rgba(100,220,255,0.4); }
.value-card-purple:hover { box-shadow: 0 0 30px rgba(180,100,255,0.15); border-color: rgba(180,100,255,0.4); }
.value-card-orange:hover { box-shadow: 0 0 30px rgba(255,160,60,0.15); border-color: rgba(255,160,60,0.4); }

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: glowPulse 4s ease-in-out infinite;
}
.value-icon-lime { background: rgba(198,241,53,0.12); color: var(--lime); }
.value-icon-cyan { background: rgba(100,220,255,0.12); color: #64dcff; }
.value-icon-purple { background: rgba(180,100,255,0.12); color: #b464ff; }
.value-icon-orange { background: rgba(255,160,60,0.12); color: #ffa03c; }

/* ============================================
   ILLUSTRATIONS — White Label Brand Mockup
   ============================================ */

.brand-mockup {
  background: linear-gradient(135deg, rgba(198,241,53,0.06), rgba(100,220,255,0.04));
  border: 1px solid rgba(198,241,53,0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.brand-mockup::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(198,241,53,0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(100,220,255,0.04) 0%, transparent 50%);
  animation: subtleFloat 8s ease-in-out infinite;
}
.brand-layer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-swatch {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.brand-bar {
  height: 10px;
  border-radius: 5px;
  flex: 1;
}
.brand-domain {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--lime);
  text-align: center;
}
.brand-logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(198,241,53,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: rgba(198,241,53,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* White Label How It Works Steps */
.wl-step {
  position: relative;
}
.wl-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(198,241,53,0.08);
  border: 1px solid rgba(198,241,53,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--lime);
  position: relative;
}
.wl-step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(198,241,53,0.1);
  animation: ringExpand 4s ease-out infinite;
  opacity: 0;
}
.wl-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-connector {
  display: none;
}
@media (min-width: 969px) {
  .wl-connector {
    display: block;
    position: absolute;
    top: 36px;
    left: calc(50% + 44px);
    width: calc(100% - 88px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--lime) 0 6px, transparent 6px 12px);
    opacity: 0.25;
  }
}

/* ============================================
   ILLUSTRATIONS — Contact Page Visual
   ============================================ */

.contact-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(198,241,53,0.05), rgba(100,220,255,0.03));
  border: 1px solid var(--gray-200);
  padding: 40px;
  text-align: center;
}
.contact-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(168,204,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--lime-dark);
}
.contact-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
.contact-dot:nth-child(1) { background: var(--lime-dark); animation-delay: 0s; }
.contact-dot:nth-child(2) { background: #64dcff; animation-delay: 0.5s; }
.contact-dot:nth-child(3) { background: #b464ff; animation-delay: 1s; }
.contact-dot:nth-child(4) { background: #ffa03c; animation-delay: 1.5s; }

/* ============================================
   ACADEMY DEMO BADGE
   ============================================ */

.academy-demo-badge {
  position: absolute;
  bottom: -14px;
  left: 20px;
  background: var(--dark);
  border: 1px solid rgba(198,241,53,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: glowPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE — Social Cards & Info Cards
   ============================================ */

.contact-hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.contact-social-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(198,241,53,0.25);
}
.contact-social-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-social-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.contact-social-sub {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: center;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
a.contact-info-card:hover {
  border-color: rgba(168,204,42,0.4);
  background: rgba(168,204,42,0.04);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168,204,42,0.12);
  border-radius: var(--radius-md);
  color: var(--lime-dark);
}
.contact-info-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid-responsive {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ============================================
   ILLUSTRATIONS — Pricing Glow
   ============================================ */

/* ============================================
   MYSTICAL — Floating Particle Field
   ============================================ */

@keyframes particleDrift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

@keyframes auroraShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

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

@keyframes constellationFade {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.5; }
}

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleDrift linear infinite;
  will-change: transform, opacity;
}

/* Aurora gradient overlay for dark sections */
.aurora-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background: linear-gradient(
    125deg,
    rgba(198,241,53,0.08) 0%,
    rgba(100,220,255,0.06) 25%,
    rgba(180,100,255,0.05) 50%,
    rgba(198,241,53,0.04) 75%,
    rgba(100,220,255,0.08) 100%
  );
  background-size: 300% 300%;
  animation: auroraShift 20s ease-in-out infinite;
}

/* ============================================
   MYSTICAL — Hero Orb
   ============================================ */

.hero-orb-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,241,53,0.2) 0%, rgba(198,241,53,0.05) 50%, transparent 70%);
  animation: orbPulse 5s ease-in-out infinite;
}
.hero-orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid;
  transform: translate(-50%, -50%);
}
.hero-orb-ring:nth-child(2) {
  width: 200px;
  height: 200px;
  border-color: rgba(198,241,53,0.12);
  animation: orbRotate 30s linear infinite;
}
.hero-orb-ring:nth-child(3) {
  width: 320px;
  height: 320px;
  border-color: rgba(100,220,255,0.08);
  animation: orbRotate 45s linear infinite reverse;
}
.hero-orb-ring:nth-child(4) {
  width: 440px;
  height: 440px;
  border-color: rgba(180,100,255,0.06);
  animation: orbRotate 60s linear infinite;
}
/* Small dots on the rings */
.hero-orb-ring:nth-child(2)::before,
.hero-orb-ring:nth-child(3)::before,
.hero-orb-ring:nth-child(4)::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.hero-orb-ring:nth-child(2)::before { background: rgba(198,241,53,0.5); box-shadow: 0 0 8px rgba(198,241,53,0.4); }
.hero-orb-ring:nth-child(3)::before { background: rgba(100,220,255,0.5); box-shadow: 0 0 8px rgba(100,220,255,0.4); }
.hero-orb-ring:nth-child(4)::before { background: rgba(180,100,255,0.4); box-shadow: 0 0 8px rgba(180,100,255,0.3); }

/* ============================================
   MYSTICAL — Section Divider Aurora Wave
   ============================================ */

.aurora-divider {
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(198,241,53,0.3),
    rgba(100,220,255,0.3),
    rgba(180,100,255,0.3),
    rgba(198,241,53,0.3),
    transparent
  );
  background-size: 200% 100%;
  animation: auroraShift 8s ease-in-out infinite;
  position: relative;
}
.aurora-divider::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 10px;
  background: inherit;
  filter: blur(8px);
  opacity: 0.6;
}

/* ============================================
   MYSTICAL — Constellation Background
   ============================================ */

.constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.constellation-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(198,241,53,0.4);
  box-shadow: 0 0 6px rgba(198,241,53,0.2);
  animation: constellationFade 4s ease-in-out infinite;
}
.constellation-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(198,241,53,0.1), rgba(100,220,255,0.08));
  transform-origin: left center;
  animation: constellationFade 6s ease-in-out infinite;
}

/* ============================================
   MYSTICAL — Glassmorphic Feature Cards
   ============================================ */

.mystic-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.mystic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,241,53,0.2), rgba(100,220,255,0.15), transparent);
}
.mystic-card:hover {
  border-color: rgba(198,241,53,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(198,241,53,0.05);
}

/* ============================================
   ILLUSTRATIONS — Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .float-subtle,
  .glow-pulse,
  .aria-particle,
  .aria-ring,
  .converge-icon-group,
  .converge-line,
  .diagram-line,
  .hiw-icon::after,
  .value-icon,
  .wl-step-icon::after,
  .brand-mockup::before,
  .contact-dot,
  .particle,
  .aurora-bg,
  .aurora-divider,
  .aurora-divider::before,
  .hero-orb-core,
  .hero-orb-ring,
  .constellation-dot,
  .constellation-line,
  .lms-orbit {
    animation: none !important;
  }
}


/* ============================================
   LMS PAGE
   ============================================ */

/* Hero visual */
.lms-hero-visual {
  max-width: 500px;
  margin: 48px auto 0;
}
.lms-hero-visual svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 30px rgba(100,220,255,0.08));
}
@keyframes lmsOrbitSpin {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -44; }
}
.lms-orbit {
  animation: lmsOrbitSpin 12s linear infinite;
}

/* Spec rows inside pricing cards */
.lms-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.85rem;
  color: var(--gray-400);
}
.lms-spec-row:first-of-type {
  margin-top: 8px;
  border-top: 1px solid var(--dark-border);
}
.lms-spec-row span:last-child {
  font-weight: 600;
  color: var(--gray-200);
}
.lms-pricing-card .feature-list {
  margin-top: 20px;
}

/* Add-on grid */
.lms-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lms-addon-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.3s ease;
}
.lms-addon-category:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.lms-addon-category h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lime);
}
.lms-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
  color: var(--gray-700);
}
.lms-addon-item:last-child {
  border-bottom: none;
}
.lms-addon-price {
  font-weight: 700;
  color: var(--lime-dark);
  white-space: nowrap;
  margin-left: 12px;
}

/* Extra capacity chips */
.lms-extras-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.lms-extra-chip {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--gray-700);
}
.lms-extra-chip strong {
  color: var(--lime-dark);
}

/* Comparison table category rows */
.table-cat {
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime) !important;
  background: rgba(198,241,53,0.04) !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid var(--dark-border) !important;
}
.section-white .table-cat {
  color: var(--lime-dark) !important;
  background: rgba(198,241,53,0.06) !important;
  border-bottom: 1px solid var(--gray-200) !important;
}

/* LMS responsive */
@media (max-width: 900px) {
  .lms-addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .lms-addon-grid {
    grid-template-columns: 1fr;
  }
  .lms-extras-row {
    flex-direction: column;
    align-items: stretch;
  }
  .lms-extra-chip {
    text-align: center;
  }
}

/* ============================================
   LMS PAGE — Additional Styles
   ============================================ */

/* --- LMS Comparison Table (dark background) --- */
.lms-comparison thead th {
  color: var(--gray-200);
  border-bottom: 2px solid var(--dark-border);
  background: transparent;
}
.lms-comparison tbody td {
  color: var(--gray-300);
  border-bottom: 1px solid var(--dark-border);
}
.lms-comparison tbody td:first-child {
  color: var(--gray-100);
}
.lms-comparison tbody tr:hover {
  background: var(--dark-card-hover);
}

/* Check / No / Highlight column */
.check {
  color: var(--lime) !important;
  font-size: 1.1rem;
  font-weight: 700;
}
.no {
  color: var(--gray-600) !important;
  font-size: 0.95rem;
}
.highlight-col {
  background: rgba(198, 241, 53, 0.04);
  border-left: 1px solid rgba(198, 241, 53, 0.15);
  border-right: 1px solid rgba(198, 241, 53, 0.15);
}
.lms-comparison thead th.highlight-col {
  color: var(--lime) !important;
  background: rgba(198, 241, 53, 0.06);
}

/* --- LMS Demo Section --- */
.lms-demo-section {
  padding: 80px 0;
}
.lms-demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lms-demo-text .section-label {
  margin-bottom: 12px;
  display: inline-block;
}
.lms-demo-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lms-demo-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.lms-demo-highlights li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(168, 204, 42, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23a8cc2a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Browser frame mockup */
.lms-browser-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
}
.lms-browser-bar {
  background: var(--gray-100);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}
.lms-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lms-browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lms-browser-content {
  background: #f8f9fa;
  padding: 0;
}
.lms-mock-header {
  background: #1a2332;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lms-mock-logo {
  width: 80px;
  height: 10px;
  background: rgba(198, 241, 53, 0.7);
  border-radius: 4px;
}
.lms-mock-nav {
  display: flex;
  gap: 8px;
}
.lms-mock-nav span {
  width: 28px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  display: inline-block;
}
.lms-mock-hero {
  background: linear-gradient(135deg, #1a2332, #0d1b2a);
  padding: 24px 16px 20px;
}
.lms-mock-hero-text {}
.lms-mock-line {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  display: block;
}
.lms-mock-courses {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #f0f2f5;
}
.lms-mock-course-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.lms-mock-course-thumb {
  height: 50px;
  width: 100%;
}
.lms-mock-course-body {
  padding: 8px;
}
.lms-mock-progress-wrap {
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.lms-mock-progress-bar {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
}

/* --- LMS Demo responsive --- */
@media (max-width: 900px) {
  .lms-demo-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .lms-demo-visual { min-width: 0; overflow: hidden; }
  .lms-mock-courses {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .lms-mock-courses {
    grid-template-columns: repeat(2, 1fr);
  }
  .lms-mock-course-card:last-child {
    display: none;
  }
}

/* --- LMS pricing card user count legibility --- */
.lms-pricing-card .price span {
  color: var(--gray-400);
}

/* --- LMS FAQ: light-bg accordion overrides --- */
.lms-accordion {
  border: 1px solid var(--gray-200);
}
.lms-accordion .accordion-header {
  background: var(--white);
  color: var(--gray-900);
  border-bottom: 1px solid transparent;
}
.lms-accordion .accordion-header:hover {
  background: #f7f7f7;
}
.lms-accordion .accordion-header .icon {
  color: var(--lime-dark);
}
.lms-accordion.open .accordion-header {
  border-bottom-color: var(--gray-200);
}
.lms-accordion .accordion-body-inner {
  background: var(--white);
  color: var(--gray-600);
}

/* --- Pricing: bigger lime-green price --- */
.pricing-card .price {
  font-size: 3.5rem;
  color: var(--lime);
}
.pricing-card .price span {
  color: var(--gray-400);
}

/* ============================================================
   TEAM CHAT - Floating Bubbles Animation
   ============================================================ */
.chat-bubbles-scene {
  position: relative;
  width: 100%;
  height: 420px;
  background: radial-gradient(ellipse at 50% 40%, rgba(20,30,5,0.95) 0%, var(--dark) 75%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(198,241,53,0.1);
}
.cb-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,241,53,0.12) 0%, rgba(198,241,53,0.04) 40%, transparent 70%);
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* Float wrapper - handles vertical float */
.cb-float {
  position: absolute;
}
/* Pop wrapper - handles scale-in */
.cb-pop {
  animation: cbPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
/* Individual bubble floaters */
.cb-float-1 { top: 28%; left: 50%; transform: translate(-50%, -50%);
  animation: cbFloat1 5.5s ease-in-out 0.8s infinite; }
.cb-float-2 { top: 14%; left: 12%;
  animation: cbFloat2 4.8s ease-in-out 1.5s infinite; }
.cb-float-3 { top: 10%; right: 14%;
  animation: cbFloat3 5.2s ease-in-out 2.2s infinite; }
.cb-float-4 { bottom: 20%; right: 9%;
  animation: cbFloat4 4.5s ease-in-out 2.8s infinite; }
.cb-float-5 { bottom: 24%; left: 8%;
  animation: cbFloat5 5s ease-in-out 1.9s infinite; }
/* Stagger pop-in delays */
.cb-float-1 .cb-pop { animation-delay: 0.2s; }
.cb-float-2 .cb-pop { animation-delay: 0.8s; }
.cb-float-3 .cb-pop { animation-delay: 1.3s; }
.cb-float-4 .cb-pop { animation-delay: 1.8s; }
.cb-float-5 .cb-pop { animation-delay: 2.3s; }
@keyframes cbPopIn {
  from { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes cbFloat1 {
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50%     { transform: translate(-50%, -50%) translateY(-14px); }
}
@keyframes cbFloat2 {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-10px) rotate(0deg); }
}
@keyframes cbFloat3 {
  0%,100% { transform: translateY(0) rotate(4deg); }
  50%     { transform: translateY(-12px) rotate(0deg); }
}
@keyframes cbFloat4 {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50%     { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes cbFloat5 {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%     { transform: translateY(-11px) rotate(-1deg); }
}
/* Particles */
.cb-particle {
  position: absolute;
  border-radius: 50%;
  animation: cbParticleFloat linear infinite;
  opacity: 0;
}
@keyframes cbParticleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  15%  { opacity: 1; }
  85%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}
/* Crossflow icon badge in bubble scene */
.cb-logo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.55;
  animation: cbPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.8s both;
}

/* ============================================
   ARIA — Persistent Support Widget
   ============================================ */

/* Widget wrapper — starts in hero-peek state */
.aria-widget {
  position: fixed;
  right: 12%;
  bottom: 0;
  z-index: 200;
  width: 120px;
  animation: ariaDrift 18s ease-in-out infinite alternate;
  transition: right 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
              bottom 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Floating state — bottom-right corner */
.aria-widget.aria-floating {
  right: 24px;
  bottom: 24px;
  animation: none;
}

/* Character button */
.aria-char {
  cursor: pointer;
  outline: none;
  user-select: none;
  position: relative;
  width: 120px;
  display: block;
  -webkit-tap-highlight-color: transparent;
}
.aria-char:focus-visible { outline: 2px solid var(--lime); border-radius: 50%; }

/* Unused clip wrapper kept for compatibility */
.aria-clip { display: contents; }

/* ---- Body ---- */
.aria-body {
  position: relative;
  left: 5px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #e2f952 0%, #c6f135 40%, #a8cc2a 75%, #8db520 100%);
  box-shadow:
    -5px  -20px 0 7px #d4ef38,
     5px  -22px 0 6px #daf540,
    18px  -18px 0 6px #cce830,
   -18px  -16px 0 6px #cce830,
   -26px   -4px 0 5px #c6e028,
    26px   -4px 0 5px #c6e028,
   -24px   10px 0 5px #bcd020,
    24px   10px 0 5px #bcd020,
   -14px   22px 0 6px #b2c818,
    14px   22px 0 6px #b2c818,
     0px   26px 0 6px #b8d020,
    0 0 32px rgba(198,241,53,0.5),
    0 0 64px rgba(198,241,53,0.2);
  /* Hero peek: body shifted down so only eyes show above viewport bottom */
  transform: translateY(44px);
  animation: ariaPeek 3.5s ease-in-out infinite;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hero hover: rise up to show more of the character */
.aria-widget:not(.aria-floating) .aria-char:hover .aria-body,
.aria-widget:not(.aria-floating) .aria-char:focus-visible .aria-body {
  transform: translateY(14px);
  animation-play-state: paused;
}

/* Floating: full body visible, gentle float */
.aria-widget.aria-floating .aria-body {
  transform: translateY(0);
  animation: ariaFloat 3s ease-in-out infinite;
}

/* Chat open: subtle excited wiggle */
.aria-widget.aria-chat-open .aria-body {
  animation: ariaWiggle 0.5s ease-in-out !important;
}

/* ---- Flower ---- */
.aria-tuft {
  position: absolute;
  top: -4px;
  left: 42px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffe44d;
  box-shadow:
    0  -10px 0 5px #ff88cc,
    0   10px 0 5px #ff88cc,
  -10px   0  0 5px #ff88cc,
   10px   0  0 5px #ff88cc,
   -7px -7px 0 4px #ffaadd,
    7px -7px 0 4px #ffaadd,
   -7px  7px 0 4px #ffaadd,
    7px  7px 0 4px #ffaadd;
  z-index: 2;
}
.aria-tuft::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 4px;
  width: 4px;
  height: 14px;
  background: #8db520;
  border-radius: 2px;
}
.aria-tuft-2 { display: none; }

/* ---- Face ---- */
.aria-face {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* ---- Eyes ---- */
.aria-eye {
  position: relative;
  width: 30px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #b97af8 0%, #7c3aed 50%, #4c1d95 100%);
  border: 3px solid rgba(255,255,255,0.95);
  box-shadow: 0 0 0 2px rgba(124,58,237,0.4), 0 0 12px rgba(124,58,237,0.7);
  overflow: visible;
}
.aria-eye::before {
  content: '';
  position: absolute;
  top: 7px; left: 6px;
  width: 14px; height: 16px;
  border-radius: 50%;
  background: #1a0040;
}
.aria-eye::after {
  content: '';
  position: absolute;
  top: 6px; left: 14px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.98);
}

/* ---- Lashes ---- */
.aria-lashes {
  position: absolute;
  top: 0; left: 3px;
  width: 2px; height: 2px;
  background: transparent;
  box-shadow:
    1px  -8px  0 1.5px #1a0040,
    9px  -10px 0 1.5px #1a0040,
    17px -8px  0 1.5px #1a0040;
}

/* ---- Glasses ---- */
.aria-glasses {
  position: absolute;
  top: 25px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 22px;
  pointer-events: none;
}
.aria-glasses::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(60,20,120,0.75);
  box-sizing: border-box;
}
.aria-glasses::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 32px; height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(60,20,120,0.75);
  box-sizing: border-box;
}

/* ---- Speech bubble (hero hover only) ---- */
.aria-speech {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.9);
  transform-origin: bottom center;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.aria-speech::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}
/* Show speech bubble on hover in hero state */
.aria-widget:not(.aria-floating) .aria-char:hover .aria-speech,
.aria-widget:not(.aria-floating) .aria-char:focus-visible .aria-speech {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
/* Hide speech bubble in floating state (chat opens instead) */
.aria-widget.aria-floating .aria-speech { display: none; }

/* ---- Chat Panel ---- */
.aria-chat {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(198,241,53,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.aria-chat.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
/* Only show chat panel in floating state */
.aria-widget:not(.aria-floating) .aria-chat { display: none; }

/* Chat header */
.aria-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #161616;
  border-bottom: 1px solid #222;
}
.aria-chat-who { display: flex; align-items: center; gap: 10px; }
.aria-chat-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #e2f952 0%, #c6f135 60%, #a8cc2a 100%);
  box-shadow: 0 0 12px rgba(198,241,53,0.5);
  flex-shrink: 0;
}
.aria-chat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.aria-chat-status {
  font-size: 0.72rem;
  color: #c6f135;
}
.aria-chat-close {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.aria-chat-close:hover { color: #fff; background: #222; }

/* Messages */
.aria-chat-msgs {
  height: 280px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.aria-msg { display: flex; }
.aria-msg-aria { justify-content: flex-start; }
.aria-msg-user { justify-content: flex-end; }
.aria-msg-bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.83rem;
  line-height: 1.5;
}
.aria-msg-aria .aria-msg-bubble {
  background: #1e1e1e;
  color: #e5e5e5;
  border-bottom-left-radius: 4px;
}
.aria-msg-user .aria-msg-bubble {
  background: var(--lime);
  color: #0a0a0a;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.aria-typing .aria-msg-bubble {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}
.aria-typing .aria-msg-bubble span {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #555;
  animation: ariaTypingDot 1.2s ease-in-out infinite;
}
.aria-typing .aria-msg-bubble span:nth-child(2) { animation-delay: 0.2s; }
.aria-typing .aria-msg-bubble span:nth-child(3) { animation-delay: 0.4s; }

/* WhatsApp button */
.aria-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 12px;
  padding: 9px 14px;
  background: #1a2e1a;
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.aria-wa-btn:hover { background: #1f3a1f; border-color: rgba(74,222,128,0.6); color: #4ade80; }

/* Input row */
.aria-chat-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid #1e1e1e;
}
.aria-chat-inp {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  color: #fff;
  font-size: 0.83rem;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s;
}
.aria-chat-inp::placeholder { color: #555; }
.aria-chat-inp:focus { border-color: var(--lime); }
.aria-chat-send {
  background: var(--lime);
  border: none;
  border-radius: 10px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #0a0a0a;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.aria-chat-send:hover { background: var(--lime-dark); transform: scale(1.05); }

/* ---- Keyframes ---- */
@keyframes ariaDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-40px); }
}

@keyframes ariaPeek {
  0%, 100% { transform: translateY(44px) rotate(-2deg); }
  50%       { transform: translateY(34px) rotate(2deg); }
}

@keyframes ariaFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

@keyframes ariaWiggle {
  0%, 100% { transform: rotate(0); }
  25%  { transform: rotate(-8deg); }
  75%  { transform: rotate(8deg); }
}

@keyframes ariaTypingDot {
  0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
  40%            { transform: scale(1.4); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  .aria-widget { right: 16px; }
  .aria-chat { width: calc(100vw - 32px); right: 0; }
}

/* ============================================
   Pipeline Rush — Mini Game
   ============================================ */

@keyframes arcadeGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(198, 241, 53, 0.07), 0 16px 56px rgba(0, 0, 0, 0.55); }
  50%       { box-shadow: 0 0 70px rgba(198, 241, 53, 0.17), 0 16px 56px rgba(0, 0, 0, 0.55); }
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(198, 241, 53, 0.35), 0 4px 16px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 46px rgba(198, 241, 53, 0.65), 0 4px 16px rgba(0,0,0,0.4); }
}

/* Arcade card wrapper */
.game-arcade-card {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  background: #080c12;
  border: 1px solid rgba(198, 241, 53, 0.22);
  border-radius: 20px;
  overflow: hidden;
  animation: arcadeGlow 3s ease-in-out infinite;
}

/* Top brand bar */
.game-arcade-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(198, 241, 53, 0.1);
  background: rgba(198, 241, 53, 0.025);
}

.game-arcade-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.game-arcade-cf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--lime);
  color: #0d1a00;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.game-arcade-brand strong { color: var(--lime); }

.game-arcade-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Canvas + overlay */
.game-container {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.game-container canvas {
  display: block;
  width: 100%;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-overlay.state-idle {
  background: rgba(8, 12, 18, 0.50);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.game-overlay.state-dead {
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.game-overlay-inner {
  text-align: center;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.game-overlay-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.game-overlay-sub {
  font-size: 0.83rem;
  color: var(--gray-400);
  margin: 0;
  max-width: 300px;
  line-height: 1.5;
}

.game-score-display {
  font-size: 0.85rem;
  color: var(--gray-400);
  min-height: 1.3em;
}

.game-score-display b { color: var(--lime); }

/* Big glowing play button */
.game-play-btn {
  padding: 14px 44px !important;
  font-size: 1rem !important;
  border-radius: 100px !important;
  letter-spacing: 0.05em;
  animation: playPulse 2.2s ease-in-out infinite;
  margin-top: 4px;
}

/* Bottom controls bar */
.game-arcade-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  border-top: 1px solid rgba(198, 241, 53, 0.1);
  background: rgba(198, 241, 53, 0.025);
  flex-wrap: wrap;
  gap: 8px;
}

.game-controls-hint {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.game-cta-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lime);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.game-cta-link:hover { opacity: 1; text-decoration: underline; }

kbd {
  display: inline-block;
  padding: 1px 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  font-size: 0.69rem;
  font-family: var(--font-body);
  color: var(--gray-300);
}

@media (max-width: 600px) {
  .game-arcade-controls {
    justify-content: center;
    text-align: center;
  }
}

/* Hero floating game button */
@keyframes gameFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}

.hero-game-btn {
  position: absolute;
  top: 88px;
  left: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  z-index: 2;
  animation: gameFloat 3s ease-in-out infinite;
}

.hero-game-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 14, 20, 0.7);
  border: 1px solid rgba(198, 241, 53, 0.25);
  font-size: 1.4rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 16px rgba(198, 241, 53, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hero-game-btn-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
  white-space: nowrap;
}

.hero-game-btn:hover .hero-game-btn-icon {
  border-color: rgba(198, 241, 53, 0.6);
  box-shadow: 0 0 24px rgba(198, 241, 53, 0.25);
  transform: scale(1.1);
}

.hero-game-btn:hover .hero-game-btn-label {
  color: var(--lime);
}

@media (max-width: 600px) {
  .hero-game-btn { top: 72px; left: 20px; }
  .hero-game-btn-icon { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* --- Blog article card responsive --- */
@media (max-width: 768px) {
  .blog-article-text { padding: 28px 24px !important; }
}

/* --- Two-column module/content grid (responsive) --- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .two-col-grid-reverse > :first-child { order: 2; }
  .two-col-grid-reverse > :last-child  { order: 1; }
}

/* --- Section padding on mobile --- */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { min-height: 80vh; padding: calc(var(--nav-height) + 40px) 20px 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero p { font-size: 1rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .pricing-card { padding: 28px 24px; }
  h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
}
