/* ── HOME-ONLY OVERRIDES ── */
body { overflow: auto; height: auto; display: block; }

/* NAV */
.home-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: rgba(0,0,0,.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 1.5rem;
}
.home-nav .logo { font-size: 1.25rem; margin-right: auto; }
.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color .15s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.42rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-h); }

/* SECTIONS */
section { padding: 5rem 1.5rem; max-width: 1080px; margin: 0 auto; }

/* HERO */
.hero {
    text-align: center;
    padding: 7rem 1.5rem 5rem;
    max-width: 820px;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(245,200,0,.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(245,200,0,.25);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-pri {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.82rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s, transform .15s;
    border: none; cursor: pointer;
}
.btn-hero-pri:hover { background: var(--accent-h); transform: translateY(-1px); }
.btn-hero-sec {
    background: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.82rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color .15s, transform .15s;
}
.btn-hero-sec:hover { border-color: var(--accent); transform: translateY(-1px); }

/* FAKE DASHBOARD PREVIEW */
.preview-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}
.preview-frame {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(245,200,0,.07);
}
.preview-bar {
    background: #000;
    border-bottom: 1px solid var(--accent);
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
}
.dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.dot-y { width: 10px; height: 10px; border-radius: 50%; background: #febc2e; }
.dot-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
.preview-bar-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}
.preview-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--border);
    gap: 1px;
    min-height: 200px;
}
.prev-day {
    background: var(--bg);
    padding: 0.5rem 0.4rem;
    min-height: 90px;
}
.prev-day-name {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}
.prev-day-num {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.prev-day-num.today-num {
    background: var(--accent);
    color: #000;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.prev-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 0.28rem 0.35rem;
    margin-bottom: 0.25rem;
    font-size: 0.58rem;
}
.prev-card-time { color: var(--accent); font-weight: 700; margin-bottom: 1px; }
.prev-card-cap  { color: var(--muted);  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* STATS STRIP */
.stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 3rem;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
.stat { text-align: center; }
.stat-num  { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

/* FEATURES */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.section-title span { color: var(--accent); }
.section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 3rem; line-height: 1.6; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.5rem;
    transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feat-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.feat-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.feat-desc  { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* PLATFORMS */
.plat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 2rem;
}
.plat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: border-color .15s;
}
.plat-pill:hover { border-color: var(--accent); }
.plat-pill .dot { width: 10px; height: 10px; }

/* HOW IT WORKS */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.step-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.step-desc  { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color .2s;
}
.price-card.featured {
    border-color: var(--accent);
    background: rgba(245,200,0,.04);
}
.price-card.featured .price-badge {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.25rem;
}
.price-badge { display: none; }
.price-tier  { font-weight: 800; font-size: 1.05rem; }
.price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.price-amount span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-desc  { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.price-feats li { font-size: 0.85rem; color: var(--text); display: flex; gap: 0.5rem; }
.price-feats li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.price-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 0.65rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all .15s;
}
.price-btn-pri { background: var(--accent); color: #000; }
.price-btn-pri:hover { background: var(--accent-h); }
.price-btn-sec { background: var(--surface2); color: var(--text); border: 1px solid var(--border); }
.price-btn-sec:hover { border-color: var(--accent); }

/* CTA BANNER */
.cta-banner {
    text-align: center;
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.cta-banner h2 span { color: var(--accent); }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }

/* FOOTER */
footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo { color: var(--accent); font-weight: 700; font-size: 1rem; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.78rem; }