/* ── MeshHive Global Theme ──────────────────────────────────────────────── */

:root {
    /* ── Core brand colours ──────────────────────────────────────────────── */
    --mh-bg:            #1E1F22; /* Graphite Slate */
    --mh-bg-card:       rgba(255,255,255,0.04);
    --mh-bg-input:      #2A2D30; /* Slate Wash */
    --mh-accent:        #B86B3F; /* Burnt Copper */
    --mh-accent-hover:  #cc7d50;
    --mh-accent-dim:    rgba(184,107,63,0.12);
    --mh-teal:          #6BA7A6; /* Desaturated Teal */
    --mh-teal-hover:    #7dbcbb;
    --mh-border:        #3C3F44; /* Iron Veil */
    --mh-border-dim:    #2A2D30; /* Slate Wash */
    --mh-text:          #E6E7E9; /* Mist Grey */
    --mh-text-muted:    #6E7F91; /* Soft Steel */
    --mh-text-dim:      #6E7F91; /* Soft Steel */
    --mh-text-faint:    #4a5260;
    --mh-gold:          #B86B3F; /* Burnt Copper (replaces amber gold) */
    /* ── Extended UI palette ─────────────────────────────────────────────── */
    --mh-sage:          #A3B18A;
    --mh-amber:         #D9A066;
    --mh-error:         #C94C4C;
    --mh-slate-wash:    #2A2D30;
    --mh-iron-veil:     #3C3F44;
    /* ── Card dark variant ───────────────────────────────────────────────── */
    --mh-bg-dark:       #2A2D30;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: var(--mh-bg);
    color: var(--mh-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--mh-text);
}

h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    color: var(--mh-text);
}

/* ── Hex background pattern ─────────────────────────────────────────────── */
.mh-hex-bg {
    position: relative;
    overflow: hidden;
}
.mh-hex-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='121'%3E%3Cpolygon points='35%2C2 67%2C19.5 67%2C54.5 35%2C72 3%2C54.5 3%2C19.5' fill='none' stroke='%23262829' stroke-width='0.75'/%3E%3Cpolygon points='35%2C74 67%2C91.5 67%2C119 35%2C121 3%2C119 3%2C91.5' fill='none' stroke='%23262829' stroke-width='0.75'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.mh-hex-bg > * { position: relative; z-index: 1; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.mh-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 60px;
}
.mh-container {
    width: 100%;
    max-width: 760px;
}
.mh-container--narrow {
    width: 100%;
    max-width: 640px;
}
.mh-container--wide {
    width: 100%;
    max-width: 1100px;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.mh-nav {
    width: 100%;
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 40px;
}
.mh-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--mh-text);
}
.mh-nav-brand-text {
    font-size: 18px;
    font-weight: 700;
}
.mh-nav-brand-text span { color: var(--mh-accent); }
.mh-nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}
.mh-nav-links a {
    font-size: 14px;
    color: var(--mh-text-dim);
    text-decoration: none;
    transition: color 0.15s;
}
.mh-nav-links a:hover,
.mh-nav-links a.active { color: var(--mh-accent); }

/* Home page nav: centered, links only */
.mh-nav--centered {
    justify-content: center;
    max-width: 100%;
    padding-bottom: 16px;
}
.mh-nav--centered .mh-nav-links {
    gap: 32px;
}
.mh-nav--centered .mh-nav-links a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mh-text-faint);
}
.mh-nav--centered .mh-nav-links a:hover,
.mh-nav--centered .mh-nav-links a.active { color: var(--mh-accent); }

