/* ==================================================
   Variables!!!
================================================== */
:root {
    /* Color Variables & Glassmorphism Settings */
    --primary-color: #A949F3;
    --primary-light: #ba72f1;
    --secondary-color: #E431F7;
    --secondary-light: #ea74f7;
    --background-color: #0f0f1a;
    --text-color: #ffffff;
    --accent-color: #ff6b6b;
    --success-color: #4ecdc4;
    
    /* Glassmorphism */
    --glass-background: rgba(30, 30, 36, 0.4);
    --glass-border: rgba(255, 255, 255, 0.205);
    --glass-inner: rgba(255, 255, 255, 0.048);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: 10px;
    --transition-speed: 0.3s;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --dark-gradient: linear-gradient(135deg, #0f0f1a, #1a1a2e);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.liquid-glass {
  position: relative;
  background: rgba(248, 250, 252, 0.1);
  backdrop-filter: 
    blur(4px) 
    contrast(1.18);
  -webkit-backdrop-filter: 
    blur(4px) 
    contrast(1.18);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

/* Signup toast (glassmorphic, top-centered) */
/* Signup toast - dark glassmorphism with color variants */
#signup-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  padding: 16px 24px;
  border-radius: 14px;
  z-index: 9999;
  max-width: min(92%, 480px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  line-height: 1.4;
}

#signup-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Toast icon base */
#signup-toast .toast-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}

/* Success toast (green) */
#signup-toast.toast-success .toast-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
}

#signup-toast.toast-success {
  border-color: rgba(34, 197, 94, 0.2);
}

/* Error toast (red) */
#signup-toast.toast-error .toast-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

#signup-toast.toast-error {
  border-color: rgba(239, 68, 68, 0.2);
}

/* Warning toast (yellow/orange) */
#signup-toast.toast-warning .toast-icon {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

#signup-toast.toast-warning {
  border-color: rgba(245, 158, 11, 0.2);
}

/* Info toast (blue) */
#signup-toast.toast-info .toast-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

#signup-toast.toast-info {
  border-color: rgba(59, 130, 246, 0.2);
}

#signup-toast .toast-text {
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

#signup-toast .toast-sub {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
}


.liquid-glass::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse 160% 160% at 50% 50%,
    rgba(99, 102, 241, 0.5) 0%,
    transparent 70%
  );
  filter: blur(10px);
  animation: liquidRefract 8s ease-in-out infinite;
}

[data-theme="light"] {
    --background-color: rgb(244, 248, 253);
    --text-color: #2c3d5e;
    --glass-background: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: all var(--transition-speed) ease;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(104, 148, 236, 0.048) 0%, rgba(206, 66, 245, 0.041) 90%),
        radial-gradient(circle at 80% 80%, rgba(206, 66, 245, 0.055) 0%, rgba(144, 104, 236, 0.041) 90%);
    background-attachment: fixed;
    min-height: 100vh;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease;
    overflow-x: hidden;
}

    /* Borrow the Aurora background aesthetic */
    body.page { position: relative; overflow-x: clip; }
    .bg-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; }
    .bg-gradient { position: fixed; inset: 0; z-index: -3; background:
      radial-gradient(60% 60% at 85% 10%, rgba(139,30,229,.15), transparent 60%),
      radial-gradient(50% 50% at 15% 80%, rgba(30,136,229,.12), transparent 60%),
      linear-gradient(180deg, rgba(3,6,26,1) 0%, rgba(5,10,30,1) 100%);
    }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

* {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
  
  /* ==================================================
     HEADER & NAVIGATION (Glass UI)
  ================================================== */
  header {
    background-color: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    position: fixed;
    width: 100%;
    z-index: 1000;
    align-items: center;
    transition: all var(--transition-speed) ease;
    padding: 12px 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 15px var(--glass-inner);
  }
  header:hover {
    background-color: rgba(15, 15, 26, 0.75);
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
  }
  .logo img {
    width: 50px;
    height: auto;
    transition: transform var(--transition-speed) ease;
    filter: drop-shadow(0 0 8px rgba(104, 183, 236, 0.61));
  }
  .logo:hover img {
    transform: scale(1.05);
  }
  .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(104, 147, 236, 0.3);
    transition: all var(--transition-speed) ease;
  }
  .logo:hover span {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(206, 66, 245, 0.5);
  }
  .nav-links {
    display: flex;
    list-style: none;
  }
  .nav-links li {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 4px;
    position: relative;
  }
  .nav-links a:not(.btn)  {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 5px 0;
  }
  .nav-links a::after:not(.btn) {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
  }
  .nav-links a:hover:not(.btn) {
    color: var(--primary-color);
  }
  .nav-links a:hover::after:not(.btn) {
    width: 100%;
  }
  
  .nav-actions .btn {
    padding: 0.5rem 1.2rem;
  }
  
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.5rem;
}

  /* Mobile Menu Icon */
  .menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
  }
  .menu-icon span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 2px;
    background-color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  /* ==================================================
     HERO SECTION
  ================================================== */
