/* ===============================================
   PLITAP - Modern CSS Architecture 2025
   Design System: Aurora Glassmorphism
   Version: 0.5.13
   =============================================== */

/* ===============================================
   1. CSS VARIABLES & DESIGN TOKENS
   =============================================== */
:root {
  /* Aurora Gradient Colors */
  --aurora-1: #FF006E;
  --aurora-2: #8338EC;
  --aurora-3: #3A86FF;
  --aurora-4: #06FFB4;
  --aurora-5: #FFB700;
  
  /* Neon Accents */
  --neon-pink: #FF10F0;
  --neon-blue: #00D9FF;
  --neon-green: #39FF14;
  --neon-purple: #BD00FF;
  
  /* Dark Theme Colors */
  --bg-primary: #0A0A0B;
  --bg-secondary: #111113;
  --bg-tertiary: #1A1A1F;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-tertiary: rgba(255, 255, 255, 0.6);
  
  /* Glass Effects */
  --glass-blur: 20px;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography Scale */
  --font-2xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-xs: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-sm: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
  --font-base: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-lg: clamp(1.25rem, 1.125rem + 0.625vw, 1.5rem);
  --font-xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --font-2xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --font-3xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  --font-4xl: clamp(3rem, 2rem + 5vw, 5rem);
  
  /* Animation Tokens */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal-backdrop: 40;
  --z-modal: 50;
  --z-popover: 60;
  --z-tooltip: 70;
}

/* ===============================================
   2. GLOBAL STYLES & RESETS
   =============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--aurora-2), var(--aurora-3));
  border-radius: 5px;
  transition: all var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--aurora-1), var(--aurora-2));
}

/* Selection */
::selection {
  background: var(--aurora-2);
  color: var(--text-primary);
}

/* ===============================================
   3. ANIMATED BACKGROUND
   =============================================== */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.aurora-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at 20% 30%, var(--aurora-1) 0%, transparent 40%),
              radial-gradient(ellipse at 80% 70%, var(--aurora-2) 0%, transparent 40%),
              radial-gradient(ellipse at 40% 60%, var(--aurora-3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 40%, var(--aurora-4) 0%, transparent 40%);
  animation: aurora-rotate 30s linear infinite;
  opacity: 0.15;
  filter: blur(80px);
}

@keyframes aurora-rotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Floating Particles */
.particle-field {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 50%;
  opacity: 0.5;
  animation: particle-float 20s linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* ===============================================
   4. GLASSMORPHISM COMPONENTS
   =============================================== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: glass-shine 3s ease-in-out infinite;
}

@keyframes glass-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* ===============================================
   5. NAVIGATION BAR
   =============================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all var(--transition-slow);
  opacity: 0;
}

.nav-logo .logo-icon {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.05em;
}

.nav-logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}

@keyframes logo-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 12px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

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

.nav-link:hover::before {
  width: 80%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===============================================
   6. HERO SECTION
   =============================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  animation: hero-fade-in 1s ease-out;
}

@keyframes hero-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: var(--font-4xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

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

.hero-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-lg);
  font-weight: 600;
  min-width: 280px;
  flex-direction: row;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(131, 56, 236, 0.3);
}

.download-btn svg {
  transition: transform var(--transition-base);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.download-btn:hover svg {
  transform: translateY(2px) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(131, 56, 236, 0.3));
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.download-text > div:first-child {
  font-size: var(--font-lg);
  font-weight: 600;
}

.download-btn svg {
  transition: transform var(--transition-base);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.coming-soon-text {
  font-size: var(--font-sm);
  font-weight: 500;
  opacity: 0.8;
  margin-top: 2px;
  animation: pulse-glow 2s ease-in-out infinite;
  background: linear-gradient(135deg, #FF006E, #8338EC, #06FFB4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ===============================================
   7. BUTTONS
   =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 16px;
  font-weight: 600;
  font-size: var(--font-base);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(131, 56, 236, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(131, 56, 236, 0.6);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
}

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

/* ===============================================
   8. HERO VISUAL - 3D CARDS
   =============================================== */
.hero-visual {
  position: relative;
  height: 600px;
  perspective: 1000px;
  animation: hero-visual-fade 1.2s ease-out 0.3s both;
}

@keyframes hero-visual-fade {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.floating-card {
  position: absolute;
  width: 300px;
  height: 400px;
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-slow);
  transform-style: preserve-3d;
}

.floating-card::after {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-family-heading);
  pointer-events: none;
  z-index: 1;
}

.floating-card:nth-child(1) {
  top: 10%;
  left: 10%;
  transform: rotateY(-15deg) rotateX(5deg);
  animation: float-1 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  top: 20%;
  right: 10%;
  transform: rotateY(15deg) rotateX(-5deg);
  animation: float-2 8s ease-in-out infinite;
}

.floating-card:nth-child(3) {
  bottom: 10%;
  left: 30%;
  transform: rotateY(-10deg) rotateX(10deg);
  animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(5deg); }
  50% { transform: translateY(-20px) rotateY(-15deg) rotateX(5deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) rotateY(15deg) rotateX(-5deg); }
  50% { transform: translateY(-30px) rotateY(15deg) rotateX(-5deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0) rotateY(-10deg) rotateX(10deg); }
  50% { transform: translateY(-25px) rotateY(-10deg) rotateX(10deg); }
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--aurora-2) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* ===============================================
   9. SECTION STYLES
   =============================================== */
section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  opacity: 0;
  animation: section-fade-in 0.8s ease-out forwards;
}

@keyframes section-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: var(--font-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===============================================
   10. BENTO GRID LAYOUT
   =============================================== */
.bento-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
}

.bento-item {
  background: var(--bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.bento-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.bento-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   11. RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    height: 400px;
    margin-top: var(--space-xl);
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-base);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: var(--font-3xl);
  }
  
  .floating-card {
    width: 200px;
    height: 250px;
  }
  
  .floating-card::after {
    font-size: 5rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-item.large,
  .bento-item.wide {
    grid-column: span 1;
  }
  
  .modern-tile-demo {
    width: 250px;
    height: 250px;
  }
  
  .central-tile {
    width: 100px;
    height: 100px;
  }
  
  .central-tile {
    font-size: 4rem;
  }
  
  .corner-tile {
    width: 50px;
    height: 50px;
  }
  
  .mini-content svg {
    width: 18px;
    height: 18px;
  }
  
  .particle {
    width: 4px;
    height: 4px;
  }
}

/* ===============================================
   12. UTILITY CLASSES
   =============================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

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

/* ===============================================
   13. LOADING ANIMATIONS
   =============================================== */

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

/* ===============================================
   14. FEATURE CARDS WITH 3D EFFECT
   =============================================== */

.feature-icon-3d {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  position: relative;
  transform-style: preserve-3d;
  animation: icon-float 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===============================================
   15. MICRO-INTERACTIONS
   =============================================== */
.interactive-element {
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.interactive-element::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--aurora-2) 0%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all var(--transition-base);
  pointer-events: none;
}

.interactive-element:hover::after {
  opacity: 0.3;
  transform: translate(-50%, -50%) scale(1.2);
}

/* ===============================================
   16. SMOOTH SCROLL INDICATOR
   =============================================== */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-secondary);
  z-index: var(--z-fixed);
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  width: 0%;
  transition: width 0.1s ease-out;
}

