﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue-50: #E6F1FB;
    --blue-100: #B5D4F4;
    --blue-600: #185FA5;
    --blue-800: #0C447C;
    --teal-50: #E1F5EE;
    --teal-600: #0F6E56;
    --amber-50: #FAEEDA;
    --amber-600: #854F0B;
    --purple-50: #EEEDFE;
    --purple-600: #534AB7;
    --border: rgba(0,0,0,0.1);
    --border-md: rgba(0,0,0,0.18);
    --bg: #ffffff;
    --bg-secondary: #f7f7f5;
    --text: #1a1a1a;
    --text-secondary: #6b6b6b;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: #f3f2ef;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.page {
    background: var(--bg);
    max-width: 860px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid var(--border);
}

/* ── NAV ── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    border-bottom: 0.5px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 10;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
}

    .nav-logo span {
        color: var(--blue-600);
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--purple-600);
    background: var(--purple-50);
    padding: 4px 10px;
    border-radius: 100px;
}

.nav-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 7px 16px;
    border: 0.5px solid var(--border-md);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

    .nav-link:hover {
        background: var(--bg-secondary);
        color: var(--text);
    }

/* ── SHORTCUT BAR ── */
.shortcut-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 2.5rem;
    border-bottom: 0.5px solid var(--border);
    background: var(--bg-secondary);
}

.shortcut-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 14px;
    border: 0.5px solid var(--border-md);
    border-radius: 100px;
    background: var(--bg);
    transition: all 0.2s;
}

    .shortcut-btn i {
        font-size: 14px;
    }

    .shortcut-btn:hover {
        background: var(--blue-50);
        color: var(--blue-600);
        border-color: var(--blue-100);
    }

.shortcut-btn--primary {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
}

    .shortcut-btn--primary:hover {
        background: var(--blue-800);
        color: #fff;
        border-color: var(--blue-800);
    }

/* ── HERO ── */
.hero {
    padding: 4.5rem 2.5rem 3.5rem;
    border-bottom: 0.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-accent {
    position: absolute;
    right: -60px;
    top: -20px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--blue-50);
    opacity: 0.55;
    pointer-events: none;
}

.hero-accent2 {
    position: absolute;
    right: 60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--purple-50);
    opacity: 0.4;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--text);
    max-width: 540px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--blue-600);
    }

.hero p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2.25rem;
}

.cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-600);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

    .btn-primary:hover {
        background: var(--blue-800);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

    .btn-secondary:hover {
        color: var(--text);
    }

/* ── SECTIONS ── */
.section {
    padding: 3rem 2.5rem;
    border-bottom: 0.5px solid var(--border);
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ── PRACTICE AREAS ── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.area-card {
    background: var(--bg-secondary);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .area-card:hover {
        border-color: var(--border-md);
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

.area-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.icon-blue {
    background: var(--blue-50);
    color: var(--blue-600);
}

.icon-teal {
    background: var(--teal-50);
    color: var(--teal-600);
}

.icon-amber {
    background: var(--amber-50);
    color: var(--amber-600);
}

.icon-purple {
    background: var(--purple-50);
    color: var(--purple-600);
}

.area-card h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--text);
}

.area-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── AI SECTION ── */
.ai-section {
    padding: 3rem 2.5rem;
    border-bottom: 0.5px solid var(--border);
    background: var(--bg-secondary);
}

.ai-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ai-header-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.ai-header-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 400px;
}

.anthropic-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 0.5px solid var(--border-md);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    flex-shrink: 0;
}

.anthropic-logo {
    width: 28px;
    height: 28px;
    background: #CC785C;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.5px;
}

.anthropic-badge-text .powered {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.2;
}

.anthropic-badge-text .name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.ai-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ai-card {
    background: var(--bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .ai-card:hover {
        border-color: var(--border-md);
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

.ai-card-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--purple-50);
    color: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 12px;
}

.ai-card h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.ai-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ai-disclaimer {
    margin-top: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

    .ai-disclaimer i {
        font-size: 15px;
        color: var(--purple-600);
        flex-shrink: 0;
        margin-top: 1px;
    }

/* ── WCAB BANNER ── */
.wcab-wrap {
    padding: 2rem 2.5rem;
    border-bottom: 0.5px solid var(--border);
}

.wcab-banner {
    background: var(--blue-50);
    border: 0.5px solid var(--blue-100);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.wcab-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 24px;
}

.wcab-banner h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--blue-800);
    margin-bottom: 6px;
}

.wcab-banner p {
    font-size: 13.5px;
    color: var(--blue-600);
    line-height: 1.65;
}

.wcab-banner strong {
    font-weight: 500;
}

/* ── STATS ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    background: var(--bg);
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 0.5px solid var(--border);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--blue-600);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-item {
    background: var(--bg);
    padding: 1.35rem 1.5rem;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-right: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

    .feature-item:nth-child(even) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .feature-item i {
        font-size: 19px;
        color: var(--blue-600);
        margin-top: 2px;
        flex-shrink: 0;
    }

    .feature-item h4 {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--text);
    }

    .feature-item p {
        font-size: 12px;
        color: var(--text-secondary);
        line-height: 1.55;
    }

/* ── CTA STRIP ── */
.cta-strip {
    padding: 3rem 2.5rem;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

    .cta-strip h2 {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 4px;
    }

    .cta-strip p {
        font-size: 14px;
        color: var(--text-secondary);
    }

/* ── FOOTER ── */
.footer {
    padding: 1.75rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

    .footer-logo span {
        color: var(--blue-600);
    }

.footer-sub {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 3px;
}

.footer-meta {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
    line-height: 1.7;
}

.footer-url {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 640px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .ai-cards {
        grid-template-columns: 1fr;
    }

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 32px;
    }

    .ai-header {
        flex-direction: column;
    }

    .cta-strip {
        flex-direction: column;
    }
}