.hero {
    height: 45vh;
    display: flex;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 15vh;
    margin-bottom: 0;
    padding: 0;
    background-size: 3em 3em;
    
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 150vh;
    height: 150vh;
    opacity: 1;
    z-index: 0;
}

.hero-content {
    max-width: 80vw;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.h-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

/* Hero logo responsive */
.hero-logo {
    max-height: 5rem;
    margin-bottom: 2rem;
    width: auto;
}

@media (max-width: 768px) {
    .hero-logo {
        max-height: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        margin-top: 10vh;
        height: auto;
        min-height: 35vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        max-width: 95vw;
        padding: 0 1rem;
    }
    
    .h-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-height: 2.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;    
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
    position: relative;
    align-items: center;
    text-align: center;
}

.hero-bannar {
    display: flex;    
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    align-items: center;
    margin-top: 1rem;
    text-align: center;
}

  /* ==================================================
     partners
  ================================================== */
.quick-stats {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 3rem;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--glass-border);
}
.stats-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
}
.stat-card.glass {
  background: var(--card-gradient, rgba(255,255,255,0.08));
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(80,80,120,0.08);
  border: 1px solid var(--glass-border, rgba(255,255,255,0.12));
  padding: 1.1rem 1.2rem;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.stat-card i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.98rem;
  color: var(--text-color);
  opacity: 0.85;
  display: block;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .stats-row {
    gap: 0.7rem;
  }
  .stat-card.glass {
    padding: 0.8rem 0.7rem;
    min-width: 90px;
  }
  .stat-card i {
    font-size: 1.3rem;
  }
  .stat-value {
    font-size: 1rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
    gap: 0.7rem;
  }
  .stat-card.glass {
    margin-bottom: 0.5rem;
  }
}

  /* ==================================================
     Compare
  ================================================== */

.compare {
    overflow: hidden;
    background-color: var(--background-color);
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.021) .1em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, 0.021) .1em, transparent .1em);
    align-items: center;
    background-size: 3em 3em;
    margin: 0;
    padding: 0; 
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.compare h1 {
    font-weight: 600;
    text-align: left;
}

.compare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    opacity: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--primary-light));
    z-index: 0;
    opacity: 20%;
}

.compare-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    display: flex;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}



.compare-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.compare-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.compare-card:hover {
    border-color: rgba(183, 30, 229, 0.4);
}

.compare-card:hover::before {
    transform: scaleX(1);
}

.compare-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

.compare-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
.compare-support {
    display: block;
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
    padding: 1.5rem 1.2rem;
    align-items: flex-start;
    text-align: left;
}

.compare-card {
    flex-direction: column !important;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: flex-start;
}

.compare-bars {
    width: 100%;
}

.compare-support {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
    box-sizing: border-box;
}
}

.compare-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 110px;
    font-weight: 600;
    color: var(--text-color);
    align-items: left;
    text-align: left;
    font-size: 1rem;
}

