/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Restore cursor for interactive elements */
a, button, input, textarea, select, .btn, [role="button"], [tabindex]:not([tabindex="-1"]) {
    cursor: pointer;
}

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #4361ee;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: 
        transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.5),
        width 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        height 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease; /* Add smooth fade in */
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.4);
    backdrop-filter: blur(3px);
    will-change: transform, width, height;
    pointer-events: none;
    opacity: 0; /* Start hidden, will be shown by JS */
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #4361ee;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: 
        transform 0.1s ease-out,
        background-color 0.2s ease,
        width 0.2s ease,
        height 0.2s ease,
        opacity 0.3s ease; /* Add smooth fade in */
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
    will-change: transform;
    opacity: 0; /* Start hidden, will be shown by JS */
}

/* Hide default cursor for the entire page */
html {
    cursor: none !important;
}

/* But show default cursor for form elements and interactive elements */
input, textarea, button, select, a, [role="button"], [tabindex]:not([tabindex="-1"]) {
    cursor: none !important;
}

/* Cursor States */
.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(67, 97, 238, 0.2);
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(2);
    background-color: #4361ee;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .cursor-dot {
        display: none !important;
    }
    
    /* Restore default cursor on touch devices */
    html {
        cursor: auto !important;
    }
    
    input, textarea, button, select, a, [role="button"], [tabindex]:not([tabindex="-1"]) {
        cursor: pointer !important;
    }
}

/* Base Styles */
:root {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --secondary-color: #7209b7;
    --dark-color: #0f172a; /* Darker for better contrast */
    --light-color: #f8f9fa;
    --gray-color: #64748b; /* Softer gray for better readability */
    --light-gray: #f1f5f9; /* Lighter gray for backgrounds */
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, 
                Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'SF Mono', 'Roboto Mono', Menlo, monospace;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Line heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
}

/* Base Typography */
body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--dark-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-top: 76px; /* Height of the navbar */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--leading-tight);
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.25;
}

/* Paragraphs */
p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: var(--leading-relaxed);
    font-size: var(--text-lg);
}

.lead {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--primary-hover);
    border-bottom-color: currentColor;
}

/* Code and Preformatted Text */
code, pre {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: var(--light-gray);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

pre {
    padding: 1em;
    overflow-x: auto;
    margin: 1.5em 0;
    border-radius: 8px;
}

/* Text Utilities */
.text-muted {
    color: var(--gray-color) !important;
}

.text-small {
    font-size: 0.875rem;
}

/* Hero Section Specific */
.hero-section {
    padding: 8rem 0 6rem;  /* Increased top padding from 6rem to 8rem */
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border-radius: 0 0 40px 40px;
    margin-top: -20px; /* Slight overlap with navbar for seamless transition */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(114, 9, 183, 0.1) 0%, transparent 25%);
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 36em;
    margin-bottom: 2.5rem;
}

/* Feature Cards */
.feature-card h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.feature-card p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

/* Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --text-base: 1rem;
        --text-lg: 1.125rem;
        --text-xl: 1.25rem;
        --text-2xl: 1.5rem;
        --text-3xl: 1.5rem;
        --text-4xl: 2rem;
        --text-5xl: 2.5rem;
    }
    
    h1 {
        font-size: var(--text-4xl);
    }
    
    h2 {
        font-size: var(--text-3xl);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.125rem;
    }
}

/* Improve contrast for better readability */
body {
    background-color: #ffffff;
    color: var(--dark-color);
}

