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

body.dark-theme {
    --bg:               #0A0A0A;
    --surface:          rgba(18,18,18,0.95);
    --surface-border:   rgba(194,136,64,0.15);
    --text:             #E5E7EB;
    --text-strong:      #FFFFFF;
    --muted:            #9ca3af;
    --accent:           #C28840;
    --accent-light:     #D4AF37;
    --positive:         #16A34A;
    --negative:         #DC2626;
    --navbar-bg:        rgba(10,10,10,0.92);
    --glow:             rgba(194,136,64,0.12);
    --select-bg:        #151515;
    --select-color:     #FFFFFF;
    --input-bg:         rgba(255,255,255,0.03);
    --input-border:     rgba(255,255,255,0.08);
    --grid-color:       rgba(255,255,255,0.03);
}
body.light-theme {
    --bg:               #F8F8F6;
    --surface:          rgba(255,255,255,0.95);
    --surface-border:   rgba(212,175,55,0.18);
    --text:             #1e1b16;
    --text-strong:      #000000;
    --muted:            #5a5a5a;
    --accent:           #C28840;
    --accent-light:     #CFB53B;
    --positive:         #16A34A;
    --negative:         #DC2626;
    --navbar-bg:        rgba(255,255,255,0.92);
    --glow:             rgba(194,136,64,0.18);
    --select-bg:        #ffffff;
    --select-color:     #111111;
    --input-bg:         rgba(0,0,0,0.03);
    --input-border:     rgba(0,0,0,0.1);
    --grid-color:       rgba(0,0,0,0.06);
}

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

.background-grid {
    position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}
.glow { position: fixed; border-radius: 50%; filter: blur(150px); z-index: -2; }
.glow-1 { width: 450px; height: 450px; background: var(--glow-color); top: -100px; right: -100px; opacity: 0.6; }
.glow-2 { width: 400px; height: 400px; background: var(--glow-color); bottom: -150px; left: -100px; opacity: 0.4; }


/* MAIN */
main { width: min(1400px, 92%); margin: auto; }

/* HERO */
.hero-section {
    text-align: center;
    padding: 8rem 2rem 6rem;
    max-width: 780px; margin: 0 auto;
}
.badge {
    display: inline-flex; align-items: center;
    padding: 0.7rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    border-radius: 999px;
    font-size: 0.75rem; letter-spacing: 1.5px;
    margin-bottom: 2rem; color: var(--accent); font-weight: 600;
}
.hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95; letter-spacing: -3px;
    margin-bottom: 1.8rem; color: var(--text-strong); font-weight: 800;
}
.hero-section h1 span { color: var(--accent); }
.hero-section p {
    max-width: 580px; margin: 0 auto 2.5rem;
    color: var(--muted); font-size: 1.1rem; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.primary-btn {
    background: var(--accent); color: var(--text-strong);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 1.8rem; border-radius: 16px;
    font-weight: 700; font-family: inherit; font-size: 0.9rem;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.primary-btn:hover { background: var(--accent-light); transform: scale(1.02); box-shadow: 0 15px 40px rgba(194,136,64,0.3); }
.secondary-btn {
    background: none; color: var(--text-strong);
    border: 1px solid var(--accent);
    padding: 1rem 1.8rem; border-radius: 16px;
    font-weight: 700; font-family: inherit; font-size: 0.9rem;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.secondary-btn:hover { background: var(--accent-light); color: var(--text-strong); transform: scale(1.02); box-shadow: 0 15px 40px rgba(194,136,64,0.25); }

/* SECTION */
.section { padding: 6rem 0; }
.section-divider { border: none; border-top: 1px solid var(--surface-border); margin: 0; }
.section-eyebrow {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.8rem;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -2px; line-height: 1.1;
    color: var(--text-strong); margin-bottom: 1rem;
}
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 500px; line-height: 1.8; margin-bottom: 3.5rem; }

/* ALERT GRID */
.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.2rem;
}
.alert-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 24px; padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}
.alert-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.alert-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(194,136,64,0.12);
    border: 1px solid rgba(194,136,64,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 1.2rem;
}
.alert-card h3 {
    font-size: 1rem; font-weight: 700; letter-spacing: 0.5px;
    margin-bottom: 0.6rem; color: var(--text-strong);
}
.alert-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.alert-tag {
    display: inline-block; margin-top: 1rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    background: rgba(194,136,64,0.1); color: var(--accent);
    border: 1px solid rgba(194,136,64,0.2);
}