/* ===============================================
   17. AGGRESSIVE CURSOR HIDING FOR MACOS
   =============================================== */
.custom-cursor {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  display: block;
}

.custom-cursor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #ff006e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px #ffffff, 0 0 15px #ff006e;
}

.custom-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  transform: scale(1.3);
}

.custom-cursor.hover::before {
  background: #8338ec;
  box-shadow: 0 0 0 4px #ffffff, 0 0 20px #8338ec;
}

.custom-cursor.clicking {
  transform: scale(0.7);
}

.custom-cursor.clicking::before {
  background: #06ffa5;
  box-shadow: 0 0 0 2px #ffffff, 0 0 25px #06ffa5;
}

/* Aggressive cursor hiding */
*, *::before, *::after, html, body {
  cursor: none !important;
}

/* Force cursor none on all possible elements */
a, button, .interactive-element, .glass-card, 
.btn, .nav-link, .type-card, .floating-card, .hero-content, div, span, p, h1, h2, h3, h4,
section, footer, nav, ul, li, img, svg {
  cursor: none !important;
}

/* Additional cursor hiding for edge cases */
html, body, :root {
  cursor: none !important;
}

/* Ensure cursor is hidden even when leaving window */
body:hover, html:hover {
  cursor: none !important;
}

/* macOS compatibility - ensure cursor is visible */
.custom-cursor {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* Fallback for systems where custom cursor doesn't work */
@media (prefers-reduced-motion: no-preference) {
  .custom-cursor {
    display: block !important;
  }
}

/* ===============================================
   17.1. MOBILE DEVICE OPTIMIZATIONS
   =============================================== */

/* Disable custom cursor on mobile devices */
@media (max-width: 768px), (pointer: coarse) {
  .custom-cursor {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  
  /* Restore default cursor on mobile */
  *, *::before, *::after, html, body {
    cursor: auto !important;
  }
  
  a, button, .interactive-element, .glass-card, 
  .btn, .nav-link, .type-card, .floating-card, .hero-content, div, span, p, h1, h2, h3, h4,
  section, footer, nav, ul, li, img, svg {
    cursor: auto !important;
  }
  
  html, body, :root {
    cursor: auto !important;
  }
}

/* ===============================================
   17.2. ENHANCED MOBILE RESPONSIVENESS
   =============================================== */

/* Mobile-first approach for better performance */
@media (max-width: 480px) {
  /* GLOBAL FONT OVERRIDE FOR MOBILE - FORCE ALL ELEMENTS TO USE ONLY 3 FONT TYPES */
  * {
    font-family: var(--font-family-base) !important;
  }
  
  /* Override specific font declarations */
  .nav-logo .logo-icon,
  .floating-card::after,
  .central-tile,
  .economy-content h4,
  .feature-content h3,
  .business-main h3,
  .business-types h4,
  .business-cta h3,
  .investors-content h2,
  .uniqueness-item h4,
  .bento-title,
  .bento-item h4,
  .bento-additional-text,
  .hero-title,
  .hero-subtitle,
  .section-title,
  .section-subtitle,
  .download-btn,
  .nav-link,
  .logo-text,
  .benefit-content h4,
  .benefit-content p,
  .coming-soon-text,
  .download-text,
  .feature-list li,
  .footer-bottom p,
  button {
    font-family: var(--font-family-base) !important;
  }
  
  /* Ensure all fade-in elements are visible on mobile */
  .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  /* Container adjustments - minimal padding */
  .container {
    padding: 0 8px; /* Minimal padding for mobile */
  }
  
  /* Reduce padding in all sections */
  section {
    padding: var(--space-md) 0; /* Further reduced */
  }
  
  /* Reduce padding in bento items */
  .bento-item {
    padding: 8px; /* Minimal padding */
  }
  
  /* Remove padding from specific business cards */
  .business-main,
  .business-types,
  .business-cta {
    padding: 0; /* Remove all padding */
  }
  
  /* Remove padding from contact section */
  
  /* Reduce padding in investors section */
  .investors-content {
    padding: 8px; /* Minimal padding */
  }
  
  /* Reduce padding in feature showcase */
  .feature-showcase-item {
    gap: var(--space-md); /* Further reduced */
  }
  
  /* Hero section mobile optimization */
  .hero {
    padding: var(--space-xl) 0;
    min-height: 80vh;
    padding-top: calc(var(--space-xl) + 80px); /* Add space for fixed navbar */
  }
  
  .hero-title {
    font-size: var(--font-2xl);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: var(--font-base);
    margin-bottom: var(--space-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .download-btn {
    min-width: 100%;
    max-width: 280px;
  }
  
  /* Navigation mobile */
  .nav-container {
    padding: 0 var(--space-md);
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  /* Bento grid mobile optimization */
  .bento-grid {
    gap: var(--space-md);
  }
  
  .bento-item {
    padding: var(--space-md);
    min-height: 150px;
  }
  
  .bento-item.large {
    min-height: 200px;
  }
  
  /* Modern tile demo mobile */
  .modern-tile-demo {
    width: 200px;
    height: 200px;
  }
  
  .central-tile {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  
  .corner-tile {
    width: 40px;
    height: 40px;
  }
  
  .mini-content svg {
    width: 16px;
    height: 16px;
  }
  
  /* Features section mobile */
  .feature-showcase-item {
    gap: var(--space-lg);
  }
  
  .phone-mockup {
    width: 150px;
    height: 300px;
  }
  
  /* Business section mobile */
  .business-grid {
    gap: var(--space-lg);
  }
  
  .business-main {
    padding: var(--space-lg);
  }
  
  .business-benefits {
    gap: var(--space-sm);
  }
  
  .benefit-item {
    padding: var(--space-sm);
  }
  
  .type-grid {
    gap: var(--space-sm);
  }
  
  .type-card {
    padding: var(--space-sm);
  }
  
  /* Contact section mobile */
  .contact-wrapper {
    gap: var(--space-xl);
  }
  
  /* Investors section mobile */
  .investors-content {
    padding: var(--space-lg);
  }
  
  .uniqueness-grid {
    gap: var(--space-md);
  }
  
  .uniqueness-item {
    padding: var(--space-md);
  }
  
  /* Footer mobile */
  
  /* Section spacing mobile - updated */
  .section-header {
    margin-bottom: var(--space-lg); /* Reduced from var(--space-xl) */
  }
  
  .section-title {
    font-size: var(--font-2xl);
  }
  
  .section-subtitle {
    font-size: var(--font-base);
  }
  
  /* Button improvements for mobile */
  .btn {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-base);
    min-height: 48px; /* Better touch target */
  }
  
  .btn-primary {
    min-width: 200px;
  }
  
  /* Navigation improvements */
  .nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-base);
    min-height: 44px; /* Better touch target */
    display: flex;
    align-items: center;
  }
  
  /* Form improvements */
  
  /* Bento grid mobile improvements */
  .bento-item h4,
  .bento-title {
    font-size: var(--font-base);
    line-height: 1.3;
  }
  
  .bento-description,
  .bento-additional-text {
    font-size: var(--font-sm);
    line-height: 1.5;
  }
  
  /* Business section mobile improvements */
  .business-main h3 {
    font-size: var(--font-xl);
  }
  
  .business-main p {
    font-size: var(--font-base);
    line-height: 1.5;
  }
  
  .benefit-content h4 {
    font-size: var(--font-sm);
  }
  
  .benefit-content p {
    font-size: var(--font-xs);
  }
  
  /* Features section mobile improvements */
  .feature-content h3 {
    font-size: var(--font-xl);
  }
  
  .feature-content p {
    font-size: var(--font-base);
  }
  
  .feature-list li {
    font-size: var(--font-base);
    padding: var(--space-sm) 0;
  }
  
  /* Contact section mobile improvements */
  
  /* Investors section mobile improvements */
  .investors-content h2 {
    font-size: var(--font-xl);
  }
  
  .investors-content p {
    font-size: var(--font-base);
  }
  
  .uniqueness-item h4 {
    font-size: var(--font-base);
  }
  
  .uniqueness-item p {
    font-size: var(--font-sm);
  }
  
  /* Footer mobile improvements */
  
  /* STRICT FONT LIMIT FOR MOBILE - ONLY 3 TYPES */
  
  /* 1. MAIN HEADINGS (h1, h2, h3, .hero-title, .section-title) */
  h1, h2, h3, .hero-title, .section-title {
    font-family: var(--font-family-base) !important;
    font-weight: 700 !important; /* Bold for main headings */
  }
  
  /* 2. SUB-HEADINGS (h4, h5, h6, .bento-title, .business-main h3, .business-types h4, .business-cta h3, .contact-form-container h3) */
  h4, .bento-title, .business-main h3, .business-types h4, .business-cta h3, .investors-content h2, .feature-content h3, .uniqueness-item h4 {
    font-family: var(--font-family-base) !important;
    font-weight: 600 !important; /* Semi-bold for sub-headings */
  }
  
  /* 3. BODY TEXT (ALL OTHER TEXT) */
  body, p, .hero-subtitle, .section-subtitle, .bento-additional-text, .business-main p, .business-types p, .business-cta p, .investors-content p, .feature-content p, .feature-list li, .uniqueness-item p, .footer-bottom p, button, .download-btn, .nav-link, .logo-text, .benefit-content h4, .benefit-content p, .coming-soon-text, .download-text {
    font-family: var(--font-family-base) !important;
    font-weight: 500 !important; /* Regular weight for body text */
    line-height: 1.5 !important; /* Better line height for mobile reading */
  }
  
  /* Additional minimal padding for mobile */
  .glass-card {
    padding: 8px !important; /* Override all glass cards */
  }
  
  .section-header {
    margin-bottom: var(--space-md) !important; /* Reduce section spacing */
  }
  
  .bento-grid {
    gap: 8px !important; /* Minimal gap between items */
  }

}

/* ===============================================
   17.3. TABLET OPTIMIZATIONS
   =============================================== */

@media (min-width: 481px) and (max-width: 768px) {
  /* Ensure all fade-in elements are visible on tablets */
  .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .hero-container {
    gap: var(--space-xl);
  }
  
  .hero-title {
    font-size: var(--font-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-lg);
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .modern-tile-demo {
    width: 280px;
    height: 280px;
  }
  
  .central-tile {
    width: 100px;
    height: 100px;
    font-size: 4rem;
  }
  
  .corner-tile {
    width: 50px;
    height: 50px;
  }
  
  .mini-content svg {
    width: 20px;
    height: 20px;
  }
  
  /* Tablet-specific improvements */
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-base);
  }
  
  .nav-link {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-sm);
  }
  
  .bento-item h4,
  .bento-title {
    font-size: var(--font-lg);
  }
  
  .bento-description,
  .bento-additional-text {
    font-size: var(--font-base);
  }
  
  .business-main h3 {
    font-size: var(--font-2xl);
  }
  
  .business-main p {
    font-size: var(--font-lg);
  }
  
  .feature-content h3 {
    font-size: var(--font-2xl);
  }
  
  .feature-content p {
    font-size: var(--font-lg);
  }
  
  .feature-list li {
    font-size: var(--font-lg);
  }
  
  /* Tablet-specific padding adjustments */
  .container {
    padding: 0 var(--space-md); /* Slightly more padding than mobile */
  }
  
  section {
    padding: var(--space-xl) 0; /* More padding than mobile */
  }
  
  .bento-item {
    padding: var(--space-md); /* More padding than mobile */
  }
  
  .business-main,
  .business-types,
  .business-cta {
    padding: var(--space-lg); /* More padding than mobile */
  }
  
  .investors-content {
    padding: var(--space-lg); /* More padding than mobile */
  }
}

/* Alternative cursor for macOS when custom cursor fails */
/* Fallback cursor removed - using simplified approach */

/* ===============================================
   18. FOOTER STYLES
   =============================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-lg) 0;
  margin-top: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    var(--aurora-2),
    transparent
  );
}

.footer-bottom {
  border-top: 0;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: var(--font-xs);
  margin: 0;
}

/* ===============================================
   19. MODAL STYLES
   =============================================== */

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* ===============================================
   20. RESPONSIVE FOOTER
   =============================================== */
@media (max-width: 768px) {
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===============================================
   21. SECTION SPECIFIC STYLES
   =============================================== */

/* About Section */
.about {
  background: var(--bg-primary);
  position: relative;
}

.bento-item p {
  text-align: center;
}

.bento-title {
  text-align: center;
}

/* Unified styles for all feature headings */
.bento-item h4,
.economy-content h4,
.business-types h4,
.bento-title {
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  text-align: center;
}

.bento-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  text-align: center;
}

.bento-additional-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.bento-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.modern-tile-demo {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Interactive Tile */
.central-tile {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-heading);
  font-size: 5rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  animation: central-pulse 3s ease-in-out infinite;
  line-height: 1;
  letter-spacing: -0.08em;
}

.central-tile:hover {
  transform: scale(1.1) rotateY(5deg);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.central-tile .logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: logo-pulse 3s ease-in-out infinite;
  z-index: 2;
}

/* Floating Particles */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, var(--aurora-1), var(--aurora-3));
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 20%;
  right: 20%;
  animation-delay: 0.8s;
}

