:root {
    --primary-color: #2D035C;
    --primary-light: #4A0699;
    --primary-lighter: #6608CC;
    --text-color: #ffffff;
    --bg-color: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-glow: 0 0 20px rgba(74, 6, 153, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(
        circle, 
        var(--bg-color) 0%, 
        #1a0533 20%, 
        #150426 50%, 
        var(--bg-color) 100%
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    overscroll-behavior: none;
    font-size: 16px;
}

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

/* Consolidated glass effect styles */
.glass-card,
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 52px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(252, 251, 251, 0.05),
        0 0 40px rgba(74, 6, 153, 0.35);
    transition: all 0.3s ease;
}

/* Gradient border effect */
.glass-card::before,
.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(74, 6, 153, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    background-size: 200% 200%;
    animation: borderGlow 2s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Hover effects */
.glass-card:hover,
.feature-item:hover {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 60px rgba(74, 6, 153, 0.2);
    transform: translateY(-10px);
}

/* Specific sizing/spacing for glass-card */
.glass-card {
    padding: 4rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    animation: pulseShadow 3s ease-in-out infinite;
}

@keyframes pulseShadow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(74, 6, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(74, 6, 153, 0.7);
    }
}

/* Specific sizing/spacing for feature-item */
.feature-item {
    padding: 3.5rem;
    max-width: 900px;
    display: block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.feature-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
    max-width: 700px;
}

.feature-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.feature-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    text-align: center;
}

/* Add subtle animation to the border gradient */
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, 
        #fff, 
        rgba(255, 255, 255, 0.8),
        #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.features {
    padding: 8rem 2rem;
}

.feature-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 2rem 0 8rem;
}

.feature-item.animate .feature-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 10rem;
}