/* ── Typography ─────────────────────────────────────────────────────────── */
.mh-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mh-gold);
    margin-bottom: 14px;
}
.mh-headline {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--mh-text);
    margin-bottom: 14px;
}
.mh-headline .accent { color: var(--mh-accent); }
.mh-subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mh-text-muted);
    margin-bottom: 0;
}
.mh-divider {
    width: 36px;
    height: 2px;
    background: var(--mh-accent);
    margin: 24px 0 36px;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.mh-card {
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s;
}
.mh-card:hover { border-color: rgba(107,167,166,0.35); }
.mh-card-icon { font-size: 22px; margin-bottom: 12px; }
.mh-card-title { font-size: 15px; font-weight: 700; color: var(--mh-text); margin-bottom: 6px; }
.mh-card-desc  { font-size: 14px; color: var(--mh-text-dim); line-height: 1.6; }

.mh-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

/* ── Email form ─────────────────────────────────────────────────────────── */
.mh-form {
    display: flex;
    width: 100%;
    max-width: 460px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--mh-border);
}
.mh-form input[type="email"] {
    flex: 1;
    background: var(--mh-bg-input);
    border: none;
    padding: 14px 18px;
    color: var(--mh-text);
    font-size: 15px;
    outline: none;
    font-family: inherit;
    min-width: 0;
}
.mh-form input[type="email"]::placeholder { color: #4a3a20; }
.mh-form input[type="email"]:disabled { opacity: 0.6; }
.mh-form button {
    background: var(--mh-accent);
    color: var(--mh-bg);
    border: none;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.15s;
}
.mh-form button:hover:not(:disabled) { background: var(--mh-accent-hover); }
.mh-form button:disabled { opacity: 0.7; cursor: default; }
.mh-form-msg {
    font-size: 13px;
    color: var(--mh-text-faint);
    margin-top: 10px;
}
.mh-form-msg.success { color: var(--mh-accent); font-size: 16px; }
.mh-form-msg.error   { color: #ff6b6b; }

/* ── Status badge ───────────────────────────────────────────────────────── */
.mh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(184,107,63,0.4);
    color: var(--mh-accent);
    background: var(--mh-accent-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.mh-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mh-accent);
    animation: mhPulse 2s ease-in-out infinite;
}
@keyframes mhPulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── Tags ───────────────────────────────────────────────────────────────── */
.mh-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.mh-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 20px;
    font-size: 14px; font-weight: 500; line-height: 1;
}
.mh-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.mh-tag--primary { border: 1px solid var(--mh-accent); color: var(--mh-accent); background: var(--mh-accent-dim); }
.mh-tag--secondary { border: 1px solid var(--mh-border); color: var(--mh-text-dim); background: rgba(255,255,255,0.02); }

/* ── CTA block ──────────────────────────────────────────────────────────── */
.mh-cta {
    background: rgba(107,167,166,0.06);
    border: 1px solid rgba(107,167,166,0.2);
    border-radius: 12px;
    padding: 32px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.mh-cta h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.mh-cta p  { font-size: 14px; color: var(--mh-gold); }
.mh-btn {
    display: inline-block;
    background: var(--mh-accent);
    color: var(--mh-bg);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.mh-btn:hover { background: var(--mh-accent-hover); }

/* ── Two-column panel ───────────────────────────────────────────────────── */
.mh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mh-panel {
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: 12px;
    padding: 28px;
}
.mh-panel-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 12px; font-weight: 600;
}
.mh-panel-label--problem  { color: #9a4a2a; }
.mh-panel-label--solution { color: var(--mh-accent); }
.mh-panel p { font-size: 15px; line-height: 1.7; color: #9a8a6a; }
.mh-panel p strong { color: var(--mh-text); font-weight: 600; }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.mh-steps { display: flex; flex-direction: column; }
.mh-step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--mh-border-dim); }
.mh-step:last-child { border-bottom: none; }
.mh-step-num {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(184,107,63,0.4); color: var(--mh-accent);
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.mh-step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.mh-step-desc  { font-size: 14px; color: var(--mh-text-dim); line-height: 1.65; }

/* ── Provider pills ─────────────────────────────────────────────────────── */
.mh-providers {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--mh-border);
    border-radius: 12px;
    padding: 28px 36px;
    text-align: center;
}
.mh-providers-label {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--mh-text-faint); margin-bottom: 20px;
}
.mh-provider-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.mh-provider-pill {
    padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
    border: 1px solid var(--mh-border); color: var(--mh-text-muted); background: rgba(255,255,255,0.02);
}

