/* =======================================================
   SOLYS - Main Styles
   Modern, performant CSS with custom properties
   ======================================================= */

/* Custom Properties & Reset */
:root {
    --gold: #CBAF78;
    --gold-dark: #B8A066;
    --gold-light: #E5C78A;
    --bg: #0E0D0D;
    --text: #EDEDED;
    --container: 1200px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 15px rgba(203, 175, 120, 0.3);
    --shadow-md: 0 8px 25px rgba(203, 175, 120, 0.4);
    --shadow-lg: 0 15px 40px rgba(203, 175, 120, 0.6);
}

/* Typography Scale */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Cosmic Background */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle 3s infinite;
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.star:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.star:nth-child(4) { top: 80%; left: 70%; animation-delay: 0.5s; }
.star:nth-child(5) { top: 10%; left: 60%; animation-delay: 1.5s; }

/* Header */
.header {
    padding: 40px 0;
    position: relative;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    letter-spacing: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.625rem, 8vw, 4rem);
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.9;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

/* Differentiators */
.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.diff-item {
    text-align: left;
    padding: 30px;
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.diff-item:hover {
    transform: translateY(-5px);
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
}

.diff-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diff-item:hover::before {
    opacity: 1;
}

.diff-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg);
}

.diff-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.diff-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Beta Badge */
.beta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    border: none;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.beta-badge-link {
    text-decoration: none;
    color: inherit;
}

