* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark: #0A0A0A;
    --dark-light: #1A1A1A;
    --red: #8B1538;
    --red-light: #A52A52;
    --text-light: #E8E8E8;
    --text-muted: #A0A0A0;
    --emerald: #50C878;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* JOURNAL RIBBON */
.journal-ribbon {
    position: fixed;
    top: 13rem;
    right: -2rem;
    z-index: 60;
    transform: rotate(45deg);
    background: linear-gradient(90deg, #c00000, #e02020);
    padding: 0.4rem 2.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.journal-ribbon-link {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
}

.journal-ribbon-link:hover {
    text-decoration: underline;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold);
}

/* HERO SECTION */
.hero {
    margin-top: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.1), transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #FFF 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold), #CD7F32);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* SECTIONS COMMUNES */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold), #CD7F32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTION INDICATEURS */
.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.indicator-card {
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.indicator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #CD7F32);
    border-radius: 16px 16px 0 0;
}

.indicator-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.indicator-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.indicator-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.indicator-tagline {
    font-size: 0.95rem;
    color: var(--emerald);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.indicator-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.indicator-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.indicator-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.indicator-features li::before {
    content: '✓';
    color: var(--emerald);
    font-weight: bold;
    flex-shrink: 0;
}

.indicator-ideal {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 1rem;
}

.btn-indicator {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), #CD7F32);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-indicator.coming-soon {
    background: var(--text-muted);
    color: var(--dark);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-indicator.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.indicator-cta-block {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(80, 200, 120, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.indicator-cta-block h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.indicator-cta-block p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.indicator-cta-block .btn-indicator {
    max-width: 400px;
    margin: 0 auto;
}

/* COMING SOON CARD */
.coming-soon-card {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.8rem;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px dashed rgba(212, 175, 55, 0.5);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.coming-soon-card p {
    margin-bottom: 1rem;
}

.coming-soon-tag {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gold);
}

/* SECTION JOURNAL DE TRADING */
.journal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.journal-text h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.journal-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.journal-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.journal-mockup {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.journal-mockup-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.journal-mockup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journal-mockup li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.journal-mockup li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.journal-screenshot {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

@media (max-width: 900px) {
    .journal-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-mockup {
        max-width: 100%;
    }
}

/* SECTION PONT */
.bridge-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(139, 21, 56, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem auto;
    max-width: 1400px;
}

.bridge-title {
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.bridge-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bridge-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #CD7F32);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.bridge-step h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bridge-step p {
    color: var(--text-muted);
}

/* SECTION PROP FIRMS */
.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prop-card {
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    border-radius: 16px 16px 0 0;
}

.prop-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(80, 200, 120, 0.2);
}

.prop-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.prop-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #CD7F32);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.prop-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.prop-rating {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.prop-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.prop-spec {
    text-align: center;
}

.spec-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.prop-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.prop-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.prop-features li::before {
    content: '✓';
    color: var(--emerald);
    font-weight: bold;
    flex-shrink: 0;
}

.btn-prop {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-prop:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* SECTION POURQUOI */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--text-muted);
}

/* SECTION RESSOURCES */
.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-item {
    background: var(--dark-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.resource-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.resource-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.resource-item a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-item a:hover {
    color: var(--gold);
}

/* FOOTER */
footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .prop-card.featured {
        transform: scale(1);
    }

    .prop-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }

    .indicators-grid,
    .prop-grid,
    .why-grid,
    .resources-list {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION À PROPOS */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.about-main p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-card {
    background: var(--dark-light);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--gold);
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card li {
    margin-bottom: 0.4rem;
}

.about-card a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.about-card a:hover {
    color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* PROP FIRMS TABLE STYLES */
.prop-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.prop-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
}

.prop-table thead tr {
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.prop-table th {
    padding: 1.2rem;
    text-align: left;
    color: var(--gold);
    font-weight: 700;
}

.prop-table th:not(:first-child) {
    text-align: center;
}

.prop-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.prop-table tbody tr:last-child {
    border-bottom: none;
}

.prop-table td {
    padding: 1rem;
}

.prop-table-name {
    color: var(--text-light);
    font-weight: 600;
}

.prop-table-center {
    text-align: center;
    color: var(--text-muted);
}

.prop-table-success {
    color: var(--emerald);
}

/* PROP CARDS GRID */
.prop-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* PROP GUIDE LINK */
.prop-guide-link {
    margin-top: 4rem;
    padding: 1.5rem;
    background: rgba(80, 200, 120, 0.08);
    border: 1px solid rgba(80, 200, 120, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

.prop-guide-link-anchor {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.prop-guide-link-anchor:hover {
    color: var(--gold);
}

/* PROP DISCLAIMER */
.prop-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(139, 21, 56, 0.1);
    border-left: 4px solid var(--red);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.prop-disclaimer strong {
    color: var(--text-light);
}

/* PROP COUPONS GRID */
.prop-coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* ============= JOURNAL DE TRADING ============= */

/* HERO JOURNAL */
.hero-journal {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-journal h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
    line-height: 1.8;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    font-style: italic;
}

/* JOURNAL WAITLIST FORM */
.journal-waitlist-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.6rem 0;
}

.journal-waitlist-form input[type="email"] {
    min-width: 240px;
    max-width: 320px;
    padding: 0.6rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s, background 0.3s;
}

.journal-waitlist-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.journal-waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
}

.journal-waitlist-form button {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: filter 0.3s, transform 0.2s;
}

.journal-waitlist-form button:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.journal-waitlist-form button:active {
    transform: translateY(0);
}

/* JOURNAL BENEFITS */
.journal-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.journal-benefit {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.journal-benefit:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}

.journal-benefit h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.journal-benefit p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* JOURNAL FEATURES */
.journal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.journal-feature {
    padding: 1.5rem;
    background: rgba(80, 200, 120, 0.05);
    border: 1px solid rgba(80, 200, 120, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.journal-feature:hover {
    border-color: rgba(80, 200, 120, 0.3);
    background: rgba(80, 200, 120, 0.08);
}

.journal-feature h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.journal-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* JOURNAL MOCKUP SECTION */
.journal-mockup-section {
    margin-top: 2rem;
}

.journal-example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.journal-example-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.journal-example-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.journal-example-card h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.journal-example-list {
    list-style: none;
}

.journal-example-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

.journal-example-list li:before {
    content: "✓";
    color: var(--emerald);
    margin-right: 0.6rem;
    font-weight: 600;
}

/* JOURNAL PERSONAS */
.journal-personas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.persona-card {
    padding: 1.5rem;
    background: rgba(160, 160, 160, 0.05);
    border: 1px solid rgba(160, 160, 160, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.persona-card:hover {
    border-color: rgba(160, 160, 160, 0.3);
    background: rgba(160, 160, 160, 0.08);
}

.persona-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.persona-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* FAQ GRID */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-journal h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .journal-waitlist-form {
        flex-direction: column;
        align-items: stretch;
    }

    .journal-waitlist-form input[type="email"] {
        min-width: 100%;
        max-width: 100%;
    }

    .journal-waitlist-form button {
        width: 100%;
    }

    .journal-benefits,
    .journal-features,
    .journal-example-grid,
    .journal-personas,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}