.particle-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.6s;
}

.particle-4 {
  bottom: 20%;
  right: 20%;
  animation-delay: 2.4s;
}

.particle-5 {
  top: 50%;
  left: 10%;
  animation-delay: 3.2s;
}

/* Connection Lines */
.connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-line {
  stroke-dasharray: 10, 5;
  animation: line-flow 3s linear infinite;
}

/* Corner Tiles */
.corner-tile {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 5;
}

.corner-1 {
  top: 0;
  left: 0;
}

.corner-2 {
  top: 0;
  right: 0;
}

.corner-3 {
  bottom: 0;
  left: 0;
}

.corner-4 {
  bottom: 0;
  right: 0;
}

.mini-tile {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  animation: mini-float 3s ease-in-out infinite;
}

.corner-1 .mini-tile {
  animation-delay: 0s;
}

.corner-2 .mini-tile {
  animation-delay: 0.75s;
}

.corner-3 .mini-tile {
  animation-delay: 1.5s;
}

.corner-4 .mini-tile {
  animation-delay: 2.25s;
}

.mini-tile:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
}

.mini-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mini-content svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.mini-tile:hover .mini-content svg {
  transform: scale(1.1);
}

/* Different colors for small tiles */

/* Modern Animations */
@keyframes central-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(255, 255, 255, 0.15);
  }
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes glow-pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes particle-float {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 1;
  }
  50% { 
    transform: translateY(-10px) translateX(-5px) scale(0.8);
    opacity: 0.5;
  }
  75% { 
    transform: translateY(-30px) translateX(15px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes line-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 30; }
}