/* Better focus states for accessibility */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smoother transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.upvz-faq { max-width: 900px; margin:60px auto; padding:0 16px; }
    .upvz-faq h2 { color:var(--brand); font-weight:800; margin-bottom:20px; }

    details.upvz-item {
      background: var(--bg);
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    summary.upvz-q {
      list-style: none;
      cursor: pointer;
      padding: 16px 20px;
      font-weight: 600;
      color: var(--text);
      position: relative;
    }
    summary.upvz-q::-webkit-details-marker { display: none; }

    /* Chevron */
    summary.upvz-q::after {
      content: "▾";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      transition: transform .2s ease;
      color: #6b7280;
    }
    details[open] > summary.upvz-q::after {
      transform: translateY(-50%) rotate(180deg);
      color: var(--brand);
    }

    details[open] > summary.upvz-q {
      background: var(--muted);
      color: var(--brand);
    }

    .upvz-a {
      padding: 16px 20px 20px;
      color: var(--text);
      border-top: 1px solid #e5e7eb;
      background: #fff;
    }
    .accordion-button {
        color: #111 !important;                 /* Dark visible text */
        -webkit-text-fill-color: #111 !important;
        background: #fff !important;
        font-weight: 600;
      }
      
      .accordion-button:not(.collapsed) {
        color: #4a3aff !important;               /* Brand color when active */
        -webkit-text-fill-color: #4a3aff !important;
        background: #eef0ff !important;
      }
      
      .accordion-button * {
        color: inherit !important;              /* Reset child spans */
        -webkit-text-fill-color: inherit !important;
        background: transparent !important;
      }

      /* Smooth FAQ animation */
.accordion-collapse {
    transition: height 0.35s ease, opacity 0.35s ease;
  }
  
  .accordion-collapse.collapsing {
    opacity: 0.5;
  }
  
  .accordion-collapse.show {
    opacity: 1;
  }
  
  /* Button hover effect */
  .accordion-button:hover {
    background-color: #f4f5ff !important;
    transform: scale(1.01);
    transition: all 0.2s ease-in-out;
  }
  
  







html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: linear-gradient(-45deg, #f5f7fa, #e4e8f0, #f0f4ff, #e6e9ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add subtle noise texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Add subtle grid pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(67, 97, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 97, 238, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-outline-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    height: 76px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--dark-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;  /* Increased top padding from 6rem to 8rem */
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border-radius: 0 0 40px 40px;
    margin-top: -20px; /* Slight overlap with navbar for seamless transition */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(114, 9, 183, 0.1) 0%, transparent 25%);
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Sections */
section {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin: 2rem 0;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    transform: translateY(0);
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

/* Waitlist Section */
#waitlist {
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
    padding: 6rem 0;
    overflow: hidden;
}

#waitlist::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 70% 70%, rgba(114, 9, 183, 0.1) 0%, transparent 25%);
    z-index: 0;
    animation: float 15s ease-in-out infinite alternate;
}

#waitlist .container {
    position: relative;
    z-index: 1;
}

#waitlist h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#waitlist h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
    border-radius: 2px;
}

#waitlist .lead {
    color: #6c757d;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Tab Navigation */
.nav-pills {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.nav-pills .nav-link {
    color: #6c757d;
    font-weight: 600;
    padding: 0.75rem 2rem !important;
    border-radius: 50px;
    margin: 0 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 97, 238, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.nav-pills .nav-link:not(.active):hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.tab-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-control {
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(255, 255, 255, 0.8);
    height: auto;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.15);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Button Styles */
.btn-waitlist {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-waitlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
    color: white;
}

.btn-waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-waitlist:hover::before {
    opacity: 1;
}

/* Success Message */
.waitlist-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 12px;
    border-left: 4px solid #28a745;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

.waitlist-success i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
    display: inline-block;
}

.waitlist-success h4 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

.waitlist-success p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Floating Elements */
.waitlist-floating {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.waitlist-floating-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.waitlist-floating-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: 5%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #waitlist {
        padding: 4rem 0;
    }
    
    #waitlist h2 {
        font-size: 2rem;
    }
    
    .nav-pills .nav-link {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .waitlist-floating {
        display: none;
    }
    
    .nav-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-pills .nav-link {
        width: 100%;
        max-width: 250px;
        margin: 0.25rem 0;
    }
}

/* Loading State for Buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from { transform: rotate(0turn); }
    to { transform: rotate(1turn); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(67, 97, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(67, 97, 238, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Tooltip Styles */
.tooltip {
    font-size: 0.9rem;
}

.tooltip-inner {
    background-color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--dark-color);
}

