:root {
    --primary: #da208c;
    --secondary: #9333ea;
    --bg-dark: #000000;
    --bg-card: rgba(31, 41, 55, 0.4);
    --bg-card-hover: rgba(31, 41, 55, 0.6);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, p {
    text-wrap: balance;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), #f472b6, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: #e5e7eb;
    margin-bottom: 40px;
    font-weight: 500;
}

.section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mt-large {
    margin-top: 60px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 30px;
}

.logo img {
    height: 35px;
}

.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.desktop-nav a:hover {
    opacity: 0.7;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary-small {
    background-color: var(--text-main);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary-small:hover {
    background-color: #f3f4f6;
}

.btn-outline-small {
    border: 1px solid var(--text-main);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.btn-arrow-wrapper {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    color: var(--primary);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.btn-icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.btn-primary:hover .btn-icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.btn-primary:hover .btn-icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

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

.btn-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 17px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-dark);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(218, 32, 140, 0.3), rgba(0,0,0,0.8), rgba(147, 51, 234, 0.3));
    z-index: -1;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-glow-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    color: var(--text-muted);
    opacity: 0.5;
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Intro Section */
.intro {
    padding: 100px 0 40px 0;
    background: linear-gradient(to bottom, #000000, #111827);
    position: relative;
}

.intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(218, 32, 140, 0.1);
    border: 1px solid rgba(218, 32, 140, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}


.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.community-banner {
    background: var(--bg-card);
    border: 2px solid rgba(218, 32, 140, 0.3);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.community-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.community-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Ideal For */
.ideal-for {
    padding: 60px 0 100px 0;
    background-color: #111827;
}

.ideal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: transform 0.3s;
}


.ideal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ideal-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 80px;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* What is Section */
.what-is {
    padding: 100px 0;
}

.mb-large {
    margin-bottom: 50px;
}

.features-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid rgba(218, 32, 140, 0.2);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s;
}


.feature-box .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-muted);
}

/* Partners Carousel */
.partners {
    padding: 50px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-track {
    display: flex;
    gap: 50px;
    width: calc(200px * 10);
    animation: scroll 20s linear infinite;
}

.partner-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    position: relative;
}

.pricing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 32, 140, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #1f2937, #111827);
    border: 2px solid var(--primary);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(218, 32, 140, 0.2);
}

.ribbon {
    position: absolute;
    right: -40px;
    top: 25px;
    width: 160px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 5px 0;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.pricing-header {
    padding: 40px 30px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(218, 32, 140, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price span {
    font-size: 4rem;
}

.pricing-body {
    padding: 40px 30px;
    text-align: left;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.w-full {
    width: 100%;
    text-align: center;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #111827, #000000);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.founder-image {
    height: 100%;
}

.founder-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: none;
    box-shadow: none;
}

.founder-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-box h4 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #111827;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--bg-card);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 500px; /* Increased to fit large text */
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(180deg);
}

/* Footer CTA */
.footer-cta {
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
}

.footer-cta h2 {
    margin-bottom: 10px;
}

.text-dark {
    color: var(--bg-dark);
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.footer-content p {
    margin: 0;
}

.footer-logo {
    height: 60px;
    margin: 0;
}

.ayres-signature {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .desktop-nav, .header-actions { display: none; }
    .mobile-menu-btn {
        display: flex; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer;
    }
    .mobile-menu-btn span { width: 25px; height: 2px; background: white; }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-image img { margin: 0 auto; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
    
    /* Founder Section Mobile Order */
    .founder-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    .founder-content {
        display: contents;
    }
    .founder-content .badge-icon { order: 1; margin-bottom: 15px; margin-top: 0; }
    .founder-content h2 { order: 2; margin-bottom: 20px; }
    .founder-image { order: 3; margin-bottom: 20px; }
    .founder-content p { order: 4; }
    .founder-content .stats-grid { order: 5; margin-top: 20px; }
    
    .stats-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: none;
    }
    .stat-box {
        width: 100%;
        max-width: 100%;
    }

    /* Carousels for Grids on Mobile */
    .features-grid-3, .features-grid-2 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        width: 100vw;
    }
    
    .features-grid-3 > div, .features-grid-2 > div {
        min-width: 85vw;
        max-width: 85vw;
        width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .features-grid-3::-webkit-scrollbar, .features-grid-2::-webkit-scrollbar {
        display: none;
    }
    .features-grid-3, .features-grid-2 {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .hero-footer-text { font-size: 0.8rem; line-height: 2; }
    .community-banner { padding: 30px 20px; }
}
