:root {
    --eh-navy: #081b33;
    --eh-blue: #0d2d50;
    --eh-teal: #0d8f82;
    --eh-teal-light: #32b8a8;
    --eh-bg: #f5f8fb;
    --eh-white: #fff;
    --eh-text: #142033;
    --eh-muted: #667085;
    --eh-border: #dce3ea;
    --eh-success: #198754;
    --eh-radius: 14px;
    --eh-shadow: 0 16px 40px rgba(8, 27, 51, .09);
    --eh-container: 1320px;
}

* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--eh-text);
    background: var(--eh-white);
    font: 16px/1.65 Inter, Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.eh-container {
    width: min(calc(100% - 32px), var(--eh-container));
    margin-inline: auto;
}

.eh-skip {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: -80px;
    padding: 10px 16px;
    background: var(--eh-white);
    color: var(--eh-navy);
    border-radius: 8px;
}

.eh-skip:focus {
    top: 12px;
}

.eh-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    color: var(--eh-white);
    background: rgba(8, 27, 51, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.eh-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.eh-logo img {
    display: block;
    width: 164px;
}

.eh-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: white;
    text-decoration: none;
    letter-spacing: -.035em;
}

.eh-wordmark strong {
    font-size: 1.55rem;
    font-weight: 850;
}

.eh-wordmark span {
    color: var(--eh-teal-light);
    font-size: 1.15rem;
    font-weight: 850;
    letter-spacing: .06em;
}

.eh-footer-wordmark {
    margin-bottom: 13px;
}

.eh-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.eh-menu a {
    color: #e8f0f7;
    text-decoration: none;
    font-weight: 650;
    font-size: .94rem;
}

.eh-menu a:hover, .eh-menu a:focus-visible, .eh-menu a[aria-current="page"] {
    color: var(--eh-teal-light);
}

.eh-actions {
    display: flex;
    gap: 10px;
}

.eh-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 9px;
    font-size: 1.3rem;
}

.eh-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1px 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: var(--eh-teal);
    color: white !important;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.eh-btn:hover {
    background: #08766c;
    text-decoration: none;
}

.eh-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
}

.eh-btn-light {
    background: white;
    color: var(--eh-navy) !important;
    border-color: var(--eh-border);
}

.eh-btn-dark {
    background: var(--eh-navy);
}

.eh-hero {
    overflow: hidden;
    padding: 92px 0 76px;
    color: white;
    background: radial-gradient(circle at 85% 15%, rgba(50, 184, 168, .25), transparent 28%), linear-gradient(135deg, var(--eh-navy), var(--eh-blue));
}

.eh-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 64px;
}

.eh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--eh-teal-light);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eh-hero h1, .eh-page-hero h1 {
    margin: 14px 0 18px;
    color: white;
    font-size: clamp(2.25rem, 5vw, 4.15rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.eh-lead {
    max-width: 680px;
    color: #c9d6e3;
    font-size: 1.15rem;
}

.eh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.eh-server-visual {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.eh-server-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0;
    padding: 15px;
    border-radius: 10px;
    background: rgba(4, 15, 29, .64);
}

.eh-server-light {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--eh-teal-light);
    box-shadow: 0 0 14px var(--eh-teal-light);
}

.eh-server-lines {
    flex: 1;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(50, 184, 168, .72) 38%, rgba(255, 255, 255, .1) 38%);
}

.eh-section {
    padding: 76px 0;
}

.eh-section-muted {
    background: var(--eh-bg);
}

.eh-section-head {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.eh-section h2 {
    margin: 8px 0 12px;
    color: var(--eh-navy);
    font-size: clamp(1.75rem, 3.5vw, 2.65rem);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.eh-section-head p, .eh-card p, .eh-muted {
    color: var(--eh-muted);
}

.eh-grid {
    display: grid;
    gap: 22px;
}

.eh-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.eh-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.eh-card {
    padding: 28px;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    background: white;
    box-shadow: 0 8px 25px rgba(8, 27, 51, .045);
}

.eh-card h3 {
    margin: 12px 0 8px;
    color: var(--eh-navy);
    font-size: 1.18rem;
}

.eh-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #e8f7f5;
    color: var(--eh-teal);
    font-size: 1.25rem;
    font-weight: 850;
}

.eh-domain {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}

.eh-domain-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px;
    border-radius: var(--eh-radius);
    background: white;
    box-shadow: var(--eh-shadow);
}

.eh-domain input, .eh-form input, .eh-form textarea, .eh-search-box input {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid var(--eh-border);
    border-radius: 9px;
    font: inherit;
    color: var(--eh-text);
}

