:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);

    --text-main: #ffffff;
    --text-muted: #a3a3a3;

    --accent-pink: #ff00ff;
    --accent-purple: #bf00ff;
    --accent-blue: #00ffff;

    --gradient-primary: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-blue));
    --gradient-glow: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(191, 0, 255, 0.12), transparent 70%);
    z-index: -2;
    filter: blur(80px);
    pointer-events: none;
    animation: floatOrb 20s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.08), transparent 70%);
    z-index: -2;
    filter: blur(100px);
    pointer-events: none;
    animation: floatOrb 25s ease-in-out infinite alternate-reverse;
}

/* Thin Grid Lines Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Animated Blurred Lines Background */
.animated-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Blurred Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    pointer-events: none;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.5), rgba(191, 0, 255, 0.3) 50%, transparent 75%);
    top: 10%;
    left: 15%;
    animation: floatCircle1 8s ease-in-out infinite, circleAppear 2s ease-out 0.5s forwards;
}

.circle-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4), rgba(0, 200, 255, 0.2) 50%, transparent 75%);
    top: 15%;
    right: 20%;
    animation: floatCircle2 10s ease-in-out infinite, circleAppear 2s ease-out 1s forwards;
}

@keyframes circleAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 30px) scale(1.15);
    }
}

.animated-lines::before,
.animated-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(191, 0, 255, 0.3),
        rgba(0, 255, 255, 0.3),
        transparent
    );
    filter: blur(8px);
}

.animated-lines::before {
    top: 30%;
    left: -100%;
    animation: lineSlide1 15s linear infinite;
}

.animated-lines::after {
    top: 70%;
    left: -100%;
    animation: lineSlide2 20s linear infinite;
    animation-delay: 2s;
}

@keyframes lineSlide1 {
    0% {
        transform: translateX(0) rotate(-10deg);
    }
    100% {
        transform: translateX(100%) rotate(-10deg);
    }
}

@keyframes lineSlide2 {
    0% {
        transform: translateX(0) rotate(5deg);
    }
    100% {
        transform: translateX(100%) rotate(5deg);
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 30px);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

p,
li {
    font-family: var(--font-body);
    color: var(--text-muted);
}

.text-gradient {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    display: inline-block;
    animation: fadeIn 1.2s ease-out 0.2s both;
}

.tm {
    font-size: 0.5em;
    vertical-align: super;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Primary Button (White with Glow) */
.btn-primary {
    background: white;
    color: black;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6), 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover {
        transform: none;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
}

/* Secondary Button (Gradient Neon) */
.btn-secondary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    width: 100%;
    margin-top: var(--spacing-sm);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(191, 0, 255, 0.3);
    animation: gradientFlow 4s ease infinite;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(191, 0, 255, 0.5), 0 6px 25px rgba(0, 255, 255, 0.3);
}

/* Disable hover effects and animations on touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn-secondary:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 0, 255, 0.3);
    }
}

/* Button Click Effect */
.btn:active {
    transform: translateY(1px) scale(0.98);
}



/* Sections */
.what-is {
    display: flex;
    justify-content: center;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.06), rgba(0, 255, 255, 0.06), var(--bg-card));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease, box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

/* Make the what-is section flow in naturally with the page */
.what-is .glass-panel {
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Add spacing between paragraphs in glass panels */
.glass-panel p + p {
    margin-top: 1.2rem;
}

.glass-panel.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.glass-panel strong {
    color: var(--text-main);
}

@media (hover: hover) and (pointer: fine) {
    .glass-panel:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(191, 0, 255, 0.2), 0 10px 40px rgba(0, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* Info Sections */
.info-section {
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-section .glass-panel {
    max-width: 700px;
}

.info-section .glass-panel p {
    font-size: 1rem;
    line-height: 1.9;
}

/* Content Support Section */
.content-support-section {
    display: flex;
    justify-content: center;
}

.content-support-section .glass-panel {
    max-width: 800px;
    font-size: 0.95rem;
}

/* Grounding Section */
.grounding-section {
    display: flex;
    justify-content: center;
}

.grounding-section .glass-panel {
    max-width: 700px;
    font-style: italic;
}

/* Card Info Box */
.card-info-box {
    margin-top: var(--spacing-sm);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-info-box .small-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.card-info-box strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Split Section (Cards) */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease, box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

/* Card 1: Pink-Purple gradient emphasis */
.card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(191, 0, 255, 0.08), var(--bg-card));
    border: 1px solid rgba(255, 0, 255, 0.15);
}

.card:nth-child(1):hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.25), 0 5px 20px rgba(191, 0, 255, 0.2);
}

/* Card 2: Cyan-Blue gradient emphasis */
.card:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 200, 255, 0.08), var(--bg-card));
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.card:nth-child(2):hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.25), 0 5px 20px rgba(0, 200, 255, 0.2);
}

/* Scroll animation trigger */
.card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Desktop hover enhancement */
@media (hover: hover) and (pointer: fine) {
    .card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Disable hover on mobile */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }
}



.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefit-list {
    list-style: none;
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.benefit-list li::before {
    content: '•';
    color: var(--accent-purple);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Forms */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(191, 0, 255, 0.2);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    animation: fadeIn 1s ease-out 1.3s both;
}

.footer-logo-container {
    display: inline-block;
  background: #13121d;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.footer-logo {
    width: 100px;
    height: auto;
    display: block;
}

.quote {
    font-style: italic;
    color: var(--text-main);
    margin: 0.5rem 0;
}

.footer-link {
    color: var(--accent-blue);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.footer-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(191, 0, 255, 0.3), 0 8px 20px rgba(0, 255, 255, 0.2);
}

/* Individual icon hover colors */
.social-icon:nth-child(1):hover {
    color: #00f2ea;
}

.social-icon:nth-child(2):hover {
    color: #e1306c;
}

.social-icon:nth-child(3):hover {
    color: #1877f2;
}

.social-icon:nth-child(4):hover {
    color: #ff0000;
}

.social-icon:nth-child(5):hover {
    color: #0077b5;
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .social-icon:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
}

/* Thank You Modal */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-main);
    transform: scale(1.2);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-body p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes successPop {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .container {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-body h2 {
        font-size: 1.5rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
}