:root {
    --bg-dark: #121615;
    --bg-panel: #2a2e2b;
    --bg-panel-darker: #1e2220;
    --accent-green: #6f8f3a;
    --accent-green-glow: #8fb34a;
    --accent-orange: #b35c2e;
    --accent-orange-glow: #d4723f;
    --accent-blood: #7a2e2e;
    --text-light: #e8e4dc;
    --text-muted: #9a968e;
    --text-faint: #5a5650;
    --gold: #c9a227;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .gothic {
    font-family: 'Cormorant Garamond', serif;
}

/* Atmospheric background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(111, 143, 58, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(179, 92, 46, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(42, 46, 43, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Live counter bar */
.live-counter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--bg-panel-darker) 0%, var(--bg-panel) 50%, var(--bg-panel-darker) 100%);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(111, 143, 58, 0.3);
}

.live-counter .pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(111, 143, 58, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(111, 143, 58, 0); }
}

.counter-number {
    font-weight: 600;
    color: var(--accent-green-glow);
    font-variant-numeric: tabular-nums;
}

/* Navigation */
nav {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .crystal {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--accent-green-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/_app_ai-toolkit_output_Brom_GENCON_samples_1767210128713__000003750_9.jpg') center center / cover no-repeat;
    opacity: 0.15;
    filter: saturate(0.5);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
    z-index: -1;
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    min-height: 1.4em;
}

.hero-headline .rotating-text {
    display: block;
    background: linear-gradient(135deg, var(--accent-green-glow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.5s ease-in-out;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-subheadline .trademark {
    font-size: 0.7em;
    vertical-align: super;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #5a7830 100%);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    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.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(111, 143, 58, 0.4);
}

.hero-fine-print {
    margin-top: 30px;
    font-size: 0.65rem;
    color: var(--text-faint);
    max-width: 500px;
}

/* Section styling */
section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 300;
}

/* What is MORB section */
.what-is-morb {
    background: linear-gradient(180deg, transparent 0%, rgba(42, 46, 43, 0.3) 50%, transparent 100%);
}

.morb-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.morb-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-green-glow);
}

.morb-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.trained-on {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}

.trained-on h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.trained-on ul {
    list-style: none;
}

.trained-on li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trained-on li::before {
    content: '▸';
    color: var(--accent-green);
}

.trained-on li em {
    color: var(--text-faint);
    font-size: 0.85rem;
}

.respect-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(122, 46, 46, 0.2);
    border: 1px solid var(--accent-blood);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-muted);
}

.respect-note strong {
    color: var(--text-light);
}

/* Feature callouts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-card .stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green-glow);
    font-family: 'Cormorant Garamond', serif;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-card.beta::after {
    content: 'BETA';
    display: inline-block;
    background: var(--accent-orange);
    color: var(--text-light);
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(18, 22, 21, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-label .gen-tag {
    display: inline-block;
    background: var(--accent-green);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(42, 46, 43, 0.4) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-green);
    opacity: 0.3;
    line-height: 1;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-author em {
    color: var(--text-faint);
}

/* Ethics Section */
.ethics {
    background: var(--bg-panel-darker);
    margin: 100px 20px;
    border-radius: 12px;
    padding: 80px 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(111, 143, 58, 0.2);
}

.ethics-header {
    text-align: center;
    margin-bottom: 50px;
}

.ethics-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ethics-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.ethics-position {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-green);
}

.ethics-position h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-green-glow);
}

.ethics-position p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.ethics-position .highlight {
    color: var(--text-light);
    font-weight: 600;
}

/* Accordion FAQ */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent-green-glow);
}

.accordion-header h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-green);
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 25px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.accordion-content .source {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-faint);
    font-style: italic;
}

/* Commitments */
.commitments {
    margin-top: 50px;
    padding: 30px;
    background: rgba(122, 46, 46, 0.15);
    border: 1px solid rgba(122, 46, 46, 0.3);
    border-radius: 8px;
}

.commitments h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.commitments ul {
    list-style: none;
}

.commitments li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.commitments li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

/* CTA Section */
.final-cta {
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/_app_ai-toolkit_output_Brom_GENCON_samples_1767209523603__000003250_4.jpg') center center / cover no-repeat;
    opacity: 0.1;
    filter: saturate(0.5);
    z-index: -1;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.eula-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.eula-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-green);
}

/* Footer */
footer {
    background: var(--bg-panel-darker);
    padding: 60px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-tagline {
    color: var(--text-faint);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green-glow);
}

.footer-fine-print {
    font-size: 0.6rem;
    color: var(--text-faint);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--bg-panel);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--accent-green);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.modal-close {
    background: var(--accent-green);
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-green-glow);
}

/* Responsive */
@media (max-width: 900px) {
    .morb-content {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .ethics {
        padding: 50px 30px;
        margin: 50px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