.eh-domain input:focus, .eh-form input:focus, .eh-form textarea:focus, .eh-search-box input:focus {
    outline: 3px solid rgba(13, 143, 130, .2);
    border-color: var(--eh-teal);
}

.eh-plan {
    display: flex;
    flex-direction: column;
}

.eh-plan .eh-price {
    margin: 10px 0 18px;
    color: var(--eh-navy);
    font-size: 1.8rem;
    font-weight: 850;
}

.eh-plan ul {
    flex: 1;
    padding-left: 20px;
    color: var(--eh-muted);
}

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

.eh-app-card {
    position: relative;
    display: flex;
    min-height: 305px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.eh-app-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(13, 143, 130, .06);
}

.eh-app-card-featured {
    color: white;
    background: linear-gradient(145deg, var(--eh-navy), var(--eh-blue));
    border-color: transparent;
}

.eh-app-card-featured h3 {
    color: white;
}

.eh-app-card-featured p {
    color: #c9d6e3;
}

.eh-app-card .eh-icon {
    width: 58px;
    margin-top: 24px;
    font-size: .78rem;
    letter-spacing: .03em;
}

.eh-app-card h3 {
    margin-top: 20px;
    font-size: 1.35rem;
}

.eh-app-card p {
    max-width: 520px;
}

.eh-app-label {
    color: var(--eh-teal);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eh-app-card-featured .eh-app-label {
    color: var(--eh-teal-light);
}

.eh-text-link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: var(--eh-teal);
    font-weight: 800;
    text-decoration: none;
}

.eh-app-card-featured .eh-text-link {
    color: var(--eh-teal-light);
}

.eh-text-link:hover {
    text-decoration: underline;
}

.eh-apps-hero {
    overflow: hidden;
}

.eh-apps-visual {
    display: grid;
    place-items: center;
    min-height: 330px;
}

.eh-apps-orbit {
    position: relative;
    display: grid;
    place-items: center;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
}

.eh-apps-orbit::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px dashed rgba(50, 184, 168, .55);
    border-radius: 50%;
}

.eh-apps-orbit strong {
    display: grid;
    place-items: center;
    width: 95px;
    height: 95px;
    border-radius: 24px;
    background: var(--eh-teal);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.eh-apps-orbit span {
    position: absolute;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 13px;
    background: var(--eh-blue);
    color: var(--eh-teal-light);
    font-size: .72rem;
    font-weight: 850;
}

.eh-apps-orbit span:nth-child(1) {
    top: -25px;
}

.eh-apps-orbit span:nth-child(2) {
    right: -25px;
}

.eh-apps-orbit span:nth-child(3) {
    bottom: -25px;
}

.eh-apps-orbit span:nth-child(4) {
    left: -25px;
}

.eh-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 32px;
    color: #c9d6e3;
    font-size: .9rem;
}

.eh-breadcrumb a {
    color: white;
    text-decoration: none;
}

.eh-breadcrumb a:hover {
    color: var(--eh-teal-light);
}

.eh-app-detail-intro {
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: center;
    gap: 70px;
}

.eh-app-detail-intro h1 {
    max-width: 850px;
}

.eh-app-detail-mark {
    display: grid;
    place-items: center;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(50, 184, 168, .24), rgba(255, 255, 255, .05));
    box-shadow: 0 25px 60px rgba(0, 0, 0, .22);
    color: var(--eh-teal-light);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: .04em;
    transform: rotate(4deg);
}

.eh-content-narrow {
    max-width: 850px;
}

.eh-content-narrow h2 {
    text-align: left;
}

.eh-detail-copy {
    color: var(--eh-muted);
    font-size: 1.08rem;
}

.eh-external-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
}

.eh-external-product h2 {
    margin-bottom: 6px;
}

.eh-editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 64px;
}

.eh-info-panel {
    padding: 32px;
    border: 1px solid rgba(13, 143, 130, .2);
    border-radius: 18px;
    background: white;
    box-shadow: var(--eh-shadow);
}

.eh-info-panel h3 {
    margin: 0 0 16px;
    color: var(--eh-navy);
    font-size: 1.3rem;
}

.eh-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-check-list li {
    position: relative;
    padding: 10px 0 10px 29px;
    color: var(--eh-muted);
    border-bottom: 1px solid #edf1f5;
}

.eh-check-list li:last-child {
    border-bottom: 0;
}

.eh-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--eh-teal);
    font-weight: 900;
}

.eh-faq-list {
    max-width: 900px;
    margin-inline: auto;
}

.eh-faq-list details {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--eh-border);
    border-radius: 11px;
    background: white;
}