/* ── Avatar ─────────────────────────────────────────────────────────────── */
.mh-avatar {
    flex-shrink: 0; width: 100px; height: 100px; border-radius: 50%;
    background: rgba(107,167,166,0.1); border: 2px solid rgba(107,167,166,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; color: var(--mh-accent); letter-spacing: -1px;
}

/* ── Bio block ──────────────────────────────────────────────────────────── */
.mh-bio-block { display: flex; gap: 40px; align-items: flex-start; }
.mh-bio-text p { font-size: 17px; line-height: 1.75; color: var(--mh-text-muted); margin-bottom: 18px; }
.mh-bio-text p:last-child { margin-bottom: 0; }
.mh-bio-text strong { color: var(--mh-text); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.mh-footer {
    font-size: 13px; color: var(--mh-text-faint);
    display: flex; gap: 18px; flex-wrap: wrap;
    align-items: center; padding-top: 24px;
    border-top: 1px solid var(--mh-border-dim);
    width: 100%;
}
.mh-footer a { color: var(--mh-text-faint); text-decoration: none; transition: color 0.15s; }
.mh-footer a:hover { color: var(--mh-accent); }
.mh-footer-sep { opacity: 0.4; }

/* ── Docs layout ─────────────────────────────────────────────────────────── */
.mh-docs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    padding-top: 20px;
}
.mh-docs-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}
.mh-docs-sidebar-title {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--mh-text-faint); margin-bottom: 12px; padding: 0 8px;
}
.mh-docs-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mh-docs-nav a {
    display: block; padding: 8px 12px; border-radius: 8px;
    font-size: 14px; color: var(--mh-text-dim); text-decoration: none; transition: all 0.15s;
}
.mh-docs-nav a:hover { background: var(--mh-bg-card); color: var(--mh-text); }
.mh-docs-nav a.active { background: var(--mh-accent-dim); color: var(--mh-accent); }
.mh-docs-nav-group { margin-bottom: 20px; }
.mh-docs-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.mh-docs-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.mh-docs-content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.mh-docs-content p  { font-size: 16px; line-height: 1.75; color: var(--mh-text-muted); margin-bottom: 16px; }
.mh-docs-content ul { padding-left: 20px; color: var(--mh-text-muted); line-height: 1.8; font-size: 16px; }
.mh-docs-content code {
    background: rgba(107,167,166,0.1); color: var(--mh-teal);
    padding: 2px 6px; border-radius: 4px; font-size: 14px; font-family: monospace;
}
.mh-docs-content pre {
    background: rgba(0,0,0,0.4); border: 1px solid var(--mh-border);
    border-radius: 8px; padding: 20px; overflow-x: auto; margin-bottom: 20px;
}
.mh-docs-content pre code { background: none; padding: 0; color: #e0c080; }

/* ── Site Nav ────────────────────────────────────────────────────────────── */
.site-nav {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid var(--mh-border-dim);
}
.nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.site-nav--centered .nav-inner {
    justify-content: center;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mh-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
}
.nav-brand:hover { color: var(--mh-accent); }
.nav-logo { height: 32px; width: auto; display: block; }
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--mh-text);
    border-radius: 2px;
    transition: background 0.15s;
}
.nav-hamburger:hover span { background: var(--mh-accent); }
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--mh-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.15s;
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--mh-accent); }

/* ── Site Footer ─────────────────────────────────────────────────────────── */
.site-footer {
    text-align: center;
    padding: 40px 24px 32px;
    color: var(--mh-text-dim);
    font-size: 13px;
    border-top: 1px solid var(--mh-border-dim);
    margin-top: 60px;
}
.site-footer a { color: var(--mh-text-dim); text-decoration: none; }
.site-footer a:hover { color: var(--mh-text-muted); }

/* ── Buttons & Links ─────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--mh-accent);
    color: var(--mh-text);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--mh-accent-hover); }
.link-accent { color: var(--mh-accent); text-decoration: none; }
.link-accent:hover { color: var(--mh-accent-hover); text-decoration: underline; }

/* ── Home Splash ─────────────────────────────────────────────────────────── */
.home-splash {
    min-height: calc(100vh - 81px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 80px;
    position: relative;
    /* Hex grid pattern — very subtle, so text stays legible */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='121'%3E%3Cpolygon points='35%2C2 67%2C19.5 67%2C54.5 35%2C72 3%2C54.5 3%2C19.5' fill='none' stroke='%23262829' stroke-width='0.75'/%3E%3Cpolygon points='35%2C74 67%2C91.5 67%2C119 35%2C121 3%2C119 3%2C91.5' fill='none' stroke='%23262829' stroke-width='0.75'/%3E%3C/svg%3E");
}
.splash-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--mh-text);
    margin-bottom: 20px;
    max-width: 700px;
}
.splash-sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--mh-text-muted);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 28px;
}
.product-tag {
    margin-bottom: 40px;
}
.product-tag a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--mh-text);
    text-decoration: none;
    letter-spacing: 0.5px;
    background: var(--mh-teal);
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.15s, opacity 0.15s;
}
.product-tag a:hover { background: var(--mh-teal-hover); opacity: 0.9; }