.bar-track {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    height: 6px; 
    position: relative;
    overflow: hidden;
    margin: 0 0.5rem;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bar-value {
    min-width: 1rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    text-align: left;
}

.bar-fill.exphost {
    background: linear-gradient(90deg, #6893ec, #ce42f5);
}
.bar-fill.shockbyte {
    background: linear-gradient(90deg, #83e4fc, #47ff5f);
}
.bar-fill.pebblehost {
    background: linear-gradient(90deg, #4ecdc4, #96c7ff);
}
.bar-fill.apex {
    background: linear-gradient(90deg, #ff6b6b, #ffd86b);
}
.bar-fill.ggservers {
    background: linear-gradient(90deg, #bdbdbd, #78777e);
}

.compare-card {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.compare-bars {
    flex: 2;
    min-width: 0;
}

.compare-support {
    flex: 1;
    padding: 1.5rem 1.2rem;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 340px;
}

.compare-support h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.compare-support p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.92;
    margin: 0 0 0.5rem 0;
    /* Remove background and border */
    background: none;
    border: none;
    box-shadow: none;
}

.compare-support .support-extra {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.compare-support .support-extra .btn {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
.compare-support {
display: block;
max-width: 100%;
margin-left: 0;
margin-top: 2rem;
padding: 0.5rem 0.5rem;
align-items: flex-start;
text-align: left;
}
}

.compare-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-info {
    display: flex;
    align-items: left;
    gap: 0.7rem;
    text-align: left;
    min-width: 180px;
    text-decoration: none;
}

.bar-logo {
    width: 38px;
    height: 38px;
    border-radius: 25%;
    object-fit: cover;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.bar-info:hover {
    opacity: 100% !important;
}

.bar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.bar-label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.bar-cpu {
    font-size: 0.92rem;
    color: #a6a6b3;
    font-weight: 500;
}

.bar-price {
    font-size: 0.92rem;
    font-weight: 600;
}

/* ==================================================
   NEW FEATURES SECTION
================================================== */
.features {
    padding: 6rem 0 6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    position: relative;
    align-items: center;
    background-size: 3em 3em;
    margin: 0;
    padding: 0; 
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.features-grid {
    align-self: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}



.feature-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 30, 229, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}


  /* ==================================================
     Pricing
  ================================================== */

.services-section {
    overflow: hidden;
    background-color: var(--background-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(104, 147, 236, 0.1) 0%, rgba(206, 66, 245, 0.08) 90%),
        radial-gradient(circle at 80% 80%, rgba(206, 66, 245, 0.1) 0%, rgba(104, 147, 236, 0.08) 90%);
    background-attachment: fixed;
    position: relative;
    align-items: center;
    text-align: center;
    margin-top: 0;
    border-bottom: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.services-section h1 {
    font-weight: 600;
    color: #78777e;
}

.services-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 3em 3em;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -2;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.service-card.coming-soon:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: var(--transition);
}

.service-features li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.service-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.service-card:hover::after {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

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

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

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .h-content {
        flex-direction: column;
        max-width: 80vw;
    }
    .h-img {
display: none;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 30, 229, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 0.3;
    width: 150px;
    height: 150px;
}

  /* ==================================================
     NEWS
  ================================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}
.news {
    background: var(--background-color);
    position: relative;
    border-bottom: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    overflow: hidden;
    padding-top: 2rem;
}

.news-card {
    background: var(--glass-background);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 15px var(--glass-inner);
    max-width: 90vw;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--glass-shadow);
}

.news-image {
    width: 100%;
    height: 200px;
    background-color: #555;
    object-fit: cover;
    z-index: -1;
}

.news-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-excerpt {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

  /* ==================================================
     Reviews!
  ================================================== */

#customer-reviews {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}
.reviews-header h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.reviews-cta .btn {
  margin: .5rem .5rem;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
    background: var(--glass-background);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--glass-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 15px var(--glass-inner);
}
.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--glass-shadow);
}
.stars {
  color: gold;
  margin-bottom: .75rem;
  font-size: 1.1rem;
}
.review-text {
  font-size: .95rem;
  margin-bottom: .75rem;
  flex-grow: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}
.review-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer-name {
  font-weight: 600;
}
.review-date {
  font-size: .85rem;
  color: gray;
}

.review-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  background: gray; /* fallback */
  user-select: none;
  position: relative;
  overflow: hidden;
  z-index: 1; 
}

.review-pfp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(0,0,0,0.1) 45%);
  border-radius: 50%;
  z-index: 0;
}

.cta {
    align-items: center;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #ac25d150, #6894ec50);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}





  
  /* ==================================================
     BUTTONS
  ================================================== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn-primary {
    background: var(--secondary-gradient);
    background-size: 150%;
    background-position-x: center;
    color: white;
    border: none;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(189, 30, 229, 0.4);
    overflow: hidden;
}

.btn-primary img{
    align-self: center;
    vertical-align: middle;
    padding: 0;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 30, 219, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.74);
    color: var(--text);
}

.btn-outline {
    background: rgba(229, 30, 212, 0.1);
    border: 1px solid rgba(212, 30, 229, 0.3);
    color: var(--secondary-light);
    backdrop-filter: blur(var(--glass-blur));
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: white;
    background: rgba(229, 30, 229, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 30, 219, 0.25);
}

.btn-three {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 0.2rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-three:hover {
    background: rgba(0, 110, 255, 0.1);
    transform: scale(1.1);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(155, 39, 176, 0);

}
section {
    padding: 6rem 0;
}

/* ==================================================
   Landing: New Sections (Features, Aurora Panel, Early Access)
================================================== */

/* Generic section helpers */
.section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
}
.subheading {
  opacity: .85;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.muted { opacity: .7; }


/* Aurora Panel visuals */
#aurora-panel .screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}
#aurora-panel .screenshots img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-background);
  box-shadow: var(--glass-shadow);
}
#aurora-panel .bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .4rem;
}
#aurora-panel .bullets li {
  position: relative;
  padding-left: 1.25rem;
}
#aurora-panel .bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-color);
}

/* Early Access / Founders split */
#early-access .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
#early-access .panel {
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur));
}
#early-access .panel h3 { margin-bottom: .5rem; }
#early-access .panel ul {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1rem;
  display: grid;
  gap: .35rem;
}
#early-access .panel ul li {
  position: relative;
  padding-left: 1.25rem;
}
#early-access .panel ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}
#early-access .panel small { display: block; opacity: .7; }