.eh-faq-list summary {
    position: relative;
    padding: 18px 52px 18px 20px;
    color: var(--eh-navy);
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.eh-faq-list summary::-webkit-details-marker {
    display: none;
}

.eh-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 13px;
    color: var(--eh-teal);
    font-size: 1.45rem;
}

.eh-faq-list details[open] summary::after {
    content: "−";
}

.eh-faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--eh-muted);
}

.eh-use-card {
    display: flex;
    min-height: 275px;
    flex-direction: column;
}

.eh-use-card .eh-text-link {
    margin-top: auto;
}

.eh-note {
    padding: 16px 18px;
    border-left: 4px solid var(--eh-teal);
    background: #edf8f7;
    color: #294b48;
}

.eh-steps {
    counter-reset: steps;
}

.eh-step {
    position: relative;
    padding-left: 62px;
}

.eh-step::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--eh-teal);
    color: white;
    font-weight: 850;
}

.eh-page-hero {
    padding: 64px 0;
    color: white;
    background: linear-gradient(135deg, var(--eh-navy), var(--eh-blue));
}

.eh-page-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.eh-cta {
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(125deg, var(--eh-blue), var(--eh-teal));
}

.eh-cta h2 {
    color: white;
    margin: 0 0 7px;
}

.eh-footer {
    padding-top: 58px;
    background: var(--eh-navy);
    color: #c8d5e1;
}

.eh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 36px;
}

.eh-footer h2 {
    color: white;
    font-size: 1rem;
}

.eh-footer a {
    color: #c8d5e1;
    text-decoration: none;
}

.eh-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-footer li {
    margin: 9px 0;
}

.eh-footer-bottom {
    margin-top: 42px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
}

.eh-footer-bottom .eh-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

:focus-visible {
    outline: 3px solid var(--eh-teal-light);
    outline-offset: 3px;
}

@media (max-width: 960px) {
    .eh-toggle {
        display: block;
    }

    .eh-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        padding: 18px 16px 24px;
        flex-direction: column;
        align-items: stretch;
        background: var(--eh-navy);
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .eh-menu.is-open {
        display: flex;
    }

    .eh-actions {
        flex-direction: column;
    }

    .eh-hero-grid {
        grid-template-columns: 1fr;
    }

    .eh-server-visual {
        display: none;
    }

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

    .eh-grid-apps {
        grid-template-columns: 1fr;
    }

    .eh-app-detail-intro {
        grid-template-columns: 1fr;
    }

    .eh-editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .eh-app-detail-mark {
        display: none;
    }

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

@media (max-width: 680px) {
    .eh-hero {
        padding: 65px 0 62px;
    }

    .eh-section {
        padding: 56px 0;
    }

    .eh-grid-3, .eh-grid-4 {
        grid-template-columns: 1fr;
    }

    .eh-apps-visual {
        display: none;
    }

    .eh-external-product {
        align-items: flex-start;
        flex-direction: column;
    }

    .eh-domain-box {
        grid-template-columns: 1fr;
    }

    .eh-footer-grid {
        grid-template-columns: 1fr;
    }

    .eh-footer-bottom .eh-container, .eh-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .eh-hero-actions .eh-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        transition: none !important;
    }
}

/* ---------- Documentation ---------- */
.eh-section-head-left {
    max-width: none;
    margin: 0 0 28px;
    text-align: left;
}

.eh-search-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    max-width: 640px;
    margin-top: 28px;
}

.eh-search-box input {
    flex: 1 1 260px;
    padding-left: 44px;
}

.eh-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eh-muted);
    pointer-events: none;
}

.eh-doc-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 18px;
    color: #c9d6e3;
    font-size: .9rem;
}

.eh-doc-meta-row span::before {
    content: "•";
    margin-right: 8px;
    color: var(--eh-teal-light);
}

.eh-doc-meta-row span:first-child::before {
    content: none;
    margin-right: 0;
}

.eh-doc-cat-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.eh-doc-cat-count {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 11px;
    border-radius: 20px;
    background: #e8f7f5;
    color: var(--eh-teal);
    font-size: .78rem;
    font-weight: 750;
    align-self: flex-start;
}

.eh-doc-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.eh-doc-card-cat {
    color: var(--eh-teal);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.eh-doc-card h3 {
    margin-top: 10px;
}

.eh-doc-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 10px 0 14px;
    color: var(--eh-muted);
    font-size: .85rem;
}

.eh-doc-card .eh-text-link {
    margin-top: auto;
}

.eh-doc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: start;
    gap: 48px;
    padding: 56px 0 80px;
}

.eh-doc-nav-toggle {
    display: none;
}

