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

:root {
    --pan-orange: #FA582D;
    --pan-orange-bright: #FF7A45;
    --pan-orange-deep: #E63E12;
    --pan-yellow: #FED419;
    --pan-yellow-bright: #FFE04A;
    --pan-black: #0A0A0A;
    --pan-charcoal: #141414;
    --pan-graphite: #1F1F1F;
    --pan-slate: #2A2A2A;
    --pan-light-gray: #F5F5F7;
    --pan-mid-gray: #8A8A8F;

    --primary-color: var(--pan-orange);
    --accent-color: var(--pan-yellow);
    --secondary-color: var(--pan-black);
    --dark-bg: var(--pan-black);
    --light-bg: #FAFAFA;
    --card-bg: #ffffff;
    --text-primary: #0A0A0A;
    --text-secondary: #55555A;
    --text-muted: #8A8A8F;
    --border-color: #E8E8EC;
    --success-color: #16A34A;
    --warning-color: #F59E0B;
    --danger-color: #DC2626;
    --critical-color: #7F1D1D;

    --gradient-brand: linear-gradient(135deg, var(--pan-orange) 0%, var(--pan-yellow) 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(250, 88, 45, 0.08) 0%, rgba(254, 212, 25, 0.08) 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
    --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(250, 88, 45, 0.28) 0%, transparent 55%),
                     radial-gradient(ellipse 60% 50% at 85% 100%, rgba(254, 212, 25, 0.18) 0%, transparent 50%),
                     linear-gradient(180deg, #0A0A0A 0%, #141414 100%);

    --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04), 0 1px 3px rgba(10, 10, 10, 0.06);
    --shadow-md: 0 4px 12px rgba(10, 10, 10, 0.06), 0 2px 4px rgba(10, 10, 10, 0.04);
    --shadow-lg: 0 12px 32px rgba(10, 10, 10, 0.10), 0 4px 8px rgba(10, 10, 10, 0.05);
    --shadow-glow: 0 8px 32px rgba(250, 88, 45, 0.18);
    --shadow-glow-yellow: 0 8px 32px rgba(254, 212, 25, 0.22);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: white;
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.logo-divider {
    width: 1px;
    height: 26px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.28), transparent);
    display: inline-block;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
    color: white;
    background-color: rgba(250, 88, 45, 0.15);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

/* ============ HERO (HOME) ============ */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 7rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(250, 88, 45, 0.06) 0%, transparent 1%),
        radial-gradient(circle at 70% 60%, rgba(254, 212, 25, 0.04) 0%, transparent 1%);
    background-size: 3px 3px, 3px 3px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(250, 88, 45, 0.12);
    border: 1px solid rgba(250, 88, 45, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pan-orange-bright);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--pan-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--pan-orange);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #C0C0C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: white;
    letter-spacing: -0.02em;
}

.subtitle .accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: var(--gradient-brand);
    color: var(--pan-black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(250, 88, 45, 0.32);
}

.page-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding: 0.7rem 1.5rem;
    background: var(--gradient-brand);
    color: var(--pan-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.page-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(250, 88, 45, 0.32);
}

/* Give anchor targets breathing room under the sticky navbar */
[id] {
    scroll-margin-top: 96px;
}