.beta-badge-link:hover .beta-badge {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.beta-badge-link:hover .beta-badge::before {
    left: 100%;
}

/* Product Introduction */
.product-intro {
    padding: 100px 0;
    position: relative;
    background: rgba(203, 175, 120, 0.02);
}

.product-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.product-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-description {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Buttons */
.secondary-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    border: none;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.secondary-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

/* How We Built It */
.how-built {
    padding: 120px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.4;
}

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

.build-description p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* How It Works */
.how-works {
    padding: 120px 0;
    background: rgba(203, 175, 120, 0.02);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    padding: 30px;
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 10px;
}

.question-examples p,
.plan-features p {
    margin-bottom: 8px;
    padding-left: 10px;
}

.question-examples p {
    font-style: italic;
    opacity: 0.8;
    border-left: 2px solid rgba(203, 175, 120, 0.3);
}

/* Beta Vision */
.beta-vision {
    padding: 100px 0;
}

.vision-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.vision-description {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    margin-top: 30px;
    font-style: italic;
}

/* Core Features */
.core-features {
    padding: 120px 0;
    position: relative;
}

.core-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.features-grid-core {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card-core {
    padding: 30px;
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card-core:hover {
    transform: translateY(-8px);
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
}

.feature-card-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-core:hover::before {
    opacity: 1;
}

.feature-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.feature-card-core h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card-core p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.topic-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(203, 175, 120, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(203, 175, 120, 0.2);
    transition: var(--transition);
}

.topic-tag:hover {
    background: rgba(203, 175, 120, 0.2);
    transform: translateY(-2px);
}

/* Beta Info */
.beta-info {
    padding: 120px 0;
    background: rgba(203, 175, 120, 0.02);
    position: relative;
}

.beta-intro {
    font-size: 20px;
    text-align: center;
    max-width: 600px;
    margin: 30px auto 60px;
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    padding: 25px;
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Beta Process */
.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), rgba(203, 175, 120, 0.3));
}

.process-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 18px;
    line-height: 1.5;
    margin: 8px 0 0 0;
    opacity: 0.9;
    font-weight: 400;
}

.beta-conclusion {
    background: rgba(203, 175, 120, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    border-left: 4px solid var(--gold);
}

.beta-conclusion p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.beta-conclusion strong {
    color: var(--gold);
    font-weight: 600;
}

/* What's Coming */
.whats-coming {
    padding: 120px 0;
    position: relative;
}

.coming-intro {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 30px auto 60px;
    opacity: 0.9;
    line-height: 1.6;
}

.features-table {
    background: rgba(203, 175, 120, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(203, 175, 120, 0.1);
    margin-bottom: 80px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: rgba(203, 175, 120, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(203, 175, 120, 0.2);
}

.table-header .table-col-1,
.table-header .table-col-2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(203, 175, 120, 0.1);
    transition: var(--transition);
}

.table-row:hover {
    background: rgba(203, 175, 120, 0.04);
}

.table-row:last-child {
    border-bottom: none;
}

.table-col-1 h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    margin: 0;
    font-weight: 500;
}

.table-col-2 p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Why Matters */
.matters-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.matters-points {
    max-width: 700px;
    margin: 0 auto;
}

.matter-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(203, 175, 120, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.point-number,
.reason-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.point-content h4,
.reason-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.point-content p,
.reason-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Bottom Line */
.bottom-line {
    text-align: center;
}

.bottom-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.bottom-line > p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Pricing */
.beta-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-card-link {
    text-decoration: none;
    color: inherit;
}

.pricing-card {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(203, 175, 120, 0.6);
}

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

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.period {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-note {
    color: var(--text);
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.8;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.faq-answer {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Founding Team */
.founding-team {
    padding: 120px 0;
    background: rgba(203, 175, 120, 0.02);
    position: relative;
}

.founding-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.founders-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px auto 80px;
    max-width: 600px;
}

.founder-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(203, 175, 120, 0.03);
    border: 1px solid rgba(203, 175, 120, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-5px);
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
}

.founder-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.founder-title {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

.founders-stories {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.founder-story {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(203, 175, 120, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.founder-story:last-child {
    margin-bottom: 0;
}

.founder-profile {
    margin-bottom: 25px;
}

.founder-profile h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 500;
}

.founder-background {
    font-size: 16px;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

.founder-quote {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.5;
    font-family: 'Playfair Display', serif;
}

/* Why Join Now */
.join-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.join-reason {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(203, 175, 120, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(203, 175, 120, 0.1);
    transition: var(--transition);
}

.join-reason:hover {
    background: rgba(203, 175, 120, 0.06);
    border-color: rgba(203, 175, 120, 0.2);
    transform: translateY(-2px);
}

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

.founding-message {
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    font-style: italic;
    color: var(--gold);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.application-note {
    margin-top: 30px;
    font-size: 12px;
    opacity: 0.6;
    font-style: italic;
}

.legal-note {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 20px;
    line-height: 1.5;
}

.legal-note a {
    color: var(--gold);
    text-decoration: none;
}

.legal-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(203, 175, 120, 0.1);
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
}

.footer p {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* CTAs Animation */
.product-cta,
.how-works-cta,
.beta-info-cta {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Design */
@media (min-width: 992px) {
    .differentiators {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .differentiators {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-description {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .build-description p {
        font-size: 16px;
    }

    .vision-description {
        font-size: 18px;
    }

    .features-grid-core {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-emoji {
        font-size: 40px;
    }

    .topics-list {
        gap: 6px;
    }

    .topic-tag {
        font-size: 13px;
        padding: 5px 10px;
    }

    .beta-intro {
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-number {
        margin: 0 auto 15px;
    }

    .beta-conclusion {
        padding: 25px 20px;
    }

    .beta-conclusion p {
        font-size: 16px;
    }

    .coming-intro {
        font-size: 18px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .table-header .table-col-1,
    .table-header .table-col-2 {
        font-size: 18px;
    }

    .table-col-1 h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .table-col-2 p {
        font-size: 15px;
    }

    .matter-point {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .point-number {
        margin: 0 auto 15px;
    }

    .matters-title,
    .bottom-title {
        font-size: 28px;
    }

    .bottom-line > p {
        font-size: 16px;
    }

    .pricing-card {
        padding: 25px 30px;
    }

    .price {
        font-size: 32px;
    }

    .pricing-note {
        font-size: 13px;
        margin-top: 12px;
    }

    .founders-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .founder-story {
        padding: 25px 20px;
    }

    .founder-quote {
        font-size: 16px;
        padding-left: 25px;
    }

    .founder-quote::before {
        font-size: 36px;
        top: -5px;
    }

    .join-reason {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .reason-number {
        margin: 0 auto 15px;
    }

    .join-title {
        font-size: 28px;
    }

    .founding-message {
        font-size: 18px;
    }

    .secondary-button {
        padding: 12px 25px;
        font-size: 12px;
    }

    .product-cta {
        margin-top: 30px;
    }

    .beta-info-cta {
        margin-top: 30px;
    }

    .how-works-cta {
        margin-top: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .cosmic-bg,
    .cta-section,
    .footer-links {
        display: none;
    }
}
    