/* ── Email Form ──────────────────────────────────────────────────────────── */
.email-form-wrap { width: 100%; max-width: 460px; }
.email-prompt {
    font-size: 14px;
    color: var(--mh-text-dim);
    margin-bottom: 12px;
}
.email-form {
    display: flex;
    gap: 8px;
}
.email-input {
    flex: 1;
    background: var(--mh-bg-input);
    border: 1px solid var(--mh-border);
    color: var(--mh-text);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s;
}
.email-input::placeholder { color: var(--mh-text-dim); }
.email-input:focus { border-color: var(--mh-accent); }
.email-submit {
    background: var(--mh-accent);
    color: var(--mh-text);
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.email-submit:hover:not(:disabled) { background: var(--mh-accent-hover); }
.email-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.email-status { font-size: 14px; margin-top: 10px; }
.email-status--ok  { color: var(--mh-sage); }
.email-status--error { color: var(--mh-error); }

/* ── Status Badge ────────────────────────────────────────────────────────── */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--mh-accent);
    border: 1px solid rgba(184,107,63,0.35);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--mh-accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* ── Page Content ────────────────────────────────────────────────────────── */
.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.content-section {
    margin-bottom: 52px;
}
.content-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--mh-text);
}
.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--mh-text-muted);
    margin-bottom: 16px;
}
.content-section p:last-child { margin-bottom: 0; }
.content-section a { color: var(--mh-accent); text-decoration: none; }
.content-section a:hover { text-decoration: underline; }
.lead {
    font-size: 19px !important;
    color: var(--mh-text-muted);
    line-height: 1.7;
}

/* ── Bio Section ─────────────────────────────────────────────────────────── */
.bio-section {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--mh-border-dim);
}
.avatar-placeholder {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--mh-accent-dim);
    border: 2px solid var(--mh-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--mh-accent);
    flex-shrink: 0;
}
.bio-name {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 4px;
}
.bio-role {
    font-size: 15px;
    color: var(--mh-accent);
    margin-bottom: 2px;
}
.bio-location {
    font-size: 14px;
    color: var(--mh-text-dim);
}

/* ── Product Hero ────────────────────────────────────────────────────────── */
.product-hero {
    text-align: center;
    padding: 20px 0 52px;
    margin-bottom: 0;
}
.product-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-text-dim);
    margin-bottom: 16px;
}
.product-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.product-tagline {
    font-size: 19px;
    color: var(--mh-text-muted);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 24px;
}

/* ── Cards Grid ──────────────────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.card {
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: 12px;
    padding: 24px;
}
.card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.card p {
    font-size: 14px;
    color: var(--mh-text-muted);
    line-height: 1.65;
}

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.step-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--mh-accent);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(184,107,63,0.08);
    border: 1px solid rgba(184,107,63,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.step-body p {
    font-size: 15px;
    color: var(--mh-text-muted);
    line-height: 1.7;
}

/* ── Provider Pills ──────────────────────────────────────────────────────── */
.provider-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.pill {
    font-size: 13px;
    font-weight: 500;
    color: var(--mh-text-muted);
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    padding: 6px 14px;
    border-radius: 20px;
}