.eh-doc-sidebar {
    position: sticky;
    top: 96px;
}

.eh-doc-sidebar-home {
    display: block;
    margin-bottom: 14px;
    color: var(--eh-navy);
    font-weight: 850;
    font-size: 1.05rem;
    text-decoration: none;
}

.eh-doc-sidebar nav>ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eh-doc-sidebar a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--eh-text);
    font-weight: 650;
    font-size: .94rem;
    text-decoration: none;
}

.eh-doc-sidebar a:hover, .eh-doc-sidebar a:focus-visible {
    background: var(--eh-bg);
}

.eh-doc-sidebar li.is-current>a {
    background: #e8f7f5;
    color: var(--eh-teal);
}

.eh-doc-sidebar-articles {
    margin: 4px 0 8px;
    padding-left: 14px;
    list-style: none;
    border-left: 2px solid var(--eh-border);
}

.eh-doc-sidebar-articles a {
    padding: 7px 12px;
    font-weight: 550;
    font-size: .88rem;
}

.eh-doc-sidebar-articles a[aria-current="page"] {
    color: var(--eh-teal);
    font-weight: 750;
}

.eh-doc-toc {
    margin: 28px 0 36px;
    padding: 20px 22px;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    background: var(--eh-bg);
}

.eh-doc-toc-title {
    margin: 0 0 10px;
    color: var(--eh-navy);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.eh-doc-toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 24px;
}

.eh-doc-toc li {
    margin: 6px 0;
    break-inside: avoid;
}

.eh-doc-toc a {
    color: var(--eh-blue);
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
}

.eh-doc-toc a:hover, .eh-doc-toc a:focus-visible {
    text-decoration: underline;
}

.eh-doc-intro>p:first-child {
    font-size: 1.08rem;
}

.eh-doc-callout h3 {
    margin-top: 0;
    color: var(--eh-navy);
}

.eh-doc-content h2 {
    margin: 44px 0 16px;
    color: var(--eh-navy);
    font-size: 1.55rem;
    letter-spacing: -.015em;
    scroll-margin-top: 100px;
}

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

.eh-doc-content h3 {
    margin: 28px 0 12px;
    color: var(--eh-navy);
    font-size: 1.18rem;
    scroll-margin-top: 100px;
}

.eh-doc-content ul, .eh-doc-content ol {
    margin: 14px 0;
    padding-left: 24px;
    color: var(--eh-muted);
}

.eh-doc-content li {
    margin: 6px 0;
}

.eh-doc-steps {
    counter-reset: doc-steps;
    list-style: none;
    padding-left: 0;
}

.eh-doc-steps li {
    position: relative;
    padding-left: 40px;
    margin: 10px 0;
    color: var(--eh-text);
}

.eh-doc-steps li::before {
    counter-increment: doc-steps;
    content: counter(doc-steps);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--eh-teal);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}

.eh-table-scroll {
    margin: 18px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.eh-doc-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    font-size: .95rem;
}

.eh-doc-table th, .eh-doc-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--eh-border);
    text-align: left;
}

.eh-doc-table th {
    background: var(--eh-bg);
    color: var(--eh-navy);
    font-weight: 800;
}

.eh-doc-table td {
    color: var(--eh-text);
}

.eh-doc-table tr:last-child td {
    border-bottom: 0;
}

.eh-doc-table .eh-text-right {
    text-align: right;
}

.eh-doc-table-ports th, .eh-doc-table-ports td {
    font-size: 1rem;
}

.eh-doc-example {
    margin: 16px 0;
    padding: 16px 18px;
    border: 1px solid var(--eh-border);
    border-radius: 11px;
    background: var(--eh-bg);
}

.eh-doc-example-label {
    margin: 0 0 8px;
    color: var(--eh-teal);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.eh-doc-example pre {
    margin: 0;
    overflow-x: auto;
    color: var(--eh-text);
    font: .92rem/1.6 ui-monospace, SFMono-Regular, Consolas, monospace;
    white-space: pre-wrap;
    word-break: break-word;
}

.eh-doc-figure {
    margin: 22px 0;
}

.eh-doc-figure-trigger {
    display: block;
    max-width: 520px;
    padding: 0;
    border: 1px solid var(--eh-border);
    border-radius: 12px;
    background: none;
    line-height: 0;
    overflow: hidden;
    cursor: zoom-in;
}

.eh-doc-figure-trigger img {
    display: block;
    width: 100%;
    height: auto;
}

.eh-doc-figure figcaption {
    margin-top: 10px;
    color: var(--eh-muted);
    font-size: .9rem;
}

.eh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 32px;
    background: rgba(8, 27, 51, .85);
}

