/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.18) 1.5px, transparent 0);
    background-size: 40px 40px;
    background-position: 0 0;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Ensure Inter font is used for all text elements */
* {
    font-family: 'Inter', sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem 4rem;
    background: transparent;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* .header-left - Space for future logo or brand */
/* Font weight updated to 200: $(date) */

.header-right {
    display: flex;
    align-items: center;
}
.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
    
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Main content styles */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem;
}

.hero-section {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 100;
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.4rem, 1.2vw, 1.2rem);
}

.hero-logo {
    width: clamp(2rem, 6.5vw, 5.5rem);
    height: clamp(2rem, 6.5vw, 5.5rem);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.hero-logo:hover {
    filter: drop-shadow(0 0 30px rgba(255, 255, 0, 0.3));
    transform: scale(1.05);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* CTA Section Styles */
.cta-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 300px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.email-input:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}



/* Coming Soon Modal Styles */
.coming-soon-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.message-content h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.message-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.close-message {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    animation: blobMorph 4s ease-in-out infinite;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-message:hover {

/* Waitlist Form Styles */
.waitlist-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.join-waitlist-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.join-waitlist-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.join-waitlist-btn:active {
    transform: translateY(0);
}    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .header-content {
        max-width: 100%;
    }
    
    .main-content {
        padding: 6rem 2rem 2rem;
    }
    
    .hero-title {
    color: #ffffff;
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .cta-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-input {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .message-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .message-content h3 {
    color: #ffffff;
        font-size: 1.5rem;
    }
    
    .message-content p {
    color: #ffffff;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .contact-link {
    color: #ffffff;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 5rem 1.5rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero-title {
    color: #ffffff;
        font-size: clamp(1.5rem, 10vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .message-content {
        padding: 1.5rem;
    }
    
    .message-content h3 {
    color: #ffffff;
        font-size: 1.25rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styles */
::selection {
    background: rgba(255, 255, 255, 0.2);
}

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

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Additional animation classes */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
}

.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Heat map cursor effect */
.heat-map-cursor {
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    animation: blobMorph 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
    transform: translate(-50%, -50%);
    transition: all 0.05s ease;
    filter: blur(0.5px);
}

/* Background heat effect */
body.heat-background {
    transition: background 0.5s ease;
}

.container.heat-container {
    transition: all 0.5s ease;
}

/* Heat overlay for background */
.heat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 0, 0, 0.08) 0%, 
        rgba(255, 69, 0, 0.05) 18.75px, 
        rgba(255, 140, 0, 0.03) 30px, 
        transparent 45px);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.blob-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.25px;
    height: 2.25px;
    border-radius: 50%;
    animation: blobMorph 4s ease-in-out infinite;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Heat map effect on content */
.hero-section.heat-effect {
    transition: all 0.3s ease;
}

.hero-section.heat-effect .hero-title {
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-section.heat-effect .hero-subtitle {
    transition: all 0.3s ease;
}

.hero-section.heat-effect .cta-button {
    transition: all 0.3s ease;
}

/* Logo heat effect */
.logo.heat-effect {
    transition: all 0.3s ease;
}

 
@keyframes blobMorph {
    0%, 100% {
        clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    }
    25% {
        clip-path: polygon(50% 0%, 85% 15%, 95% 40%, 95% 65%, 75% 85%, 50% 100%, 25% 85%, 5% 65%, 5% 40%, 25% 15%);
    }
    50% {
        clip-path: polygon(50% 0%, 75% 5%, 90% 30%, 90% 75%, 80% 95%, 50% 100%, 20% 95%, 10% 75%, 10% 30%, 25% 5%);
    }
    75% {
        clip-path: polygon(50% 0%, 70% 20%, 100% 45%, 100% 60%, 85% 80%, 50% 100%, 15% 80%, 0% 60%, 0% 45%, 30% 20%);
    }
}

/* Contact page styles */
.contact-section {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 0.9;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

.info-item {
    text-align: center;
    padding: 2rem;
}

.info-item h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.5rem;
    font-weight: 300;
}


/* Cache bust: Thu Sep  4 10:56:22 BST 2025 */

/* Email link styling */
.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #cccccc;
}