:root {
    --primary: #C5A059;
    /* Gold accent */
    --primary-dark: #A68748;
    --bg: #0F172A;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text: #F8FAFC;
    --text-muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #C5A059 0%, #E9D5A3 100%);
}

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

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

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    color: #1a1a2e;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.nav-cta {
    white-space: nowrap;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.cf-turnstile {
    margin: 0rem 0;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 160px 5% 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

/* Features */
.features {
    padding: 100px 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Pricing */
.pricing {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    padding: 4rem 3rem;
    border-radius: 24px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary);
    font-size: 3.5rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.price-features li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.price-footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Narrative Sections */
.narrative-section {
    padding: clamp(60px, 10%, 100px) 5%;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
}

.small-container {
    max-width: 800px;
}

.narrative-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.narrative-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.narrative-section strong {
    color: var(--text);
}

.alt-bg {
    background: rgba(30, 41, 59, 0.3);
}

.bullet-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.bullet-list li {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    position: relative;
}

.bullet-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.highlight-text {
    font-size: 1.75rem !important;
    font-weight: 700;
    color: var(--text) !important;
    line-height: 1.4;
    margin-top: 2.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
}

.list-questions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
    align-items: flex-start;
}

.hero-question {
    font-size: clamp(1.1rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    white-space: nowrap;
    display: inline-block;
}

.stepper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.step span {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.highlight-text-hero {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 1.5rem 0 2rem;
    font-family: 'Outfit', sans-serif;
}

.bullet-list-alt {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.bullet-list-alt li {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.bullet-list-alt li::before {
    content: "–";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

/* Signup */
.signup-section {
    padding: 120px 5%;
    background: linear-gradient(to bottom, var(--bg), #1e293b);
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.signup-container p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-form input {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    border-color: var(--primary);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    opacity: 0.5;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .hero p {
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .list-questions {
        align-items: flex-start;
        border-left: 4px solid var(--primary);
        padding-left: 2rem;
        border-top: none;
        padding-top: 0;
        width: fit-content;
        margin: 0 auto 1.5rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .narrative-section h2 {
        font-size: 2.25rem;
    }

    .narrative-section p {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .step {
        font-size: 1.25rem;
    }

    .step span {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}