/* ── CTA Block ───────────────────────────────────────────────────────────── */
.cta-block {
    background: rgba(107,167,166,0.06);
    border: 1px solid rgba(107,167,166,0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 24px;
}
.cta-block h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-block p {
    color: var(--mh-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.cta-block a:not(.btn-primary) { color: var(--mh-accent); text-decoration: none; }

/* ── Docs Layout ─────────────────────────────────────────────────────────── */
.docs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    gap: 48px;
    align-items: start;
}
.docs-sidebar {
    position: sticky;
    top: 24px;
}
.docs-nav { list-style: none; }
.docs-nav-section { margin-bottom: 28px; }
.docs-nav-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mh-text-dim);
    margin-bottom: 8px;
}
.docs-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.docs-nav a {
    display: block;
    font-size: 14px;
    color: var(--mh-text-muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.12s, background 0.12s;
}
.docs-nav a:hover { background: var(--mh-bg-card); color: var(--mh-text); }
.docs-nav a.active { background: var(--mh-accent-dim); color: var(--mh-accent); }
.docs-content h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}
.docs-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 12px;
}
.docs-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mh-text-muted);
    margin-bottom: 16px;
}
.docs-content a { color: var(--mh-accent); text-decoration: none; }
.docs-content a:hover { text-decoration: underline; }
.docs-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mh-text-dim);
    margin-bottom: 12px;
}
.docs-lead {
    font-size: 18px !important;
    margin-bottom: 28px !important;
}
.docs-notice {
    background: rgba(107,167,166,0.06);
    border: 1px solid rgba(107,167,166,0.2);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--mh-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}
.docs-notice strong { color: var(--mh-accent); }

/* ── Coming Soon ─────────────────────────────────────────────────────────── */
.coming-soon {
    text-align: center;
    padding: 100px 24px 120px;
    max-width: 520px;
    margin: 0 auto;
}
.coming-soon-icon {
    margin-bottom: 24px;
    opacity: 0.7;
}
.coming-soon h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--mh-text);
    margin-bottom: 16px;
}
.coming-soon p {
    font-size: 17px;
    color: var(--mh-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}
.coming-soon-sub {
    font-size: 15px !important;
    margin-top: 12px;
}
.coming-soon a {
    color: var(--mh-accent);
    text-decoration: none;
}
.coming-soon a:hover { text-decoration: underline; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.not-found {
    text-align: center;
    padding: 120px 24px;
}
.not-found h1 {
    font-size: 80px;
    font-weight: 800;
    color: var(--mh-text-dim);
    margin-bottom: 16px;
}
.not-found p {
    font-size: 18px;
    color: var(--mh-text-muted);
    margin-bottom: 32px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

/* Tablet (481px–700px) */
@media (max-width: 700px) {
    .mh-two-col      { grid-template-columns: 1fr; }
    .mh-bio-block    { flex-direction: column; }
    .mh-docs-layout  { grid-template-columns: 1fr; }
    .mh-docs-sidebar { position: static; }
    .mh-nav          { flex-direction: column; gap: 16px; align-items: flex-start; }
    .mh-cta          { flex-direction: column; }
    .docs-layout     { grid-template-columns: 1fr; }
    .docs-sidebar    { position: static; }
    .bio-section     { flex-direction: column; text-align: center; }
    .cards-grid      { grid-template-columns: 1fr; }
    .cta-block       { padding: 28px 20px; }
    .step            { flex-direction: column; gap: 12px; }
    .product-tagline { font-size: 17px; }
    .lead            { font-size: 17px !important; }
    .splash-sub      { font-size: 16px; }
    .not-found h1    { font-size: 56px; }

    /* Hamburger nav */
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--mh-border-dim);
        padding-top: 12px;
        margin-top: 4px;
    }
    .nav-links--open { display: flex; }
    .nav-links a {
        padding: 12px 4px;
        font-size: 15px;
        min-height: 48px;
        border-bottom: 1px solid var(--mh-border-dim);
    }
    .nav-links a:last-child { border-bottom: none; }

    /* Email form stacks */
    .email-form      { flex-direction: column; }
    .email-submit    { width: 100%; }
    .email-form-wrap { padding: 0 4px; }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
    .site-nav        { padding: 12px 16px; }
    .home-splash     { padding: 40px 16px 60px; }
    .mh-page         { padding: 0 16px 48px; }
    .content-section { margin-bottom: 36px; }
    .cta-block       { padding: 24px 16px; }
    .not-found       { padding: 80px 16px; }
    .not-found h1    { font-size: 40px; }
    .pill            { font-size: 12px; padding: 7px 12px; }
    .bio-name        { font-size: 24px; }
}