@keyframes logo-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
}

/* Economy Preview */
.economy-preview {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.pt-coin-animation {
  flex-shrink: 0;
}

.coin-3d {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  position: relative;
  animation: icon-float 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
}

.coin-3d::before {
  content: 'Pt';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.05em;
  z-index: 2;
}

.coin-3d::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all var(--transition-slow);
  opacity: 0;
}

.pt-coin-animation:hover .coin-3d::after {
  animation: logo-shine 0.6s ease;
}

.economy-content h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.economy-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Features Section */
.features {
  background: var(--bg-secondary);
  position: relative;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.feature-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  justify-items: center;
}

.feature-content h3 {
  font-size: var(--font-2xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  text-align: center;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: var(--font-lg);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: var(--text-secondary);
  font-size: var(--font-lg);
  line-height: 1.6;
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--aurora-2);
  font-weight: 700;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: var(--bg-glass);
  border: 2px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  opacity: 0.1;
  position: relative;
}

.screen-content::after {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-family-heading);
  pointer-events: none;
  z-index: 1;
}

/* Business Section */
.business {
  background: var(--bg-primary);
  position: relative;
}

.business-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}

.business-main {
  grid-row: span 2;
  padding: var(--space-xl);
}

.business-main h3 {
  font-size: var(--font-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.business-main p {
  color: var(--text-secondary);
  font-size: var(--font-lg);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.business-benefits {
  display: grid;
  gap: var(--space-md);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.benefit-icon {
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: var(--font-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.benefit-content p {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  margin: 0;
}

.business-types {
  padding: var(--space-xl);
}

.business-types h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.type-card {
  padding: var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.type-card:hover {
  transform: translateY(-2px);
  border-color: var(--aurora-2);
}

.type-card span:last-child {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.type-card svg {
  width: 32px;
  height: 32px;
  margin: 0 auto var(--space-sm) auto;
  display: block;
  transition: transform 0.3s ease;
}

.type-card:hover svg {
  transform: scale(1.1);
}

.business-cta {
  padding: var(--space-xl);
  text-align: center;
}

.business-cta h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.business-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* Contact Section */
.contact {
  background: var(--bg-secondary);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
}

/* ===============================================
   23. RESPONSIVE SECTION STYLES
   =============================================== */
@media (max-width: 1024px) {
  .feature-showcase-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .business-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .economy-preview {
    flex-direction: column;
    text-align: center;
  }
  
  .type-grid {
    grid-template-columns: 1fr;
  }
  
  .business-benefits {
    grid-template-columns: 1fr;
  }
}


/* INVESTORS STYLES */
.investors {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.investors-content {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 100%;
  margin: 0 auto;
}

.uniqueness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.uniqueness-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.uniqueness-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.uniqueness-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.uniqueness-icon svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md) auto;
  display: block;
  transition: transform 0.3s ease;
}

.uniqueness-item:hover .uniqueness-icon svg {
  transform: scale(1.1);
}

.uniqueness-item h4 {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.uniqueness-item p {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .uniqueness-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .investors-content {
    padding: var(--space-xl);
  }
  
  .uniqueness-item {
    padding: var(--space-md);
  }
}

/* ===============================================
   26. RESTORE ADVANCED NEURAL EFFECTS (PRE-TEXT-CHANGES)
   =============================================== */

/* Typography lock to custom pair */
:root {
  --font-family-base: 'Golos Text', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body,
button {
  font-family: var(--font-family-base);
}

h1, h2, h3, h4,
.hero-title,
.section-title,
.bento-title,
.business-main h3,
.business-types h4,
.business-cta h3,
.investors-content h2,
.logo-text,
.logo-icon,
.central-tile {
  font-family: var(--font-family-heading);
}

/* Override old mobile system-font force */
@media (max-width: 480px) {
  body,
  body * {
    font-family: var(--font-family-base) !important;
  }

  h1, h2, h3, h4,
  .hero-title,
  .section-title,
  .bento-title,
  .business-main h3,
  .business-types h4,
  .business-cta h3,
  .investors-content h2,
  .logo-text,
  .logo-icon,
  .central-tile {
    font-family: var(--font-family-heading) !important;
  }
}

/* Unified neural logo style */
.logo-icon--neural {
  background: linear-gradient(135deg, var(--aurora-1) 0%, var(--aurora-2) 48%, var(--aurora-3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 28px rgba(131, 56, 236, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 36px rgba(58, 134, 255, 0.22);
  isolation: isolate;
  overflow: hidden;
}

.logo-icon--neural::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 13% 21%, rgba(255, 255, 255, 0.52) 0.35px, transparent 0.65px),
    radial-gradient(circle at 77% 25%, rgba(6, 255, 180, 0.5) 0.4px, transparent 0.75px),
    radial-gradient(circle at 29% 79%, rgba(255, 0, 110, 0.46) 0.35px, transparent 0.7px),
    radial-gradient(circle at 83% 73%, rgba(58, 134, 255, 0.44) 0.35px, transparent 0.65px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16) 0.25px, transparent 0.6px);
  background-size: 9px 9px, 11px 11px, 10px 10px, 8px 8px, 6px 6px;
  background-position: 0 0, 1px 2px, 2px 1px, 3px 0, 0 0;
  mix-blend-mode: screen;
  opacity: 0.42;
  will-change: transform, opacity, background-position;
  animation:
    neural-pixel-shift 2.8s steps(18, end) infinite,
    neural-noise-drift 14s linear infinite;
  z-index: 1;
}

.logo-icon--neural::after {
  content: '';
  position: absolute;
  inset: -35%;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent 0deg, rgba(255, 255, 255, 0.32) 28deg, transparent 72deg);
  opacity: 0.2;
  transform: rotate(0deg);
  animation: neural-glint-rotate 7s linear infinite;
  filter: blur(0.35px);
  z-index: 2;
}

.nav-logo:hover .logo-icon--neural,
.central-tile.logo-icon--neural:hover {
  box-shadow:
    0 16px 34px rgba(131, 56, 236, 0.45),
    0 0 44px rgba(6, 255, 180, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.central-tile.logo-icon--neural {
  background: linear-gradient(135deg, var(--aurora-1) 0%, var(--aurora-2) 50%, var(--aurora-3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

@keyframes neural-pixel-shift {
  0% {
    transform: translate3d(0, 0, 0);
    background-position: 0 0, 1px 2px, 2px 1px, 3px 0, 0 0;
    opacity: 0.34;
  }
  20% {
    transform: translate3d(-0.6px, 0.2px, 0);
    background-position: 1px -1px, 0 2px, 3px 2px, 2px -1px, -1px 1px;
    opacity: 0.46;
  }
  40% {
    transform: translate3d(0.5px, -0.3px, 0);
    background-position: -1px 1px, 2px 0, 1px -2px, 4px 1px, 1px -1px;
    opacity: 0.4;
  }
  60% {
    transform: translate3d(-0.5px, 0.4px, 0);
    background-position: 2px 0, 1px 3px, -1px 2px, 1px 1px, 2px 0;
    opacity: 0.48;
  }
  80% {
    transform: translate3d(0.4px, -0.2px, 0);
    background-position: 0 2px, 3px -1px, 2px 1px, -1px 0, -1px -1px;
    opacity: 0.38;
  }
  100% {
    transform: translate3d(0, 0, 0);
    background-position: 0 0, 1px 2px, 2px 1px, 3px 0, 0 0;
    opacity: 0.34;
  }
}

@keyframes neural-glint-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes neural-noise-drift {
  0% { background-size: 9px 9px, 11px 11px, 10px 10px, 8px 8px, 6px 6px; }
  50% { background-size: 8px 8px, 10px 10px, 9px 9px, 7px 7px, 5px 5px; }
  100% { background-size: 9px 9px, 11px 11px, 10px 10px, 8px 8px, 6px 6px; }
}

/* Hero cards: smooth movement + stable glow */
.floating-card {
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.floating-card::after {
  font-family: var(--font-family-heading);
  font-weight: 500;
}

.floating-card:nth-child(1) {
  transform: translate3d(0, 0, 0) rotateY(-14deg) rotateX(5deg) rotateZ(-0.6deg);
  animation: float-card-1 12s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.floating-card:nth-child(2) {
  transform: translate3d(0, 0, 0) rotateY(14deg) rotateX(-4deg) rotateZ(0.5deg);
  animation: float-card-2 14s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  animation-delay: -2.6s;
}

.floating-card:nth-child(3) {
  transform: translate3d(0, 0, 0) rotateY(-10deg) rotateX(7deg) rotateZ(-0.2deg);
  animation: float-card-3 13s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  animation-delay: -4.2s;
}

@keyframes float-card-1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(-14deg) rotateX(5deg) rotateZ(-0.6deg); }
  50% { transform: translate3d(0, -12px, 0) rotateY(-12.5deg) rotateX(4deg) rotateZ(-0.3deg); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(14deg) rotateX(-4deg) rotateZ(0.5deg); }
  50% { transform: translate3d(0, -14px, 0) rotateY(12.8deg) rotateX(-3deg) rotateZ(0.2deg); }
}

@keyframes float-card-3 {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(-10deg) rotateX(7deg) rotateZ(-0.2deg); }
  50% { transform: translate3d(0, -13px, 0) rotateY(-9.1deg) rotateX(6deg) rotateZ(0deg); }
}

.card-glow {
  top: -58%;
  left: -58%;
  width: 216%;
  height: 216%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 0, 110, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(131, 56, 236, 0.46) 0%, transparent 48%),
    radial-gradient(circle at 48% 50%, rgba(6, 255, 180, 0.32) 0%, transparent 62%);
  opacity: 0.46;
  filter: blur(54px);
  animation: hero-glow-breathe 8s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes hero-glow-breathe {
  0%, 100% {
    opacity: 0.42;
    transform: scale(1);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.03);
  }
}

/* Neural section backdrops */
.about,
.features,
.business,
.investors,
.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about > .container,
.features > .container,
.business > .container,
.investors > .container,
.contact > .container {
  position: relative;
  z-index: 3;
}

.about::before,
.features::before,
.business::before,
.investors::before,
.contact::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity, filter;
  animation:
    section-aurora-drift 36s ease-in-out infinite alternate,
    section-aurora-breathe 11s ease-in-out infinite;
}

.about::before {
  background:
    radial-gradient(62% 64% at 14% 22%, rgba(255, 0, 110, 0.32) 0%, transparent 70%),
    radial-gradient(54% 58% at 84% 76%, rgba(58, 134, 255, 0.3) 0%, transparent 72%);
  animation-duration: 32s, 9s;
  animation-delay: -8s, -2s;
}

.features::before {
  background:
    radial-gradient(58% 62% at 80% 18%, rgba(6, 255, 180, 0.26) 0%, transparent 68%),
    radial-gradient(50% 56% at 18% 82%, rgba(131, 56, 236, 0.34) 0%, transparent 72%);
  animation-duration: 38s, 10s;
  animation-delay: -16s, -1s;
}

.business::before {
  background:
    radial-gradient(62% 60% at 16% 24%, rgba(255, 183, 0, 0.24) 0%, transparent 72%),
    radial-gradient(52% 58% at 86% 74%, rgba(255, 0, 110, 0.29) 0%, transparent 72%);
  animation-duration: 34s, 9.5s;
  animation-delay: -24s, -4s;
}

.investors::before {
  background:
    radial-gradient(60% 56% at 18% 20%, rgba(58, 134, 255, 0.28) 0%, transparent 70%),
    radial-gradient(56% 60% at 82% 80%, rgba(131, 56, 236, 0.28) 0%, transparent 72%);
  animation-duration: 40s, 10.5s;
  animation-delay: -12s, -3s;
}

.contact::before {
  background:
    radial-gradient(58% 60% at 16% 18%, rgba(6, 255, 180, 0.24) 0%, transparent 70%),
    radial-gradient(60% 62% at 86% 80%, rgba(255, 0, 110, 0.3) 0%, transparent 74%);
  animation-duration: 36s, 10s;
  animation-delay: -20s, -5s;
}

.about::after,
.features::after,
.business::after,
.investors::after,
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.13) 0.8px, transparent 1px);
  background-size: 32px 32px, 32px 32px, 10px 10px;
  background-position: 0 0, 0 0, 4px 4px;
  opacity: 0.16;
  mix-blend-mode: screen;
  will-change: background-position, opacity, transform;
  animation:
    section-grid-drift 78s linear infinite,
    section-grid-breathe 10s ease-in-out infinite;
}

@keyframes section-aurora-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.93;
  }
  25% {
    transform: translate3d(-0.7%, 0.5%, 0) scale(1.022);
    opacity: 0.98;
  }
  50% {
    transform: translate3d(-1.45%, 1.1%, 0) scale(1.032);
    opacity: 1;
  }
  75% {
    transform: translate3d(0.55%, -0.45%, 0) scale(1.024);
    opacity: 0.97;
  }
  100% {
    transform: translate3d(1.25%, -0.95%, 0) scale(1.028);
    opacity: 0.95;
  }
}

@keyframes section-aurora-breathe {
  0%, 100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.18) brightness(1.08);
  }
}

@keyframes section-grid-drift {
  0% {
    background-position: 0 0, 0 0, 4px 4px;
    opacity: 0.14;
  }
  50% {
    background-position: 5px -5px, -5px 5px, 6px 2px;
    opacity: 0.18;
  }
  100% {
    background-position: 10px -10px, -10px 10px, 8px 0;
    opacity: 0.15;
  }
}

@keyframes section-grid-breathe {
  0%, 100% {
    opacity: 0.14;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.018);
  }
}

@media (max-width: 768px) {
  .about::after,
  .features::after,
  .business::after,
  .investors::after,
  .contact::after {
    opacity: 0.12;
    background-size: 26px 26px, 26px 26px, 9px 9px;
  }

  .about::before,
  .features::before,
  .business::before,
  .investors::before,
  .contact::before {
    animation-duration: 30s, 8s;
  }
}

/* ===============================================
   27. CONTACT INFO REFINEMENT
   =============================================== */

/* ===============================================
   28. CONTACT TELEGRAM ONLY
   =============================================== */
.telegram-only-wrapper {
  gap: 0;
}

.telegram-only-card {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-lg);
}

.telegram-only-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.telegram-only-icon svg {
  width: 52px;
  height: 52px;
}

.telegram-only-handle {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.telegram-only-btn {
  min-width: 240px;
}

@media (max-width: 768px) {
  .telegram-only-card {
    padding: var(--space-xl);
    gap: var(--space-md);
  }

  .telegram-only-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .telegram-only-icon svg {
    width: 44px;
    height: 44px;
  }

  .telegram-only-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ===============================================
   29. FONT CONSISTENCY HOTFIX
   =============================================== */
@media (max-width: 480px) {
  body,
  body * {
    font-family: var(--font-family-base) !important;
  }

  h1, h2, h3, h4,
  .hero-title,
  .section-title,
  .bento-title,
  .business-main h3,
  .business-types h4,
  .business-cta h3,
  .investors-content h2,
  .logo-text,
  .logo-icon,
  .nav-logo .logo-icon,
  .central-tile,
  .floating-card::after,
  .coin-3d::before {
    font-family: var(--font-family-heading) !important;
  }
}

/* ===============================================
   30. TYPOGRAPHY SYSTEM LOCK (4 TYPES)
   =============================================== */
:root {
  --type-site-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.8rem);
  --type-block-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  --type-subblock-size: clamp(1.25rem, 1.08rem + 0.85vw, 1.8rem);
  --type-body-size: clamp(1.08rem, 1rem + 0.42vw, 1.3rem);
}

/* 1) Site name */
.logo-text,
.nav-logo .logo-text {
  font-family: var(--font-family-heading) !important;
  font-size: var(--type-site-size) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

/* 2) Block headings */
h1,
h2,
.hero-title,
.section-title {
  font-family: var(--font-family-heading) !important;
  font-size: var(--type-block-size) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
}

/* 3) Sub-block headings */
h3,
h4,
.bento-title,
.bento-item h4,
.business-main h3,
.business-types h4,
.business-cta h3,
.feature-content h3,
.benefit-content h4,
.uniqueness-item h4,
.telegram-only-handle {
  font-family: var(--font-family-heading) !important;
  font-size: var(--type-subblock-size) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

/* 4) Body text */
body,
p,
a,
li,
button,
.btn,
.nav-link,
.hero-subtitle,
.section-subtitle,
.bento-additional-text,
.bento-description,
.feature-list li,
.business-main p,
.business-types p,
.business-cta p,
.benefit-content p,
.download-text,
.coming-soon-text,
.footer-bottom p {
  font-family: var(--font-family-base) !important;
  font-size: var(--type-body-size) !important;
  font-weight: 500 !important;
  line-height: 1.62 !important;
  letter-spacing: 0.006em !important;
}


/* ===============================================
   31. HERO TITLE UPSCALE
   =============================================== */
.hero-title {
  font-size: clamp(3rem, 2.25rem + 3vw, 4.5rem) !important;
  line-height: 1.08 !important;
}

/* ===============================================
   32. SPACING SYSTEM LOCK
   =============================================== */
:root {
  --section-pad-y: clamp(4rem, 3.1rem + 2.4vw, 6rem);
  --section-header-gap: clamp(1.75rem, 1.25rem + 1.4vw, 3rem);
  --layout-gap: clamp(1rem, 0.75rem + 1vw, 2rem);
  --card-pad: clamp(1rem, 0.85rem + 0.7vw, 1.75rem);
}

.about,
.features,
.business,
.investors,
.contact {
  padding: var(--section-pad-y) 0 !important;
}

.section-header {
  margin-bottom: var(--section-header-gap) !important;
}

.section-subtitle {
  margin-top: var(--space-sm);
}

.bento-grid,
.business-grid,
.uniqueness-grid,
.contact-wrapper {
  gap: var(--layout-gap) !important;
}

.bento-item,
.business-main,
.business-types,
.business-cta,
.uniqueness-item,
.telegram-only-card {
  padding: var(--card-pad) !important;
}

.investors-content {
  padding: 0 var(--space-lg) !important;
}

.contact-wrapper.telegram-only-wrapper {
  gap: var(--space-lg) !important;
}

@media (max-width: 1024px) {
  :root {
    --section-pad-y: clamp(3.1rem, 2.6rem + 1.8vw, 4.25rem);
    --section-header-gap: clamp(1.4rem, 1.15rem + 1vw, 2rem);
    --layout-gap: clamp(0.9rem, 0.75rem + 0.6vw, 1.25rem);
    --card-pad: clamp(0.9rem, 0.8rem + 0.5vw, 1.15rem);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(0.9rem, 3vw, 1.25rem) !important;
  }

  .about,
  .features,
  .business,
  .investors,
  .contact {
    padding: var(--section-pad-y) 0 !important;
  }

  .telegram-only-card {
    gap: var(--space-sm) !important;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad-y: clamp(2.35rem, 2.1rem + 1.2vw, 2.9rem);
    --section-header-gap: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
    --layout-gap: clamp(0.75rem, 0.65rem + 0.6vw, 1rem);
    --card-pad: clamp(0.8rem, 0.75rem + 0.4vw, 1rem);
  }
}

/* ===============================================
   33. INVESTORS BREATHING SPACE
   =============================================== */
.investors .section-header {
  margin-bottom: clamp(2.2rem, 1.6rem + 1.8vw, 3.4rem) !important;
}

.investors-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(0.9rem, 0.7rem + 0.8vw, 1.8rem) clamp(1.4rem, 1.1rem + 1.2vw, 2.6rem) !important;
}

.uniqueness-grid {
  margin: clamp(1.8rem, 1.3rem + 1.4vw, 3rem) 0 0 !important;
  gap: clamp(1.2rem, 0.95rem + 1vw, 2rem) !important;
}

.uniqueness-item {
  padding: clamp(1.2rem, 1rem + 0.9vw, 2rem) !important;
}

@media (max-width: 1024px) {
  .investors-content {
    padding: clamp(0.85rem, 0.75rem + 0.5vw, 1.25rem) clamp(1rem, 0.85rem + 0.7vw, 1.5rem) !important;
  }

  .uniqueness-grid {
    margin-top: clamp(1.3rem, 1.1rem + 0.8vw, 1.8rem) !important;
  }
}

@media (max-width: 768px) {
  .investors .section-header {
    margin-bottom: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem) !important;
  }

  .uniqueness-item {
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.25rem) !important;
  }
}

/* ===============================================
   34. BUSINESS MAIN TITLE CENTERING
   =============================================== */
.business-main > h3 {
  text-align: center !important;
}

/* ===============================================
   35. INVESTORS CTA BUTTON COMFORT SPACING
   =============================================== */
.investors-content > .btn.btn-primary {
  margin-top: clamp(1.2rem, 1rem + 0.8vw, 2rem) !important;
  padding: clamp(0.85rem, 0.75rem + 0.4vw, 1.1rem) clamp(2rem, 1.6rem + 1.2vw, 3rem) !important;
  min-height: 56px;
  border-radius: 18px;
  line-height: 1.2 !important;
}

@media (max-width: 768px) {
  .investors-content > .btn.btn-primary {
    width: min(100%, 420px);
    padding: 0.9rem 1.4rem !important;
    min-height: 54px;
  }
}

/* ===============================================
   36. MOTION SYSTEM (2026 NEURAL)
   =============================================== */
:root {
  --motion-ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration-section: 820ms;
  --motion-duration-card: 740ms;
  --motion-duration-text: 620ms;
  --motion-duration-media: 860ms;
  --motion-stagger-step: 78ms;
}

.motion-reveal {
  opacity: 0 !important;
  transform: translate3d(0, var(--motion-distance, 20px), 0) scale(var(--motion-scale-start, 0.985)) !important;
  filter: blur(var(--motion-blur-start, 6px));
  will-change: transform, opacity, filter;
  transition-property: opacity, transform, filter;
  transition-duration: var(--motion-duration, var(--motion-duration-card));
  transition-timing-function: var(--motion-ease-premium);
  transition-delay: calc(var(--motion-order, 0) * var(--motion-stagger-step));
}

.motion-reveal.in-view,
.motion-reveal.visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: blur(0);
}