/* Form styles */
#early-access form { display: grid; gap: .75rem; }
#early-access .field { display: grid; gap: .35rem; }
#early-access label { font-weight: 600; font-size: .95rem; }
#early-access input,
#early-access select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-color);
  border-radius: 10px;
  padding: .65rem .75rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#early-access input:focus,
#early-access select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(169,73,243,.18);
}
#early-access .actions { margin-top: .25rem; }

/* Continuity note */
#continuity-note { padding-top: 2rem; padding-bottom: 2rem; }
#continuity-note .muted { text-align: center; }

/* Responsive */
@media (max-width: 980px) {
  #aurora-panel .screenshots { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  #aurora-panel .screenshots { grid-template-columns: 1fr; }
  #early-access .split { grid-template-columns: 1fr; }
}
  
  
  /* ==================================================
     RESPONSIVE STYLES
  ================================================== */
  @media screen and (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}


  @media screen and (max-width: 768px) {
    nav {
      align-items: center;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: rgba(15, 15, 26, 0.95);
      padding: 20px 0;
    }
    .nav-links.active {
      display: flex;
    }
    .nav-links li {
      margin: 10px auto;
    }
    header {
      padding: 10px 0;
    }
    nav {
      padding: 0 15px;
    }
    .logo img {
      width: 40px;
    }
  }
  @media screen and (max-width: 480px) {
    .comparison-table table {
      min-width: 550px;
      width: 100%;
    }
    th, td {
      font-size: 0.8rem;
      padding: 6px;
    }
    img {
      width: 30px;
    }
  }

  @media screen and (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }
}
  
  /* ==================================================
     Footer
  ================================================== */
footer {
    background-color: rgba(10, 10, 25, 0.288);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    list-style-type: none;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
    
}

.powered-by-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.powered-by-footer span {
    margin-right: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.powered-by-footer img {
    max-width: 2rem;
    max-height: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 60px;
    margin-bottom: 30px;
    list-style-type: none;
    color: var(--text);
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column li {
    margin-bottom: 10px;
    list-style-type: none;
    color: var(--text);
    text-decoration: none;
}

.footer-column li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-column li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    text-decoration: none;
}

footer p {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.site-footer {
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius);
  color: var(--text-color);
  box-shadow: inset 0 0 15px var(--glass-inner);
  align-items: center;
}
.footer-grid .footer-col h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.footer-link {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--primary-light);
}
.bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur));
  color: var(--text-color);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}
.bubble:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-3px);
}
.disabled {
  opacity: 0.5;
  pointer-events: none;
}
  /* ==================================================
     FAQ Section
  ================================================== */

.faq {
    background-color: rgba(255, 255, 255, 0);
    padding: 80px 20px;
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 3px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    grid-template-columns: 1fr;
}

.faq-item {
    background-color: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    padding: 18px;
    margin: 0;
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.03);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item h3.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0px;
    padding: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    background-color: rgba(15, 15, 26, 0.3);
}


/* Mobile Bottom Nav */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  z-index: 2000;
}

.mobile-nav .nav-btn {
  flex: 1;
  text-align: center;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-nav .nav-btn small {
  display: block;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* Show only on mobile */
@media screen and (max-width: 768px) {
  .mobile-nav {
    display: flex;
  }
  header .nav-links, header .nav-actions {
    display: none !important;
  }
}



/* Floating Glass Nav */
.mobile-nav-glass {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  width: 90%;
  max-width: 450px;
  z-index: 2000;
  position: fixed;
}

/* Nav Items */
.mobile-nav-glass .nav-item {
  flex: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
  z-index: 2;
}

.mobile-nav-glass .nav-item i {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.mobile-nav-glass .nav-item span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Selector (liquid bubble effect) */
.mobile-nav-glass .nav-selector {
  position: absolute;
  bottom: 8px;
  height: 45px;
  background: var(--card-gradient);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.3); /* optional outline */
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), width 0.35s ease, height 0.2s ease;
}


/* Active state */
.mobile-nav-glass .nav-item.active {
  color: var(--primary-color);
}


/* ========== Bigger, more fluid bottom nav ========== */
@media screen and (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .mobile-nav-glass {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    height: 70px;              /* dock height ↑ */
    background: var(--glass-background);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
  }

  .mobile-nav-glass .nav-item {
    flex: 1 1 0;
    text-align: center;
    cursor: pointer;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
    z-index: 2;
  }

  .mobile-nav-glass .nav-item i {
    font-size: 1.7rem;         /* icons bigger */
    display: block;
    margin-bottom: 2px;
  }

  .mobile-nav-glass .nav-item span {
    font-size: 0.65rem;        /* labels smaller */
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  /* liquid bubble */
  .mobile-nav-glass .nav-selector {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90px;
    margin-top: -30px; 
    height: 50px;              /* travelling thin */
    margin-left: -45px;        /* centres 90 px bubble */
    background: var(--card-gradient);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .3);
    z-index: 1;
    transition:
      transform .35s cubic-bezier(.25, .8, .25, 1),
      height .25s ease;
  }

  .mobile-nav-glass .nav-selector.active {
    height: 60px;              /* destination height */
  }

  .mobile-nav-glass .nav-item.active {
    color: var(--primary-color);
  }
}

@media screen and (min-width: 768px) {
  .mobile-nav-glass {
    display: none;
  }
}

/* keeps the same glass look as the bottom dock */
.floating-pill{
  position: absolute;           /* sits just below the header */
  top: 92px;                    /* tweak if header height changes */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  min-width: 320px;
  height: 56px;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 998;                 /* under header if header is 1000 */
}

.pill-tab{
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 24px;
  transition: color .3s;
  z-index: 2;
}

.pill-tab.active{ color: var(--primary-color); }

.pill-selector{
  background: var(--card-gradient);
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .3);
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 0;
  background: var(--card-gradient);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  z-index: 1;
  margin-left: -10px; 
  transition:
    transform .35s cubic-bezier(.25,.8,.25,1),
    width .35s ease,
    height .25s ease;
}