/* Add responsive styles */
@media (max-width: 1200px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .split-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .fixed-hero {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .scrollable-content {
        padding: 2rem 1rem;
        border-left: none;
        overflow: visible;
    }

    .glass-card {
        margin: 1rem auto 0;
    }

    .feature-list {
        padding: 0;
        gap: 3rem;
    }

    .feature-item {
        padding: 2rem;
        margin: 0 auto;
    }

    .brand {
        padding: 2rem 1rem;
    }

    .brand-name {
        font-size: 4rem;
    }

    .brand-slogan {
        font-size: 1.2rem;
        text-align: center;
    }

    #hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }

    .features {
        padding: 2rem 1rem;
    }

    .split-layout {
        gap: 0;
    }

    .scrollable-content {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    /* Update hero card text */
    #hero-title {
        font-size: 2rem;  /* Reduced from 2.5rem */
    }

    .subtitle {
        font-size: 1rem;  /* Reduced from 1.25rem */
        margin-bottom: 1.5rem;
    }

    /* Update feature card text */
    .feature-content h3 {
        font-size: 1.6rem;  /* Reduced from 2.2rem */
        margin-bottom: 0.8rem;
    }

    .feature-content p {
        font-size: 1rem;  /* Reduced from 1.2rem */
        line-height: 1.5;
    }

    .waitlist-form {
        flex-direction: column;
    }
    
    .glass-card {
        padding: 1rem;
    }

    .brand-name {
        font-size: 4rem;
        margin-bottom: 3rem;  /* Increased space below logo */
    }

    .brand-slogan {
        font-size: 1rem;  /* Smaller font */
        margin-top: 0;  /* Reset margin */
        margin-bottom: 1rem;  /* Space between slogans */
        line-height: 1.4;  /* Better line height */
    }

    .brand-mark {
        position: absolute;
        top: 100%;
        right: 50%;
        transform: translateX(50%) rotate(10deg);
        margin-left: 0;
        margin-top: -2.5rem;  /* Adjusted to fit in the new space */
    }

    .coming-soon-sticker {
        margin-top: 2rem;  /* More space above sticker */
    }
}

/* Add these animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add new split layout styles */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.fixed-hero {
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

/* Add sticky positioning only on larger screens */
@media (min-width: 969px) {
    .fixed-hero {
        position: sticky;
        top: 0;
    }

    .hero {
        height: 100vh;
    }
}

.scrollable-content {
    padding: 0rem 4rem;
    overflow-y: auto;
    background: transparent;
    border-left: 4px dashed rgba(255, 255, 255, 0.05);
}

#finisher-canvas {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(74, 6, 153, 0.3),
        0 0 60px rgba(74, 6, 153, 0.1);
    cursor: pointer;
    position: relative;
}

/* Subtle gradient for the text */
.brand-name {
    background: linear-gradient(
        to bottom,
        #ffffff 20%,
        rgba(255, 255, 255, 0.9)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-slogan {
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin-top: -1rem;
    margin-bottom: 1.5rem;  /* Add space before the sticker */
}

.coming-soon-sticker {
    position: relative;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #4A0699, #6608CC);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 
        0 2px 10px rgba(74, 6, 153, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
    z-index: 10;
    cursor: pointer;
    transform-origin: center;
    transform: rotate(-3deg);
    animation: floatSticker 3s ease-in-out infinite;
}

.coming-soon-sticker:hover {
    transform: rotate(-3deg) scale(1.5);
    animation: pulsate 1.5s ease-in-out infinite;
}

@keyframes pulsate {
    0%, 100% {
        transform: rotate(-3deg) scale(1.0);
    }
    50% {
        transform: rotate(-3deg) scale(1.3);
    }
}

@keyframes floatSticker {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-5px);
    }
}

/* Add new footer styles */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

.brand-mark {
    font-size: 2.5rem;
    vertical-align: super;
    margin-left: 0.5rem;
    position: relative;
    top: -1.2rem;
    right: -0.5rem;
    opacity: 0.95;
    display: inline-block;
    transform: rotate(10deg);
    animation: searchAround 4s ease-in-out infinite;
    transform-origin: -20% 120%;
}

.brand-mark img {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(1.2);  /* Make it slightly brighter */
}

/* Mobile styles for brand-mark */
@media (max-width: 768px) {
    .brand-mark {
        position: absolute;
        top: 100%;
        right: 50%;
        transform: translateX(50%) rotate(10deg);
        margin-left: 0;
        margin-top: -2.5rem;  /* Adjusted to fit in the new space */
    }

    .brand-mark img {
        width: 2.5rem;
        height: 2.5rem;
    }

    /* Remove the margin-top from brand name since we're moving the mark below */
    .brand-name {
        margin-top: 0;
        margin-bottom: 2.5rem;  /* Add space below for the mark */
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .brand {
        padding: 2 rem;
    }

    .brand-name {
        font-size: 3rem;
        margin-bottom: 4.5rem;
    }

    .brand-slogan {
        font-size: 0.9rem;
        margin-top: 0rem;
    }

    .brand-mark {
        margin-top: -0.5rem;
    }

    #hero-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .glass-card {
        padding: 1.25rem;
    }
}

@keyframes searchAround {
    0% {
        transform: rotate(10deg) translate(0, 0);
    }
    25% {
        transform: rotate(20deg) translate(5px, -4px);
    }
    50% {
        transform: rotate(0deg) translate(-4px, 5px);
    }
    75% {
        transform: rotate(15deg) translate(-6px, -2px);
    }
    100% {
        transform: rotate(10deg) translate(0, 0);
    }
}

/* Add these styles to your existing CSS */
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem;
}

.privacy-content h1,
.terms-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.privacy-content section,
.terms-content section {
    margin-bottom: 2.5rem;
}

.privacy-content h2,
.terms-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-content ul,
.terms-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-content li,
.terms-content li {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 2rem;
        margin: 2rem auto;
    }
}

.page-header {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.home-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem;
    }
}

/* Additional media queries for very small screens */
@media (max-width: 480px) {
    .feature-content p {
        font-size: 1rem;
    }

    .coming-soon-sticker {
        font-size: 0.8rem;
    }

    .brand-name {
        font-size: 3rem;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

/* Responsive styles */
@media (max-width: 802px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .glass-card {
        margin-bottom: 0;
    }

    .features {
        padding: 2rem 2rem;
    }

    .feature-item {
        margin-bottom: 2rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    grid-column: 1 / -1;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, 
        #fff, 
        rgba(255, 255, 255, 0.8),
        #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(145, 56, 229, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(145, 56, 229, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    visibility: hidden;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
} 