/* Enhanced Cursor Effects */
@media (hover: hover) {
    .btn, .nav-link, .feature-card, .social-links a {
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .btn:hover, .nav-link:hover, .feature-card:hover, .social-links a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(90deg, #4361ee, #7209b7, #3a0ca3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Animation for Hero Image */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Enhanced Form Focus States */

/* Subtle Background Pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(67, 97, 238, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #3a56d4, #5e0b9e);
}

/* Loading Bar for Page Transitions */
.page-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    z-index: 9999;
    transition: transform 0.3s ease;
}

/* Responsive Improvements */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 3rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .no-print, .no-print * {
        display: none !important;
    }
    
    body {
        padding: 20px;
        font-size: 14px;
        color: #000;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    .btn, .form-control, .form-select {
        border: 1px solid #ddd !important;
    }
    
    .feature-card {
        break-inside: avoid;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
}

footer h5, footer h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: white;
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Glass Morphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

/* Advanced Button Hover Effects */
.btn-3d {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn-3d:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateZ(-1px);
    transition: all 0.3s ease;
}

.btn-3d:hover:before {
    transform: translateZ(0);
    opacity: 0;
}

/* Advanced Input Field Animation */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 10px 0;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus,
.input-group input:valid {
    border-bottom-color: var(--primary-color);
    outline: none;
}

.input-group input:focus + label,
.input-group input:valid + label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Advanced Card Hover Effect */
.hover-3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.hover-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Text Reveal Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.animate::after {
    transform: translateX(100%);
}

/* Gradient Border */
.gradient-border {
    position: relative;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.gradient-border > * {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 20px;
}

/* Hover Underline Animation */
.hover-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.shine-effect:hover::after {
    left: 100%;
    opacity: 1;
}

/* Glitch Text Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    10% { clip: rect(112px, 9999px, 76px, 0); }
    20% { clip: rect(85px, 9999px, 77px, 0); }
    30% { clip: rect(27px, 9999px, 97px, 0); }
    40% { clip: rect(64px, 9999px, 98px, 0); }
    50% { clip: rect(61px, 9999px, 85px, 0); }
    60% { clip: rect(99px, 9999px, 114px, 0); }
    70% { clip: rect(34px, 9999px, 115px, 0); }
    80% { clip: rect(98px, 9999px, 129px, 0); }
    90% { clip: rect(43px, 9999px, 96px, 0); }
    100% { clip: rect(82px, 9999px, 64px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    10% { clip: rect(33px, 9999px, 69px, 0); }
    20% { clip: rect(34px, 9999px, 13px, 0); }
    30% { clip: rect(86px, 9999px, 40px, 0); }
    40% { clip: rect(42px, 9999px, 96px, 0); }
    50% { clip: rect(61px, 9999px, 98px, 0); }
    60% { clip: rect(37px, 9999px, 85px, 0); }
    70% { clip: rect(51px, 9999px, 27px, 0); }
    80% { clip: rect(28px, 9999px, 84px, 0); }
    90% { clip: rect(83px, 9999px, 23px, 0); }
    100% { clip: rect(55px, 9999px, 53px, 0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
    
    .card-3d:hover {
        transform: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }
}

/* Page Transition */
.page-transition-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* For Creators & Students Sections */
#for-creators,
#for-students {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 6rem 0;
}

#for-creators::before,
#for-students::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(rgba(67, 97, 238, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 97, 238, 0.2) 1px, transparent 1px);
}

#for-creators {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.03) 0%, rgba(67, 97, 238, 0.05) 100%);
}

#for-students {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.03) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Feature Cards Enhancement */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.feature-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.feature-card:hover h4::after {
    width: 100%;
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #495057;
}

/* Add floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    filter: blur(40px);
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

#for-creators .floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: rgba(67, 97, 238, 0.1);
    animation-delay: 0s;
}

#for-creators .floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: -50px;
    background: rgba(114, 9, 183, 0.1);
    animation-delay: 5s;
}

#for-students .floating-element:nth-child(1) {
    width: 250px;
    height: 250px;
    top: 50px;
    right: -50px;
    background: rgba(67, 97, 238, 0.1);
    animation-delay: 2.5s;
}

#for-students .floating-element:nth-child(2) {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    background: rgba(114, 9, 183, 0.1);
    animation-delay: 7.5s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    #for-creators,
    #for-students {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-header {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2d1a4a;
    position: relative;
    padding-bottom: 1rem;
}

.faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    border-radius: 2px;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #f0f2ff;
    color: #4361ee;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234361ee'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234361ee'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}