@media screen and (max-width: 768px) {
  #left-drawer{
    position: fixed; inset: 0 auto 0 0;
    width: 80%; max-width: 300px; height: 100vh;
    background: rgba(15,15,26,.92);
    border: 1px solid var(--glass-border);
    border-radius: 0 24px 24px 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.25,.8,.25,1);
    display: flex;
    flex-direction: column;
    padding: 24px 16px 0;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 4px;
  }
  #left-drawer.open{ transform: translateX(0); }

  /* logo at top-left */
  #left-drawer .drawer-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
  }
  #left-drawer .drawer-logo img{ width: 50px; height: auto; }

  /* bunched-up pill buttons */
  #left-drawer a{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0;    
    padding: 10px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s, border-color .25s, color .25s;
    width: 100%;
  }
  #left-drawer a.active{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }

  body.drawer-open{ overflow: hidden; }
}

/* Minecraft plans grid */
.minecraft-plans{
  background: var(--background-color);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 6rem 0;
}
.plans-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.plan-card{
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: transform .3s;
}
.plan-card:hover{ transform: translateY(-8px); }
.plan-card ul{
  list-style: none;
  margin: 1rem 0;
  text-align: left;
}
.plan-card li{ margin: .4rem 0; }
.price{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}
.custom-cta{
  margin-top: 4rem;
  text-align: center;
}

/* ---------- Minecraft Plans (desktop 3-up) ---------- */
.minecraft-plans{
  background: var(--background-color);
  padding: 6rem 0;
}

.plans-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 cards per row */
  gap: 2rem;
  margin-top: 3rem;
}