.eh-lightbox[hidden] {
    display: none;
}

.eh-lightbox img {
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.eh-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.eh-faq-list details>ul {
    margin: 0 0 20px;
    padding: 0 20px 0 44px;
    color: var(--eh-muted);
}

.eh-faq-list details>p+ul {
    margin-top: -12px;
}

.eh-doc-feedback {
    margin: 44px 0;
    padding: 24px;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    background: var(--eh-bg);
    text-align: center;
}

.eh-doc-feedback p {
    margin: 0 0 14px;
    color: var(--eh-navy);
    font-weight: 750;
}

.eh-doc-feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.eh-doc-feedback-buttons .eh-btn[disabled] {
    opacity: .5;
    cursor: default;
}

.eh-doc-feedback-thanks {
    margin: 14px 0 0 !important;
    color: var(--eh-teal);
}

.eh-doc-feedback-error {
    margin: 14px 0 0 !important;
    color: #b3261e;
}

.eh-doc-feedback-buttons .eh-btn.is-loading {
    opacity: .7;
    cursor: progress;
}

.eh-doc-related {
    margin: 52px 0;
}

.eh-doc-related h2 {
    margin: 0 0 20px;
    color: var(--eh-navy);
    font-size: 1.5rem;
    text-align: left;
}

.eh-doc-cta {
    margin-top: 52px;
}

@media (max-width: 960px) {
    .eh-doc-layout {
        grid-template-columns: 1fr;
    }

    .eh-doc-nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 24px 0 0;
        padding: 10px 16px;
        border: 1px solid var(--eh-border);
        border-radius: 9px;
        background: #fff;
        color: var(--eh-navy);
        font-weight: 750;
    }

    .eh-doc-sidebar {
        position: static;
        display: none;
        margin-top: 16px;
        padding: 16px;
        border: 1px solid var(--eh-border);
        border-radius: var(--eh-radius);
        background: #fff;
    }

    .eh-doc-sidebar.is-open {
        display: block;
    }

    .eh-doc-toc ol {
        columns: 1;
    }
}

@media (max-width: 680px) {
    .eh-doc-layout {
        gap: 28px;
        padding: 36px 0 56px;
    }

    .eh-search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .eh-search-box .eh-btn {
        width: 100%;
    }

    .eh-doc-feedback-buttons {
        flex-direction: column;
    }

    .eh-doc-figure-trigger {
        max-width: 100%;
    }
}

/* ---------- Formulaire de contact public (Phase 5) ---------- */
.eh-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.eh-form-field label {
    color: var(--eh-navy);
    font-weight: 650;
    font-size: .92rem;
}

.eh-form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.eh-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Panier de domaines invité (Phase 18) ---------- */
.eh-btn-outline-dark {
    background: transparent;
    border-color: var(--eh-border);
    color: var(--eh-navy) !important;
}

.eh-btn-outline-dark:hover {
    background: var(--eh-bg);
}

.eh-cart-link {
    position: relative;
    gap: 6px;
}

.eh-cart-count {
    display: inline-grid;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    place-items: center;
    border-radius: 999px;
    background: var(--eh-teal-light);
    color: var(--eh-navy);
    font-size: .74rem;
    font-weight: 850;
}

.eh-domain-result-action {
    margin: 14px 0 0;
}

.eh-domain-alternatives {
    margin-top: 28px;
}

.eh-domain-alt-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.eh-domain-alt-card h3 {
    margin: 0;
    font-size: 1.05rem;
    word-break: break-word;
}

.eh-domain-alt-card .eh-price {
    margin: 0;
    color: var(--eh-navy);
    font-size: 1.35rem;
    font-weight: 850;
}

.eh-domain-alt-card .eh-price span {
    margin-left: 4px;
    color: var(--eh-muted);
    font-size: .8rem;
    font-weight: 650;
}

.eh-cart-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.eh-cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--eh-border);
    border-radius: var(--eh-radius);
    background: white;
}

.eh-cart-item h3 {
    margin: 0 0 4px;
    color: var(--eh-navy);
    font-size: 1.05rem;
    word-break: break-word;
}

.eh-cart-item p {
    margin: 0;
}

.eh-cart-item-price {
    color: var(--eh-navy);
    font-size: 1.15rem;
    font-weight: 850;
}

.eh-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding: 18px 22px;
    border-radius: var(--eh-radius);
    background: var(--eh-bg);
}

.eh-cart-total strong {
    color: var(--eh-navy);
    font-size: 1.35rem;
}

@media (max-width: 680px) {
    .eh-cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .eh-cart-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}