/* PLATFORM */
.platform-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
@media (max-width: 800px) { .platform-grid { grid-template-columns: 1fr; } }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-check {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
    background: rgba(194,136,64,0.12); border: 1px solid rgba(194,136,64,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 11px; font-weight: 700;
}
.feature-list li div strong { font-size: 0.95rem; font-weight: 700; color: var(--text-strong); display: block; margin-bottom: 2px; }
.feature-list li div span { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* DEMO CARD */
.demo-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 30px; padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--card-glow);
}
.demo-card-header {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.6rem;
}
.demo-live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--positive); box-shadow: 0 0 8px var(--positive);
}
.demo-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
}
.demo-row:last-of-type { border-bottom: none; }
.demo-pair { font-weight: 700; color: var(--text-strong); }
.demo-type { font-size: 0.75rem; color: var(--muted); margin-top: 2px; letter-spacing: 0.5px; }
.badge-live {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    background: rgba(22,163,74,0.12); color: var(--positive); border: 1px solid rgba(22,163,74,0.2);
}
.badge-pending {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    background: rgba(194,136,64,0.1); color: var(--accent); border: 1px solid rgba(194,136,64,0.2);
}

/* SESSIONS */
.sessions-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem;
}
.session-card {
    background: var(--surface); border: 1px solid var(--surface-border);
    border-radius: 24px; padding: 1.8rem;
    backdrop-filter: blur(20px); transition: all 0.3s ease;
}
.session-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.session-card h4 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text-strong); margin-bottom: 0.4rem; }
.session-time { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; letter-spacing: 0.5px; }
.session-bar {
    height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

/* JOURNALING */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 800px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card {
    background: var(--surface); border: 1px solid var(--surface-border);
    border-radius: 24px; padding: 2rem;
    backdrop-filter: blur(20px); transition: all 0.3s ease;
}
.journal-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.journal-card .jicon { font-size: 2rem; margin-bottom: 1rem; }
.journal-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-strong); margin-bottom: 0.6rem; }
.journal-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* CTA */
.cta-section {
    text-align: center; padding: 8rem 2rem;
    border-top: 1px solid var(--surface-border);
}
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800; letter-spacing: -2px; color: var(--text-strong);
    margin-bottom: 1rem; line-height: 1.1;
}
.cta-section p { font-size: 1.1rem; color: var(--muted); margin-bottom: 2.5rem; }

/* FOOTER */
.footer { border-top: 1px solid var(--surface-border); margin-top: 2rem; padding: 4rem 5%; }
.footer-top { display: flex; justify-content: space-between; gap: 4rem; margin-bottom: 3rem; }
.footer-brand { max-width: 450px; }
.footer-brand h3 { margin-bottom: 1rem; letter-spacing: 2px; color: var(--text-strong); font-size: 0.95rem; }
.footer-brand p { color: var(--muted); line-height: 1.8; font-size: 0.9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(150px,1fr)); gap: 1rem 3rem; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--text-strong); }
.footer-bottom { border-top: 1px solid var(--surface-border); padding-top: 2rem; text-align: center; color: var(--muted); font-size: 0.85rem; }
@media (max-width: 900px) { .footer-top { flex-direction: column; } .footer-links { grid-template-columns: 1fr; } }

/* RESPONSIVE */
@media (max-width: 700px) {
    main { width: 92%; }
    .hero-section { padding: 4rem 0.5rem 3rem; }
    .hero-section h1 { font-size: 2.5rem; letter-spacing: -1.5px; }
    .hero-section p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-buttons a { text-align: center; }

    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.7rem; letter-spacing: -1px; }
    .section-sub { margin-bottom: 2.2rem; }

    .alert-grid { grid-template-columns: 1fr; gap: 1rem; }
    .alert-card { padding: 1.5rem; }
    .alert-price-badge { top: 1.1rem; right: 1.1rem; font-size: 0.72rem; }

    .platform-grid { gap: 2.5rem; }
    .demo-card { padding: 1.5rem; }

    .sessions-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }

    .journal-grid { gap: 1rem; }
    .journal-card { padding: 1.5rem; }

    .cta-section { padding: 5rem 1.5rem; }
    .cta-section .hero-buttons { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .hero-section h1 { font-size: 2.1rem; }
    .sessions-grid { grid-template-columns: 1fr; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-section { animation: fadeUp 1s ease; }
/* ═══════════════════════════════════════════
   PER-ALERT PRICE BADGE + COMING SOON CARD
═══════════════════════════════════════════ */
.alert-card { position: relative; }
.alert-price-badge {
    position: absolute; top: 1.4rem; right: 1.4rem;
    font-size: .8rem; font-weight: 800; color: var(--text-strong);
    background: var(--input-bg); border: 1px solid var(--input-border);
    border-radius: 999px; padding: .3rem .8rem;
}
.alert-card.coming-soon {
    border-style: dashed; border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}
.alert-card.coming-soon .alert-tag {
    background: var(--accent); color: var(--text-strong); border-color: var(--accent);
}
.pricing-note { text-align: center; margin-top: 2.5rem; font-size: .9rem; color: var(--muted); }
.pricing-note a { color: var(--accent); font-weight: 700; text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }