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

:root {
    /* Base Palette — Anthara Verdant Compliance */
    --color-surface: #ffffff;
    --color-background: #F5F2EC;
    --color-primary: #4A8C6F;
    --color-primary-dark: #1E3A2F;
    --color-neutral-900: #1E3A2F;
    --color-neutral-500: #4E6B5C;
    --color-neutral-200: #C8BFAC;
    --color-neutral-50: #F5F2EC;

    /* Semantic Rating */
    --color-rating-excellent: #4A8C6F;
    --color-rating-adequate: #C49A3C;
    --color-rating-deficient: #B84233;
    --color-rating-excellent-bg: #EDF5F1;
    --color-rating-adequate-bg: #FBF6ED;
    --color-rating-deficient-bg: #F9EDEB;
    --color-rating-excellent-border: rgba(74, 140, 111, 0.3);
    --color-rating-adequate-border: rgba(196, 154, 60, 0.3);
    --color-rating-deficient-border: rgba(184, 66, 51, 0.3);

    /* Semantic UI */
    --color-focus-ring: #4A8C6F;

    /* Text */
    --text-primary: #1E3A2F;
    --text-secondary: #4E6B5C;
    --text-muted: #6B7F73;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 14px;
    --space-lg: 20px;
    --space-xl: 28px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;

    /* Borders */
    --border-card: #e8e8e8;
    --border-divider: rgba(128, 128, 128, 0.08);

    /* Shadow */
    --shadow-card: 0 2px 8px rgba(30, 58, 47, 0.06);

    /* Fonts */
    --font-heading: "Instrument Serif", serif;
    --font-body: "DM Sans", sans-serif;
    --font-code: "DM Mono", monospace;
}

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-primary-dark);
    color: var(--color-surface);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    z-index: 200;
    text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 242, 236, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-neutral-200);
    z-index: 100;
    padding: 0 24px;
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-primary-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.logo span { color: var(--text-secondary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.btn-primary { color: var(--color-surface); }
.nav-links a.btn-primary:hover { color: var(--color-surface); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 44px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #3A7A5D;
    color: var(--color-surface);
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-outline {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1.5px solid var(--color-neutral-200);
}
.btn-outline:hover { background: var(--color-rating-excellent-bg); }
.btn-large { padding: 14px 28px; font-size: 14px; }
.btn:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
}

/* ===== HERO ===== */
.hero {
    padding: 110px 24px 56px;
    background: linear-gradient(180deg, rgba(74, 140, 111, 0.04) 0%, var(--color-background) 100%);
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--color-rating-excellent-bg);
    color: var(--color-primary);
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid var(--color-rating-excellent-border);
    margin-bottom: var(--space-xl);
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-lg);
    color: var(--color-neutral-900);
}
.hero p {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 0 var(--space-xl);
    line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== HERO DASHBOARD PANEL ===== */
.hero-panel-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 47, 0.12), 0 1px 3px rgba(30, 58, 47, 0.08);
    border: 1px solid var(--border-card);
}
.hero-panel-titlebar {
    background: #f0ede7;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-neutral-200);
}
.hero-panel-dots {
    display: flex;
    gap: 6px;
}
.hero-panel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-panel-dots span:nth-child(1) { background: #EC6A5E; }
.hero-panel-dots span:nth-child(2) { background: #F4BF4F; }
.hero-panel-dots span:nth-child(3) { background: #61C554; }
.hero-panel-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-code);
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.5);
    padding: 3px 12px;
    border-radius: 4px;
    margin-right: 38px;
}
.hero-panel {
    background: var(--color-surface);
    padding: 24px;
}
.hero-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-divider);
}
.hero-panel-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-panel-title {
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.hero-panel-tab {
    font-family: var(--font-code);
    font-size: 11px;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
}
.hero-panel-tab.active {
    background: var(--color-rating-excellent-bg);
    color: var(--color-primary);
    font-weight: 500;
}
.hero-panel-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-panel-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-code);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-primary);
}
.hero-panel-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-panel-timestamp {
    font-family: var(--font-code);
    font-size: 10px;
    color: var(--text-muted);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.hero-stat {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    text-align: center;
}
.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-neutral-900);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-value.excellent { color: var(--color-rating-excellent); }
.hero-stat-value.deficient { color: var(--color-rating-deficient); }
.hero-stat-label {
    font-family: var(--font-code);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.hero-code {
    background: var(--color-primary-dark);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    overflow-x: auto;
}
.hero-code pre {
    font-family: var(--font-code);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
.hero-code .code-comment { color: rgba(255, 255, 255, 0.35); }
.hero-code .code-warning { color: #E8837A; }
.hero-code .code-safe { color: #7ECBA1; }

/* ===== PROBLEM ===== */
.problem {
    padding: 80px 24px;
    background: var(--color-surface);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
}
.problem-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.problem blockquote {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-neutral-900);
    line-height: 1.35;
    border-left: 3px solid var(--color-rating-deficient);
    padding-left: var(--space-lg);
    text-align: left;
    max-width: 620px;
    margin: 0 auto var(--space-xl);
}
.problem p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: left;
}

/* ===== COST OF INACTION STRIP ===== */
.cost-strip {
    padding: 80px 24px;
    background: var(--color-primary-dark);
    color: var(--color-surface);
}
.cost-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.cost-strip-label {
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #E8837A;
    margin-bottom: 36px;
}
.cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cost-item {
    background: var(--color-surface);
    border-radius: 10px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-card);
}
.cost-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-rating-deficient-bg);
    margin-bottom: 16px;
}
.cost-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-rating-deficient);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cost-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 400;
    color: var(--color-neutral-900);
    line-height: 1.1;
    margin-bottom: 8px;
}
.cost-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 6px;
}
.cost-desc {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* ===== TRANSFORMATION STRIP ===== */
.transform-strip {
    padding: 48px 24px;
    background: var(--color-rating-excellent-bg);
    border-top: 1px solid var(--color-rating-excellent-border);
    border-bottom: 1px solid var(--color-rating-excellent-border);
}
.transform-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.transform-label {
    text-align: center;
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}
.transform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}
.transform-item {
    text-align: center;
}
.transform-before {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: var(--space-sm);
}
.transform-arrow {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}
.transform-after {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-neutral-900);
}

/* ===== SECTION UTILITIES ===== */
.section { padding: 80px 24px; }
.section-on-bg { background: var(--color-background); }
.section-on-surface {
    background: var(--color-surface);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
}
.section-on-green {
    background: var(--color-rating-excellent-bg);
    border-top: 1px solid var(--color-rating-excellent-border);
    border-bottom: 1px solid var(--color-rating-excellent-border);
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .overline {
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
    color: var(--color-neutral-900);
}
.section-header p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== VALUE STACK (replaces How It Works) ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.value-card {
    background: var(--color-surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: box-shadow 0.2s ease;
}
.value-card:hover {
    box-shadow: 0 4px 16px rgba(30, 58, 47, 0.1);
}
.value-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-rating-excellent-bg);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50%;
    border: 1px solid var(--color-rating-excellent-border);
    margin-bottom: 16px;
}
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-neutral-900);
}
.value-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}
.value-detail {
    font-family: var(--font-code);
    font-size: 12px;
    color: var(--text-muted);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-neutral-200);
    line-height: 1.6;
}
.value-highlight {
    color: var(--color-primary);
    font-weight: 500;
}

/* ===== PLATFORM WORKFLOW ===== */
.platform-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: start;
}
.platform-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.platform-steps::before { display: none; }
.platform-step {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: default;
    transition: all 0.2s ease;
    z-index: 1;
}
.platform-step:hover {
    background: var(--color-surface);
    border-color: var(--color-neutral-200);
    box-shadow: 0 2px 8px rgba(30, 58, 47, 0.06);
}
.platform-step.active {
    background: var(--color-surface);
    border-color: var(--color-rating-excellent-border);
    box-shadow: 0 2px 8px rgba(30, 58, 47, 0.06);
}
.platform-step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-background);
    border: 2px solid var(--color-neutral-200);
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}
.platform-step.active .platform-step-num {
    background: var(--color-rating-excellent-bg);
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.platform-step-content { flex: 1; }
.platform-step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
}
.platform-step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Platform preview panel */
.platform-preview-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 47, 0.1), 0 1px 3px rgba(30, 58, 47, 0.06);
    border: 1px solid var(--border-card);
    position: sticky;
    top: 80px;
}
.platform-preview-titlebar {
    background: #f0ede7;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-neutral-200);
}
.platform-preview-dots {
    display: flex;
    gap: 6px;
}
.platform-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.platform-preview-dots span:nth-child(1) { background: #EC6A5E; }
.platform-preview-dots span:nth-child(2) { background: #F4BF4F; }
.platform-preview-dots span:nth-child(3) { background: #61C554; }
.platform-preview-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-code);
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.5);
    padding: 3px 12px;
    border-radius: 4px;
    margin-right: 38px;
}
.platform-preview {
    background: var(--color-surface);
    padding: 28px;
}
.platform-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.platform-preview-title {
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.platform-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-code);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-rating-excellent-bg);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--color-rating-excellent-border);
}
.platform-preview-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}
.platform-heatmap { display: flex; flex-direction: column; gap: 8px; }
.platform-heatmap-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-divider);
    background: var(--color-background);
}
.platform-heatmap-module {
    flex-shrink: 0;
    width: 140px;
    font-family: var(--font-code);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 13px;
}
.platform-heatmap-bar-wrap {
    flex: 1;
    min-width: 0;
    height: 8px;
    background: var(--color-neutral-200);
    border-radius: 4px;
    overflow: hidden;
}
.platform-heatmap-bar {
    height: 100%;
    border-radius: 4px;
}
.platform-heatmap-label {
    flex-shrink: 0;
    width: 60px;
    text-align: right;
    font-family: var(--font-code);
    font-size: 11px;
    font-weight: 600;
}
.platform-heatmap-label.high { color: var(--color-rating-deficient); }
.platform-heatmap-label.medium { color: var(--color-rating-adequate); }
.platform-heatmap-label.low { color: var(--color-rating-excellent); }
.platform-preview-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-divider);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.platform-preview-scan {
    font-family: var(--font-code);
    font-size: 11px;
    color: var(--text-muted);
}
.platform-preview-count {
    font-family: var(--font-code);
    font-size: 11px;
    color: var(--text-secondary);
}

/* Panel toggle */
.platform-panel { display: none; }
.platform-panel.active { display: block; }
.platform-step { cursor: pointer; }

/* Prepare panel: zones */
.platform-zones { display: flex; flex-direction: column; gap: 10px; }
.platform-zone {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-divider);
    background: var(--color-background);
}
.platform-zone-header {
    font-family: var(--font-code);
    font-size: 13px;
    color: var(--color-neutral-900);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.platform-zone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.platform-zone-dot.green { background: var(--color-rating-excellent); }
.platform-zone-dot.yellow { background: var(--color-rating-adequate); }
.platform-zone-dot.red { background: var(--color-rating-deficient); }
.platform-zone-modules {
    font-family: var(--font-code);
    font-size: 12px;
    color: var(--text-muted);
    padding-left: 16px;
}

/* Prepare: badge group & HIPAA badge */
.platform-preview-badge-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.platform-preview-badge.hipaa {
    background: var(--color-rating-excellent-bg);
    color: var(--color-primary);
    border-color: var(--color-rating-excellent-border);
    gap: 5px;
}

/* Prepare: artifacts section */
.prepare-artifacts {
    margin-top: 0;
}
.prepare-artifacts-header {
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.prepare-artifacts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--color-background);
    border: 1px solid var(--border-divider);
    border-radius: 8px;
    overflow: hidden;
}
.prepare-artifact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-divider);
}
.prepare-artifact-row:last-child { border-bottom: none; }
.prepare-artifact-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}
.prepare-artifact-name svg { color: var(--text-muted); }
.prepare-artifact-status {
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-rating-excellent);
}
.prepare-artifacts-note {
    margin-top: 10px;
    font-family: var(--font-code);
    font-size: 11px;
    color: var(--text-muted);
}

/* Connect panel: horizontal flow */
.connect-flow-h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.connect-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 110px;
}
.connect-col-label {
    font-family: var(--font-code);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-align: center;
}
.connect-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: var(--color-background);
    border: 1px solid var(--border-divider);
    border-radius: 8px;
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}
.connect-node-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--text-muted);
}
.connect-arrow-h {
    flex-shrink: 0;
    padding: 0 6px;
    display: flex;
    align-items: center;
}
.connect-hub {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 24px;
    background: var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(74, 140, 111, 0.25);
}
.connect-hub-icon { color: var(--color-surface); }
.connect-hub-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-surface);
}
.connect-hub-sub {
    font-family: var(--font-code);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Govern panel: stat cards row */
.gov-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.gov-stat-card {
    background: var(--color-background);
    border: 1px solid var(--border-divider);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.gov-stat-card-label {
    font-family: var(--font-code);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.gov-stat-card-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}
.gov-stat-card-value.good { color: var(--color-rating-excellent); }
.gov-stat-card-value.warn { color: var(--color-rating-adequate); }
.gov-stat-card-unit {
    font-size: 14px;
    color: var(--text-muted);
}
.gov-stat-card-trend {
    font-family: var(--font-code);
    font-size: 11px;
}
.gov-stat-card-trend.up { color: var(--color-rating-excellent); }
.gov-stat-card-trend.neutral { color: var(--text-muted); }

/* Bottom row: chart + alerts */
.gov-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.gov-chart-card, .gov-alerts-card {
    background: var(--color-background);
    border: 1px solid var(--border-divider);
    border-radius: 8px;
    padding: 14px;
}
.gov-card-header {
    font-family: var(--font-code);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.gov-chart { position: relative; }
.gov-chart-svg {
    width: 100%;
    height: 80px;
    display: block;
}
.gov-chart-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-code);
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Alerts list */
.gov-alerts-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gov-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-divider);
}
.gov-alert-item:last-child { border-bottom: none; }
.gov-alert-item:first-child { padding-top: 0; }
.gov-alert-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.gov-alert-dot.good { background: var(--color-rating-excellent); }
.gov-alert-dot.warn { background: var(--color-rating-adequate); }
.gov-alert-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}
.gov-alert-time {
    font-family: var(--font-code);
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== PERSONA / FOR WHO ===== */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.persona-card {
    background: var(--color-surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}
.persona-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-rating-excellent-bg);
    border: 1px solid var(--color-rating-excellent-border);
    margin-bottom: 16px;
}
.persona-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.persona-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-neutral-900);
}
.persona-pain {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-md);
    font-style: italic;
    line-height: 1.5;
}
.persona-card > p:last-child {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 24px;
    background: var(--color-primary-dark);
    text-align: center;
    color: var(--color-surface);
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}
.cta-section p {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.btn-surface {
    background: var(--color-surface);
    color: var(--color-primary-dark);
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
}
.btn-surface:hover {
    background: var(--color-neutral-50);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.cta-subtext {
    font-family: var(--font-code);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 24px;
    border-top: 1px solid var(--color-neutral-200);
    background: var(--color-background);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}
.footer-inner p {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}
.footer-links a:hover { color: var(--text-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero p { margin: 0 auto var(--space-xl); max-width: 580px; }
    .hero-ctas { justify-content: center; }
    .hero-panel { max-width: 520px; margin: 0 auto; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .cost-grid { grid-template-columns: repeat(3, 1fr); }
    .transform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 100px 24px 48px; }
    .hero h1 { font-size: 28px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat { padding: 10px 8px; }
    .hero-stat-value { font-size: 18px; }
    .platform-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .platform-preview-wrapper { position: static; }
    .value-grid { grid-template-columns: 1fr; }
    .cost-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .transform-grid { grid-template-columns: 1fr; }
    .persona-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 24px; }
    .section-header { margin-bottom: 32px; }
    .problem { padding: 48px 24px; }
    .problem blockquote { font-size: 19px; }
}
@media (max-width: 480px) {
    .hero { padding: 96px 16px 48px; }
    .section { padding: 48px 16px; }
    .problem { padding: 40px 16px; }
    .cost-strip { padding: 48px 16px; }
    .cost-item { padding: 20px; }
    .cta-section { padding: 56px 16px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; max-width: 280px; }
    .heatmap-row .module { width: 100px; font-size: 11px; }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}
.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    border-radius: 1px;
}

/* ===== PRINT ===== */
@media print {
    nav, .mobile-menu-btn, .hero-ctas, .cta-section { display: none; }
    body { background: white; color: black; font-size: 12pt; }
    .hero { padding-top: 20px; }
    .section, .problem, .cost-strip, .transform-strip { padding: 20px 0; }
    .feature-block, .feature-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 16px;
    }
    .feature-visual { min-height: auto; break-inside: avoid; }
    .value-card, .persona-card { break-inside: avoid; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #666; }
}