/* ============ PILLARS ============ */
.pillars {
    padding: 6rem 0;
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.pillar-card {
    background: var(--card-bg);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: white;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--pan-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.learn-more:hover {
    gap: 0.6rem;
    color: var(--pan-orange-deep);
}

/* ============ WHY CLARA ============ */
.why-clara {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-clara::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 212, 25, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.why-clara::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 88, 45, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.benefit {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-brand);
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.benefit p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.page-hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #C0C0C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
}

/* ============ CONTENT SECTIONS ============ */
.content-section {
    padding: 4rem 0;
    background-color: white;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
}

.content-main h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 1rem;
}

.content-main h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 4px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 1rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============ PROCESS STEPS ============ */
.process-steps {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F7 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* ============ FINDINGS ============ */
.findings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 2rem 0;
}

.finding-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.finding-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.finding-card.critical {
    background: linear-gradient(135deg, #FEF2F2 0%, #FFF5F5 100%);
    border-left-color: var(--critical-color);
}

.finding-card.high {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFF8F0 100%);
    border-left-color: var(--danger-color);
}

.finding-card.medium {
    background: linear-gradient(135deg, #FEFCE8 0%, #FFFBEB 100%);
    border-left-color: var(--warning-color);
}

.finding-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.finding-card.critical h4 { color: var(--critical-color); }
.finding-card.high h4 { color: var(--danger-color); }
.finding-card.medium h4 { color: #B45309; }

.finding-card ul {
    list-style: none;
}

.finding-card li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.finding-card li:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    margin-top: 0.55rem;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ============ DELIVERABLES ============ */
.deliverables-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.deliverables-list li {
    padding: 1rem 1.25rem;
    background: var(--light-bg);
    border-left: 3px solid var(--pan-orange);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.deliverables-list li:hover {
    background: var(--gradient-brand-soft);
    transform: translateX(4px);
}

.deliverables-list li:before {
    content: "✓";
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(250, 88, 45, 0.25);
}

/* ============ SIDEBAR ============ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 96px;
    align-self: start;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.info-box:hover {
    box-shadow: var(--shadow-md);
}

.info-box h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info-box p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 0.55rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

.info-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ============ ASSESSMENT AREAS ============ */
.assessment-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0.7;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.area-card:hover::before {
    opacity: 1;
}

.area-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.area-card li:before {
    content: "→";
    color: var(--pan-orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============ RISK CATEGORIES ============ */
.risk-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.risk-category {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

.risk-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--pan-orange);
}

.risk-category h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-category h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.risk-category p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.55;
}

/* ============ WALKTHROUGH ============ */
.walkthrough {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    counter-reset: walk;
}

.walk-step {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.walk-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-brand);
}

.walk-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.walk-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.walk-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    background: var(--gradient-brand);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(250, 88, 45, 0.25);
    flex-shrink: 0;
}

.walk-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.walk-step-body {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

.walk-step-body p {
    margin-bottom: 1rem;
}

.walk-step-body p:last-child {
    margin-bottom: 0;
}

.walk-step-body ol,
.walk-step-body ul {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.walk-step-body ol li,
.walk-step-body ul li {
    padding: 0.3rem 0;
}

.walk-step-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============ CODE BLOCK ============ */
.code-block {
    background: #0F1116;
    color: #F5F5F7;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, Consolas, 'Courier New', monospace;
    font-size: 0.88rem;
    line-height: 1.6;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid #1F2229;
    position: relative;
}

.code-block::before {
    content: attr(data-label);
    display: block;
    color: var(--pan-orange-bright);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.85;
}

.code-block:not([data-label])::before {
    display: none;
}

code.inline {
    background: var(--pan-light-gray);
    color: var(--pan-orange-deep);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.85em;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

/* ============ CALLOUT ============ */
.callout {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    font-size: 0.93rem;
    line-height: 1.6;
    border: 1px solid;
}

.callout-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: white;
    margin-top: 1px;
}

.callout-body {
    color: var(--text-secondary);
    flex: 1;
}

.callout-body strong {
    color: var(--text-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.callout.tip {
    background: linear-gradient(135deg, rgba(250, 88, 45, 0.05) 0%, rgba(254, 212, 25, 0.05) 100%);
    border-color: rgba(250, 88, 45, 0.2);
}

.callout.tip .callout-icon {
    background: var(--gradient-brand);
}

.callout.note {
    background: #F5F7FA;
    border-color: #E1E5EB;
}

.callout.note .callout-icon {
    background: #4B5563;
}

.callout.warning {
    background: #FFFBEB;
    border-color: #FDE68A;
}

.callout.warning .callout-icon {
    background: #D97706;
}

/* ============ STAT BAR ============ */
.stat-comparison {
    background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.stat-comparison::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 88, 45, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stat-comparison-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
    position: relative;
}

.stat-comparison-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
    position: relative;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

.stat-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 1rem;
}

.stat-item-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.stat-item-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}

.stat-item-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--gradient-brand);
    transition: width 0.6s ease;
}

.stat-item.muted .stat-item-fill {
    background: rgba(255, 255, 255, 0.25);
}

.stat-item-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
    min-width: 60px;
    text-align: right;
}

.stat-item.hero .stat-item-value {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
}

.stat-source {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    position: relative;
}

/* ============ MODE COMPARISON ============ */
.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mode-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.mode-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mode-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    background: rgba(250, 88, 45, 0.1);
    color: var(--pan-orange-deep);
}