.motion-section {
  --motion-duration: var(--motion-duration-section);
  --motion-distance: 26px;
  --motion-blur-start: 8px;
}

.motion-text {
  --motion-duration: var(--motion-duration-text);
  --motion-distance: 14px;
  --motion-blur-start: 3px;
}

.motion-card {
  --motion-duration: var(--motion-duration-card);
  --motion-distance: 20px;
  --motion-blur-start: 5px;
}

.motion-media {
  --motion-duration: var(--motion-duration-media);
  --motion-distance: 24px;
  --motion-blur-start: 8px;
  clip-path: inset(0 0 14% 0 round 20px);
  transition-property: opacity, transform, filter, clip-path;
}

.motion-media.in-view,
.motion-media.visible {
  clip-path: inset(0 0 0 0 round 20px);
}

.bento-grid .motion-reveal,
.features-showcase .motion-reveal,
.business-grid .motion-reveal,
.business-benefits .motion-reveal,
.type-grid .motion-reveal,
.uniqueness-grid .motion-reveal,
.contact-wrapper .motion-reveal {
  --motion-stagger-step: 92ms;
}

@media (hover: hover) and (pointer: fine) {
  .glass-card.motion-card.in-view,
  .uniqueness-item.motion-card.in-view,
  .type-card.motion-card.in-view,
  .telegram-only-card.motion-card.in-view {
    transition-property: opacity, transform, filter, box-shadow, border-color, background-color;
    transition-duration: var(--motion-duration, var(--motion-duration-card)), var(--motion-duration, var(--motion-duration-card)), var(--motion-duration, var(--motion-duration-card)), 220ms, 220ms, 220ms;
  }

  .glass-card.motion-card.in-view:hover,
  .uniqueness-item.motion-card.in-view:hover,
  .type-card.motion-card.in-view:hover,
  .telegram-only-card.motion-card.in-view:hover {
    transform: translate3d(0, -4px, 0) scale(1.012) !important;
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow:
      0 16px 42px rgba(6, 10, 28, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 1024px) {
  .motion-reveal {
    --motion-stagger-step: 64ms;
  }

  .motion-media {
    clip-path: inset(0 0 11% 0 round 16px);
  }
}

@media (max-width: 768px) {
  .motion-reveal {
    --motion-distance: 12px;
    --motion-blur-start: 2px;
    --motion-stagger-step: 46ms;
  }

  .motion-media {
    clip-path: inset(0 0 9% 0 round 14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}
