/* ============================================================
   Hospitalick v2 design system (from BiSkilled v2) — "Precision Engineering"
   US10033 redesign. Engineering-forward: blueprint grids, mono
   labels, hairline rules, numbered sections. Brand red kept.
   Pages on the old look keep css/style.css; redesigned pages
   load this file only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    --ink: #0e1116;
    --ink-2: #1a1f27;
    --paper: #f7f6f2;
    --panel: #ffffff;
    --red: #0e8a7d;   /* Hospitalick teal (name kept for v2 parity) */
    --red-dark: #0a6ca8;  /* brand blue for hover states */
    --line: #e3e1d9;
    --line-dark: rgba(255, 255, 255, 0.14);
    --text: #22262e;
    --muted: #5c626e;
    --muted-dark: rgba(255, 255, 255, 0.66);
    --font-display: 'Archivo', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --radius: 3px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    /* legacy variable names used by js/main.js inline styles */
    --primary: #e8304f;
    --accent: #e8304f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
    font-family: var(--font-display);
    background: var(--paper);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { color: var(--muted); }
a { color: inherit; }
img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }

/* ── Mono labels / eyebrows ─────────────────────────────── */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--red); }
.mono { font-family: var(--font-mono); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.7rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: rgba(14, 17, 22, 0.35); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: var(--line-dark); }
.btn-ghost-dark:hover { border-color: #fff; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.74rem; }

.text-primary { color: var(--red); }

/* ── Header / nav ───────────────────────────────────────── */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 200;
    background: rgba(14, 17, 22, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark);
}
header .container {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
/* header logo must be the transparent dark-bg variant (biskilled_logo_footer.png) */
.logo-img { height: 46px; width: auto; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    list-style: none;
}
.nav-links > li > a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.15s ease;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links .caret { font-size: 0.6rem; opacity: 0.6; }
.nav-links > li > a.btn-primary { color: #fff; padding: 0.55rem 1.1rem; }
.nav-links > li > a.btn-primary:hover { color: #fff; background: var(--red-dark); }

/* mega dropdown (selectors wired by js/main.js) */
.has-mega { position: relative; }
.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 300px;
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.16s ease, transform 0.16s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.mega::before { /* hover bridge */
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}
/* 969px matches js/main.js isMobile() — keep them in sync */
@media (min-width: 969px) {
    .has-mega:hover .mega, .has-mega:focus-within .mega {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}
.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.14s ease;
}
.mega-item:hover { background: rgba(255, 255, 255, 0.06); }
.mega-ic {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    border: 1px solid var(--line-dark);
    border-radius: 2px;
}
.mega-ic svg { width: 16px; height: 16px; }
.mega-tx { display: flex; flex-direction: column; gap: 0.1rem; }
.mega-tx strong { color: #fff; font-size: 0.88rem; font-weight: 600; letter-spacing: -0.01em; }
.mega-tx small { color: rgba(255, 255, 255, 0.55); font-size: 0.76rem; }
.mega-all {
    border-top: 1px solid var(--line-dark);
    margin-top: 2px;
    padding: 0.65rem 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 0.4rem;
}
.mobile-menu-btn .ic-close { display: none; }
.mobile-menu-btn.open .ic-menu { display: none; }
.mobile-menu-btn.open .ic-close { display: block; }

/* ── Section scaffolding ────────────────────────────────── */
section { padding: clamp(4rem, 9vw, 6.5rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head p { font-size: 1.02rem; margin-top: 0.9rem; }
.rule { border: 0; border-top: 1px solid var(--line); }

/* corner crosshair marker */
.crosshair { position: relative; }
.crosshair::after {
    content: "+";
    position: absolute;
    top: 1.4rem;
    right: var(--gutter);
    font-family: var(--font-mono);
    color: var(--red);
    opacity: 0.55;
    font-size: 1rem;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    /* blueprint grid over the brand hero photo (glowing red disc, right side);
       dark gradient keeps the left-aligned copy readable */
    background:
        repeating-linear-gradient(0deg, transparent 0 79px, rgba(255, 255, 255, 0.045) 79px 80px),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.045) 79px 80px),
        linear-gradient(115deg, rgba(4, 32, 52, 0.94) 0%, rgba(6, 52, 82, 0.78) 46%, rgba(10, 79, 118, 0.55) 100%),
        url('../images/hero/ai-brain.jpg') center/cover no-repeat,
        var(--ink);
    color: #fff;
    padding: 172px 0 108px;
}
.hero h1 { color: #fff; max-width: 780px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--muted-dark);
    max-width: 640px;
    margin: 1.4rem 0 2.3rem;
    line-height: 1.75;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
    margin-top: 3.2rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line-dark);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.hero-meta span::before { content: "// "; color: var(--red); }

/* staggered hero reveal */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero .eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero-meta {
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1 { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.16s; }
.hero-ctas { animation-delay: 0.24s; }
.hero-meta { animation-delay: 0.36s; }

/* ── Cards / grids ──────────────────────────────────────── */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.cell {
    background: var(--panel);
    padding: 2rem 1.8rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    position: relative;
    transition: background 0.16s ease;
}
a.cell:hover { background: #fffdfa; }
a.cell:hover .cell-go { color: var(--red); transform: translateX(3px); }
.cell-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--red);
    letter-spacing: 0.1em;
}
.cell p { font-size: 0.93rem; line-height: 1.7; }
.cell-go {
    margin-top: auto;
    padding-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.15s ease, transform 0.15s ease;
}

/* ── Method strip (How we work) ─────────────────────────── */
.dark-band { background: var(--ink); color: #fff; }
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band p { color: var(--muted-dark); }
.dark-band .grid { background: var(--line-dark); border-color: var(--line-dark); }
.dark-band .cell { background: var(--ink); }
.dark-band a.cell:hover { background: var(--ink-2); }
.dark-band .cell-go { color: rgba(255, 255, 255, 0.8); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.method-note {
    margin-top: 2.2rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--line-dark);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    font-size: 0.98rem;
    color: var(--muted-dark);
    max-width: 860px;
}
.method-note strong { color: #fff; }

/* ── Proof points ───────────────────────────────────────── */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.proof-item { border-top: 2px solid var(--ink); padding-top: 1.2rem; }
.proof-item .big {
    font-family: var(--font-mono);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--red);
    display: block;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}
.proof-item p { font-size: 0.93rem; }

/* ── Proof strip (compact case-study rows) ──────────────── */
.proof-strip { list-style: none; border-top: 1px solid var(--line); }
.proof-strip a {
    display: flex;
    align-items: baseline;
    gap: 1.4rem;
    padding: 1.05rem 0.25rem;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    font-weight: 600;
    color: var(--ink);
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    transition: background 0.14s ease;
}
.proof-strip a:hover { background: #fffdfa; }
.proof-strip a:hover .cell-go { color: var(--red); transform: translateX(3px); }
.proof-strip .cell-num { flex: 0 0 130px; }
.proof-strip .cell-go { margin-left: auto; padding-top: 0; }
@media (max-width: 768px) {
    .proof-strip a { flex-wrap: wrap; gap: 0.3rem 1rem; }
    .proof-strip .cell-num { flex-basis: 100%; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-grid { max-width: 820px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    padding: 1.25rem 0.25rem;
    cursor: pointer;
}
.faq-icon {
    font-family: var(--font-mono);
    color: var(--red);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 0.25rem 1.4rem; font-size: 0.95rem; max-width: 720px; }
.faq-a a { color: var(--red); font-weight: 600; text-decoration: none; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.contact-side {
    background: var(--ink);
    color: #fff;
    padding: 2.6rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-side h3 { color: #fff; font-size: 1.5rem; letter-spacing: -0.02em; }
.contact-side p { color: var(--muted-dark); font-size: 0.95rem; }
.contact-side .btn { align-self: flex-start; }
.contact-info {
    margin-top: auto;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}
.contact-info a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.contact-info a:hover { color: #fff; }
.contact-info span { color: rgba(255, 255, 255, 0.55); }

.contact-form { background: var(--panel); padding: 2.6rem 2.2rem; }
.contact-form h3 { margin-bottom: 1.4rem; }
.form-group { margin-bottom: 1.05rem; }
.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.7rem 0.85rem;
    transition: border-color 0.15s ease;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 0 2rem;
    border-top: 3px solid var(--red);
}
.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-section h4 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}
.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.22rem 0;
    transition: color 0.15s ease;
}
.footer-section a:hover { color: #fff; }
.footer-section p { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; line-height: 1.7; }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.social-link:hover { color: #fff; border-color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding-top: 1.4rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.4); }

/* ── WhatsApp float ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 150;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── Scroll reveal (wired by js/main.js) ────────────────── */
.scroll-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.scroll-reveal.active { opacity: 1; transform: none; }

/* ── Service page building blocks ───────────────────────── */
.page-hero { background: var(--ink); color: #fff; padding: 150px 0 70px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 760px; }
.page-hero .hero-sub { margin-bottom: 0; }
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.6rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--red); margin: 0 0.45rem; }

.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split h2 { position: sticky; top: 96px; }
.body-copy p { margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.8; }
.body-copy strong { color: var(--ink); }

.check-list { list-style: none; display: flex; flex-direction: column; }
.check-list li {
    display: flex;
    gap: 0.8rem;
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.97rem;
    color: var(--text);
}
.check-list li::before {
    content: "▪";
    color: var(--red);
    flex-shrink: 0;
    line-height: 1.6;
}

/* ── Case studies ───────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.2rem; }
.tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 0.25rem 0.6rem;
    background: var(--panel);
}
.cs-block { border-top: 1px solid var(--line); padding: clamp(2.5rem, 6vw, 4rem) 0; scroll-margin-top: 80px; }
.cs-block:first-of-type { border-top: 0; }
.cs-outcome {
    margin-top: 1.4rem;
    padding: 1.1rem 1.3rem;
    border-left: 3px solid var(--red);
    background: var(--panel);
    border-radius: var(--radius);
    font-size: 0.97rem;
    color: var(--text);
}
.cs-outcome strong { color: var(--ink); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .proof { grid-template-columns: 1fr; gap: 1.6rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; }
    .split h2 { position: static; }
}

/* Mobile nav accordion — 968px matches js/main.js isMobile(); keep in sync */
@media (max-width: 968px) {
    /* backdrop-filter would make header the containing block for the fixed
       nav panel (collapsing it to the 72px bar) — solid background instead */
    header { backdrop-filter: none; background: rgba(14, 17, 22, 0.98); }
    /* empty <nav> wrapper still takes the middle space-between slot;
       push the hamburger to the right edge */
    .mobile-menu-btn { display: block; order: 3; }
    .logo-img { height: 40px; }
    .nav-links {
        position: fixed;
        z-index: 300;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem var(--gutter) 2.5rem;
        overflow-y: auto;
        display: none;
        border-top: 1px solid var(--line-dark);
    }
    .nav-links.active { display: flex; }
    .nav-links > li { border-bottom: 1px solid var(--line-dark); }
    .nav-links > li > a { display: flex; justify-content: space-between; padding: 1rem 0.2rem; font-size: 0.86rem; }
    .mega {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        display: none;
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--red);
        border-radius: 0;
        margin: 0 0 1rem 0.4rem;
        min-width: 0;
        background: transparent;
    }
    .has-mega.open .mega { display: grid; visibility: visible; }
    .nav-cta { margin-top: 1.2rem; border-bottom: 0 !important; }
    .nav-cta .btn { width: 100%; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .contact-grid { grid-template-columns: 1fr; }
    .hero { padding: 130px 0 70px; }
    .hero-meta { gap: 0.5rem 1.2rem; }
    .crosshair::after { display: none; }
}

/* ── Hospitalick wordmark (no transparent logo asset) ───── */
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.03em; color: #fff; text-decoration: none; }
.wordmark em { font-style: normal; color: #16b8a6; }
.wordmark small { display: block; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 1px; }