.mode-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.mode-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.mode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mode-meta strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ============ COVERAGE MAP ============ */
.coverage-map {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 60%, #1F1F1F 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.coverage-map::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(250, 88, 45, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.coverage-map-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.coverage-map-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.coverage-map-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0.4rem;
}

.coverage-map-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

.coverage-map-svg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    max-height: 420px;
    object-fit: contain;
}

.coverage-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.coverage-legend-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.coverage-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pan-orange);
    box-shadow: 0 0 10px rgba(250, 88, 45, 0.7);
    flex-shrink: 0;
}

.coverage-legend-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.coverage-legend-text strong {
    color: white;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.coverage-legend-text span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

@media (max-width: 700px) {
    .coverage-map {
        padding: 1.5rem;
    }
}

/* ============ COMING SOON ============ */
.coming-soon {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.roadmap-teaser {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(250, 88, 45, 0.05) 0%, rgba(254, 212, 25, 0.05) 100%);
    border: 1px solid rgba(250, 88, 45, 0.18);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.roadmap-teaser:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.roadmap-teaser .coming-soon-badge {
    background: rgba(254, 212, 25, 0.15);
    border-color: rgba(254, 212, 25, 0.4);
    color: #B47800;
    margin-bottom: 0;
    flex-shrink: 0;
}

.roadmap-teaser .coming-soon-badge::before {
    background: var(--pan-yellow);
    box-shadow: 0 0 8px rgba(254, 212, 25, 0.6);
}

.roadmap-teaser-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.roadmap-teaser-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.roadmap-teaser-text a {
    color: var(--pan-orange);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.roadmap-teaser-text a:hover {
    color: var(--pan-orange-deep);
}

@media (max-width: 700px) {
    .roadmap-teaser {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.coming-soon-card {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 60%, #1F1F1F 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 1.5rem 0 2.5rem;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.coming-soon-card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(254, 212, 25, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(254, 212, 25, 0.12);
    border: 1px solid rgba(254, 212, 25, 0.35);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pan-yellow-bright);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
}

.coming-soon-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--pan-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--pan-yellow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #C0C0C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.coming-soon-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 780px;
    margin-bottom: 2.25rem;
    line-height: 1.65;
    position: relative;
}

.coming-soon-lead .accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coming-soon-col h4 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.9rem;
}

.coming-soon-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.coming-soon-col li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.55;
    padding-left: 1.25rem;
    position: relative;
}

.coming-soon-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* ============ RESOURCES ============ */
.resources {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.resources::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(250, 88, 45, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.resources::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(254, 212, 25, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.resources .container {
    position: relative;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}

.resource-icon svg {
    width: 24px;
    height: 24px;
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pan-orange);
    font-weight: 700;
    font-size: 0.92rem;
    transition: gap 0.2s ease;
    word-break: break-word;
}

.resource-card:hover .resource-link {
    gap: 0.7rem;
}

.resource-meta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============ DEMO VIDEO ============ */
.demo-video-wrapper {
    margin: 1.5rem 0 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0A0A0A;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.demo-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    z-index: 1;
}

.demo-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    background: #000;
}

/* Compact resource-grid variant when embedded inside content-main */
.content-main .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.5rem 0 2.5rem;
}

.content-main .resource-card {
    padding: 1.25rem;
    gap: 0.55rem;
}

.content-main .resource-card h3 {
    font-size: 1rem;
    line-height: 1.3;
}

.content-main .resource-card p {
    font-size: 0.88rem;
    line-height: 1.5;
}

.content-main .resource-meta {
    font-size: 0.68rem;
}

.content-main .resource-link {
    font-size: 0.85rem;
}

.content-main .resource-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
}

.content-main .resource-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 700px) {
    .content-main .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ FOOTER ============ */
footer {
    background-color: var(--pan-black);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-product {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .pillars-grid,
    .benefits-grid,
    .findings-grid,
    .assessment-areas,
    .risk-categories {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4.5rem 0 5rem;
    }

    .pillars,
    .why-clara {
        padding: 4rem 0;
    }

    .stat-item {
        grid-template-columns: 140px 1fr auto;
        gap: 0.75rem;
    }

    .stat-comparison {
        padding: 1.75rem;
    }

    .walk-step {
        padding: 1.5rem;
    }
}

@media (max-width: 500px) {
    .logo {
        gap: 0.5rem;
    }

    .brand-logo {
        height: 26px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
}