.plan-card{
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

.plan-card:hover{ transform: translateY(-8px); }

/* Best-value ribbon (top-right) */
.plan-card.best-value::after{
  content: "Best Value";
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--secondary-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 2.5rem;
  transform: rotate(45deg);
  z-index: 3;
}

.plan-card h3{
  font-size: 1.5rem;
  margin-bottom: .25rem;
}

.plan-tagline{
  font-size: .9rem;
  opacity: .75;
  margin-bottom: 1rem;
}

.plan-card ul{ list-style: none; margin: 1rem 0; text-align: left; }
.plan-card li{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .4rem 0;
  font-size: .95rem;
}

.price{
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

@media (max-width: 1024px){ .plans-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){  .plans-grid{ grid-template-columns: 1fr; } }

.custom-cta{ margin-top: 3rem; text-align: center; }

/* ---------- Minecraft Plans background ---------- */
.minecraft-plans{
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(104,147,236,.15) 0%, rgba(206,66,245,.15) 100%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    var(--background-color);
  background-size: 100% 100%, 1.5rem 1.5rem, 1.5rem 1.5rem;
}

/* ---------- 3-per-row grid ---------- */
.plans-grid{
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.plan-card{
  background: var(--glass-background);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

.plan-card:hover{ transform: translateY(-8px); }

/* Best-value ribbon (top-right) */
.plan-card.best-value::after{
  content: "Best Value";
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--secondary-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 2.5rem;
  transform: rotate(45deg);
  z-index: 3;
}

.plan-card h3{
  font-size: 1.5rem;
  margin-bottom: .25rem;
}

.plan-tagline{
  font-size: .9rem;
  opacity: .75;
  margin-bottom: 1rem;
}

.plan-card ul{ list-style: none; margin: 1rem 0; text-align: left; }
.plan-card li{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .4rem 0;
  font-size: .95rem;
}

.price{
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Custom card accent colour */
.custom-card{
  background: linear-gradient(135deg, rgba(104,147,236,.05), rgba(206,66,245,.05));
}

/* responsive tweaks */
@media (max-width: 1024px){ .plans-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){  .plans-grid{ grid-template-columns: 1fr; } }

/* 3-up grid that auto-wraps */
.plans-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.custom-full{
  grid-column: 1 / -1;            /* spans all columns */
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
}

.custom-text h3{ margin: 0; }
.start-price{ color: var(--primary-color); }

/* ---- Bigger tier switcher ---- */
.tier-switcher{
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  margin-bottom: 2rem;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  min-width: 220px;            /* bigger overall */
  height: 44px;                /* taller */
}

.tier-tab{
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 24px;
  cursor: pointer;
  transition: color .3s;
  z-index: 2;
}
.tier-tab:last-child{ border-right: none; }

.tier-tab.active{ color: var(--primary-color); }

/* liquid bubble – perfectly centred */
.tier-selector{
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 0;
  margin-left: -10px;
  background: var(--card-gradient);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.3);
  z-index: 1;
  transition:
    transform .35s cubic-bezier(.25,.8,.25,1),
    width .35s ease;
}

/* responsive */
@media (max-width: 1024px){ .plans-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){  .plans-grid{ grid-template-columns: 1fr; } }

.plan-card.popular{
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(104,147,236,.3);
}
.plan-card.popular::before{
  content: "Best Value";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 0 0 12px 12px;
  z-index: 4;
}

.plan-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: .5rem;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--primary-color);
}

.all-plans-link{
  text-align: center;
  margin-top: 2.5rem;
  font-size: .9rem;
  opacity: .8;
}

.location-selector{
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* 1 — force stacked layout on mobile */
@media (max-width: 768px) {
  .plan-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .plan-card .price,
  .plan-card .btn{
    width: 100%;
    margin-top: .5rem;
  }
}


.plan-card.popular{
  position: relative;
  overflow: visible;          
}
.plan-card.popular::before{
  content: "Most Popular";
  position: absolute;
  top: -10px;         
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 12px;
  font-size: 1rem;
  z-index: 10;
  height: 1.3rem;
  white-space: nowrap;
}


/* ---------- STICKY, SMALLER FLOATING-PILL ---------- */
.floating-pill{
  position: fixed;           
  top: 5.5rem;                 
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  padding: 4px 8px;    
  min-width: 280px;  
  height: 46px;    
  gap: 4px;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* shrink the tabs slightly */
.pill-tab{
  font-size: .8rem;      
  padding: 0 10px;        
}

/* ---------- Eco Plans Section ---------- */
.eco-plans {
  background: linear-gradient(180deg, rgba(0, 40, 0, 0.8), rgba(0, 7, 29, 0.95));
  position: relative;
  padding: 6rem 0;
  color: #e6ffe6;
  overflow: hidden;
}

.eco-bg-icon {
  position: absolute;
  font-size: 18rem;
  color: rgba(0, 255, 128, 0.08);
  top: 20%;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.eco-plans .section-title {
  color: #00ff99;
  text-align: center;
  position: relative;
  z-index: 2;
}

.eco-plans .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  opacity: .8;
  z-index: 2;
  position: relative;
}

.eco-plans .plan-card {
  background: rgba(0, 64, 32, 0.6);
  border: 1px solid rgba(0, 255, 128, 0.2);
  color: #d9f9e9;
}

.eco-plans .plan-card:hover {
  transform: translateY(-8px);
  border-color: #00ff99;
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.2);
}

.eco-plans .price {
  color: #00ff99;
}

.eco-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .95rem;
  opacity: .8;
}
/* ECO Section Button Variants */
.eco-plans .btn-primary {
  background: linear-gradient(135deg, #00b894, #009966);
  border: 1px solid rgba(0, 255, 128, 0.4);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 200, 120, 0.4);
}

.eco-plans .btn-primary:hover {
  transform: translateY(-3px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 25px rgba(0, 255, 160, 0.5);
  color: #e6ffe6;
}

/* Outline Variant */
.eco-plans .btn-outline {
  background: rgba(0, 180, 120, 0.1);
  border: 1px solid rgba(0, 255, 128, 0.3);
  color: #00ff99;
}

.eco-plans .btn-outline:hover {
  background: rgba(0, 180, 120, 0.2);
  border-color: #00ffcc;
  color: #d9f9e9;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 160, 0.25);
}

.eco-plans {
    --primary-color: #00b894;
    --primary-light: #009966;
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.about-logo img {
  max-width: 180px;
  height: auto;
  opacity: 0.9;
}

.about-content {
  flex: 1;
  color: var(--text-color);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-stats span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-content ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.about-content ul li {
  margin-bottom: 0.5rem;
}

.about-mission {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-logo {
    display: none; /* hide logo on mobile */
  }
  .about-stats {
    justify-content: center;
  }
}

.about social-bubbles {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.detail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.detail-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.detail-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.detail-card p,
.detail-card a {
  font-size: 0.9rem;
  color: var(--text-color);
  word-break: break-word;
}

/* ==================================================
   NEW SECTIONS - Feature Cards, Building, Early Access
================================================== */

/* Section Header Styles */
.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
  background: linear-gradient(90deg, #fff, var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(169, 73, 243, 0.2), rgba(228, 49, 247, 0.1));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Building Blocks (What We're Building Section) */
.building-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.building-block.reverse {
  direction: rtl;
}

.building-block.reverse > * {
  direction: ltr;
}

.building-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(169, 73, 243, 0.15);
  border: 1px solid rgba(169, 73, 243, 0.3);
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.building-badge i {
  font-size: 0.9rem;
}

.building-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.building-content > p {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.building-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.building-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.building-features li i {
  color: var(--success-color);
  font-size: 0.85rem;
}

/* Preview Placeholder (Aurora Panel Mock) */
.preview-placeholder {
  background: rgba(10, 10, 20, 0.6);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-dots {
  display: flex;
  gap: 0.4rem;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.preview-dots span:first-child {
  background: #ff5f57;
}

.preview-dots span:nth-child(2) {
  background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
  background: #28c940;
}

.preview-title {
  font-size: 0.8rem;
  opacity: 0.6;
}

.preview-content {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 280px;
}

.preview-sidebar {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preview-nav-item {
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.preview-nav-item.active {
  background: rgba(169, 73, 243, 0.3);
}

.preview-main {
  padding: 1rem;
}

.preview-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.preview-stat-card {
  height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-chart {
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(169, 73, 243, 0.1) 0%, rgba(169, 73, 243, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.preview-chart::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 20%, 
    var(--primary-color) 40%,
    var(--secondary-color) 60%,
    var(--primary-color) 80%,
    transparent 100%
  );
  opacity: 0.5;
  border-radius: 2px;
}

/* Ecosystem Visual */
.ecosystem-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 600px) {
  .ecosystem-visual {
    min-height: 250px;
    transform: scale(0.85);
    transform-origin: center;
  }
}

.eco-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 73, 243, 0.3), rgba(228, 49, 247, 0.2));
  border: 2px solid rgba(169, 73, 243, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  z-index: 2;
  box-shadow: 0 0 40px rgba(169, 73, 243, 0.3);
}

.eco-hub i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.eco-hub span {
  font-size: 0.75rem;
  font-weight: 600;
}

.eco-nodes {
  position: absolute;
  inset: 0;
}

.eco-node {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  transition: all 0.3s ease;
  animation: nodeFloat 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.eco-node:hover {
  background: rgba(169, 73, 243, 0.15);
  border-color: rgba(169, 73, 243, 0.4);
  transform: scale(1.1);
}

.eco-node i {
  font-size: 1.1rem;
  color: var(--primary-light);
}

.eco-node:nth-child(1) { top: 10%; left: 10%; }
.eco-node:nth-child(2) { top: 10%; right: 10%; }
.eco-node:nth-child(3) { bottom: 10%; left: 10%; }
.eco-node:nth-child(4) { bottom: 10%; right: 10%; }

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

.eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.eco-line {
  stroke: rgba(169, 73, 243, 0.25);
  stroke-width: 2;
  stroke-dasharray: 8 4;
  animation: lineDash 20s linear infinite;
  animation-delay: var(--delay);
}

@keyframes lineDash {
  to { stroke-dashoffset: -100; }
}

/* Early Access Card */
.early-access-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.ea-content {
  min-width: 0;
  max-width: 100%;
}

.early-access-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(169, 73, 243, 0.15), transparent 60%);
  pointer-events: none;
}

.ea-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin: 0.75rem 0;
  color: #fff;
}

.ea-content > p {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.ea-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.ea-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.ea-perks li i {
  color: var(--success-color);
  font-size: 0.85rem;
}

.ea-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ea-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ea-note {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Countdown Display */
.countdown-display {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.countdown-number {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.countdown-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 1rem 0 0.5rem;
  overflow: hidden;
}

.countdown-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.countdown-sublabel {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Aurora Screenshot */
.aurora-screenshot {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

.aurora-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive for new sections */
@media (max-width: 980px) {
  .building-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  
  .building-block.reverse {
    direction: ltr;
    text-align: right;
  }
  
  .building-block.reverse .building-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .building-block.reverse .building-features li {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  
  .building-preview {
    order: -1;
  }
  
  .early-access-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .preview-content {
    grid-template-columns: 50px 1fr;
  }
  
  .preview-card-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .preview-stat-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .eco-node {
    width: 55px;
    height: 55px;
    font-size: 0.6rem;
  }
  
  .eco-node i {
    font-size: 0.9rem;
  }
  
  .eco-hub {
    width: 80px;
    height: 80px;
  }
  
  .countdown-number {
    font-size: 3rem;
  }
}

/* Early Access Form Styles */
.ea-form-wrapper {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}

.ea-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  max-width: 100%;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-group label .required {
  color: var(--accent-color);
}

.form-group label .optional {
  font-weight: 400;
  opacity: 0.6;
  font-size: 0.8rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(169, 73, 243, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.6)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1a2e;
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
  display: flex;
  text-decoration: none;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 1rem;
  margin-bottom: 0;
}

.captcha-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.captcha-wrapper .cf-turnstile {
  transform-origin: center;
}

@media (max-width: 980px) {
  .ea-form {
    margin-top: 1.5rem;
  }
}

/* Additional mobile fixes */
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .early-access-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .ea-content h2 {
    font-size: 1.4rem;
  }
  
  .ea-content > p {
    font-size: 0.9rem;
  }
  
  .ea-perks li {
    font-size: 0.85rem;
  }
  
  .ea-perks .highlight {
    padding: 0.4rem 0.5rem;
    margin: 0.25rem -0.5rem;
  }
  
  .ea-form {
    padding: 1.25rem;
  }
  
  .founders-progress {
    padding: 0.75rem;
    margin-top: 1rem;
  }
  
  .progress-header {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }
  
  .captcha-wrapper {
    overflow: hidden;
  }
  
  .captcha-wrapper .cf-turnstile {
    transform: scale(0.85);
    transform-origin: center;
  }
  
  .building-block {
    margin-bottom: 3rem;
  }
  
  .building-content h3 {
    font-size: 1.25rem;
  }
  
  .astro-body {
    height: 280px;
  }
  
  .section-header.centered {
    text-align: center;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .glass-select {
    font-size: 0.9rem;
  }
  
  .gs-trigger {
    padding: 0.65rem 0.85rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
  
  #submitEarlyAccess {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Submit button mobile touch fixes */
#submitEarlyAccess {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

#submitEarlyAccess.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ==================================================
   Image Modal System
================================================== */
.image-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.image-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-modal .modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.image-modal .modal-content img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    display: block;
}

.image-modal .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.image-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Modal trigger styles */
.modal-trigger {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modal-trigger::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
}

.modal-trigger:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

.image-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.modal-trigger:hover .image-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .image-modal .modal-content img {
        max-width: 100vw;
        max-height: 85vh;
        border-radius: 0;
    }
    
    .image-zoom-hint {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* ==================================================
   COUNTDOWN SECTION
================================================== */
.countdown-section {
    padding: 3rem 0 4rem;
    position: relative;
    z-index: 5;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Splash text - Minecraft style rotating subtitle */
.countdown-splash {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    min-height: 1.6rem;
    text-align: center;
    font-family: 'Poppins', monospace;
}

/* Countdown timer container */
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Individual countdown cards */
.countdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1.2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.countdown-value {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Poppins', monospace;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
}

.countdown-separator {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 0.2rem;
    margin-bottom: 1.2rem;
}

/* Soon display (fallback, usually hidden) */
.countdown-soon {
    display: none;
}

/* Soon mode - when no launch date is set */
.countdown-timer.soon-mode .countdown-value {
    animation: soonPulse 3s ease-in-out infinite;
}

.countdown-timer.soon-mode .countdown-card {
    min-width: 70px;
}

@keyframes soonPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

/* Text scramble animation effect */
.countdown-splash .char {
    display: inline-block;
    transition: opacity 0.05s ease;
}

.countdown-splash .scrambling {
    opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .countdown-section {
        padding: 2rem 0 3rem;
    }
    
    .countdown-timer {
        gap: 0.3rem;
        flex-wrap: nowrap;
    }
    
    .countdown-card {
        min-width: 58px;
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.8rem;
        min-height: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: 1.4rem;
        padding: 0;
        margin-bottom: 0.8rem;
    }
    
    .countdown-splash {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .soon-text {
        font-size: 2.2rem;
    }
    
    .countdown-soon {
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.2rem;
    }
    
    .countdown-card {
        min-width: 48px;
        padding: 0.6rem 0.4rem;
    }
    
    .countdown-value {
        font-size: 1.4rem;
        min-height: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .countdown-separator {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .countdown-splash {
        font-size: 0.8rem;
    }
    
    .soon-text {
        font-size: 1.8rem;
    }
}