/* ═══════════════════════════════════════════════════════
   style_why.css  —  styles specific to why.html
   Requires: style_common.css
   ═══════════════════════════════════════════════════════ */

html { scroll-padding-top: 16rem; }

/* ── HERO overrides ── */
.hero { min-height: 75vh; }

.hero::before {
    background:
        radial-gradient(ellipse 60% 70% at 85% 30%, rgba(200,80,255,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 15% 70%, rgba(0,212,255,0.07) 0%, transparent 60%);
}

.hero h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); max-width: 22ch; }
.hero-sub { max-width: 52ch; }

.hero-cta {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.48s forwards;
}

/* ── CONTENT GRID / SIDEBAR ── */
.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.content-nav {
    position: sticky;
    top: 5rem;
    align-self: start;
    padding: 4rem 2rem 4rem 3rem;
    border-right: 1px solid var(--border);
}

.content-nav-title {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.content-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.content-nav a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: 0.85rem;
    margin-left: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.content-nav a:hover {
    color: var(--white);
    border-left-color: var(--accent);
}

.content-body {
    padding: 5rem 4rem;
    max-width: 780px;
}

/* ── SECTION BLOCKS ── */
.section-block {
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeUp 0.6s forwards;
}

.section-block:nth-child(1) { animation-delay: 0.1s; }
.section-block:nth-child(2) { animation-delay: 0.2s; }
.section-block:nth-child(3) { animation-delay: 0.3s; }
.section-block:nth-child(4) { animation-delay: 0.4s; }
.section-block:nth-child(5) { animation-delay: 0.5s; }

.section-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-block p { color: #7aa8bc; font-size: 1rem; font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.section-block p:last-child { margin-bottom: 0; }
.section-block strong { color: var(--white); font-weight: 500; }
.section-block em { font-style: italic; color: #9fc8d8; }

/* ── PULL QUOTE ── */
.pull-quote {
    border-left: 3px solid var(--accent);
    padding: 1.25rem 1.75rem;
    margin: 2.5rem 0;
    background: rgba(0,212,255,0.03);
}

.pull-quote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white) !important;
    line-height: 1.5;
    margin: 0 !important;
}

/* ── RESULT CALLOUT ── */
.result-callout {
    background: var(--mid);
    border: 1px solid var(--border);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.result-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(0,212,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.result-callout p { margin: 0 !important; color: #7aa8bc !important; }
.result-callout strong { color: var(--accent) !important; }

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--mid2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,80,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-strip p { color: #7aa8bc; font-size: 1rem; font-weight: 300; margin-bottom: 2rem; }

.cta-strip .btn-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── TABLET ── */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 220px 1fr; }
    .content-body { padding: 4rem 2.5rem; }
    .content-nav { padding: 4rem 1.5rem 4rem 2rem; }
    .cta-strip { padding: 4rem 2rem; }
}

/* ── MOBILE ── */
@media (max-width: 767px) {
    .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); max-width: 100%; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    .content-grid { grid-template-columns: 1fr; }
    .content-nav { display: none; }
    .content-body { padding: 3rem 1.25rem 4rem; max-width: 100%; }

    .section-block { margin-bottom: 3.5rem; }

    .pull-quote { padding: 1rem 1.25rem; margin: 1.75rem 0; }
    .pull-quote p { font-size: 1rem; }
    .result-callout { padding: 1.5rem; margin: 1.75rem 0; }

    .cta-strip { padding: 4rem 1.25rem; }
    .cta-strip .btn-row { flex-direction: column; align-items: center; }
    .cta-strip .btn { width: 100%; max-width: 320px; justify-content: center; }
}

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