﻿/* ============================================================
   Legion Health — legion.css
   Namespace: lgh | Brand: telehealth_psychiatry | Violet + Emerald
   ============================================================ */

/* === CSS VARIABLES === */
:root {
    --lgh-primary: #7c3aed;
    --lgh-primary-dark: #6d28d9;
    --lgh-primary-light: #ede9fe;
    --lgh-secondary: #10b981;
    --lgh-secondary-dark: #059669;
    --lgh-secondary-light: #d1fae5;
    --lgh-bg: #ffffff;
    --lgh-bg-alt: #f9fafb;
    --lgh-bg-subtle: #f3f4f6;
    --lgh-bg-dark: #111827;
    --lgh-bg-dark-card: #1f2937;
    --lgh-text-primary: #111827;
    --lgh-text-secondary: #374151;
    --lgh-text-muted: #4b5563;
    --lgh-text-inverse: #f9fafb;
    --lgh-border: #e5e7eb;
    --lgh-border-violet: #ddd6fe;
    --lgh-accent: #7c3aed;
    --lgh-accent-on-dark: #c4b5fd;
    --lgh-accent-green: #10b981;
    --lgh-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --lgh-shadow-md: 0 4px 18px rgba(0,0,0,0.10);
    --lgh-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --lgh-shadow-card-hover: 0 8px 30px rgba(124,58,237,0.15);
    --lgh-radius-sm: 4px;
    --lgh-radius-md: 8px;
    --lgh-radius-lg: 14px;
    --lgh-radius-xl: 20px;
    --lgh-radius-pill: 999px;
    --lgh-transition: all 0.20s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--lgh-text-primary);
    background-color: var(--lgh-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lgh-text-primary);
    line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 600; line-height: 1.25; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; }
p { color: var(--lgh-text-secondary); line-height: 1.7; }

/* === LAYOUT === */
.lgh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BUTTONS === */
.lgh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--lgh-radius-md);
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--lgh-transition);
    padding: 13px 28px;
    border: none;
}
.lgh-btn--primary {
    background: var(--lgh-primary);
    color: #ffffff;
}
.lgh-btn--primary:hover {
    background: var(--lgh-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.30);
}
.lgh-btn--secondary {
    background: transparent;
    color: var(--lgh-primary);
    border: 2px solid var(--lgh-primary);
    padding: 11px 26px;
}
.lgh-btn--secondary:hover {
    background: var(--lgh-primary);
    color: #ffffff;
}
.lgh-btn--ghost {
    background: transparent;
    color: var(--lgh-primary);
    text-decoration: underline;
}
.lgh-btn--ghost:hover { color: var(--lgh-primary-dark); }
.lgh-btn--outline {
    background: #ffffff;
    color: #1e293b;
    border: 1.5px solid rgba(15,23,42,0.25);
    padding: 11px 26px;
}
.lgh-btn--outline:hover {
    background: var(--lgh-primary);
    color: #ffffff;
    border-color: var(--lgh-primary);
}
.lgh-btn--green {
    background: var(--lgh-secondary);
    color: #ffffff;
}
.lgh-btn--green:hover {
    background: var(--lgh-secondary-dark);
}

/* === SECTION UTILITIES === */
.lgh-section-eyebrow {
    display: inline-block;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lgh-primary);
    margin-bottom: 12px;
}
.lgh-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}
.lgh-section-lede {
    font-size: 1.125rem;
    color: var(--lgh-text-muted);
    max-width: 640px;
    line-height: 1.75;
}
.lgh-section-header {
    margin-bottom: 56px;
}
.lgh-section-header--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lgh-badge--category {
    display: inline-block;
    background: var(--lgh-primary-light);
    color: var(--lgh-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--lgh-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lgh-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(124,58,237,0.08);
    color: var(--lgh-primary);
    font-size: 22px;
    flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.lgh-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--lgh-border);
    box-shadow: var(--lgh-shadow-sm);
}
.lgh-nav__secondary-bar {
    background: var(--lgh-bg-dark);
    padding: 6px 0;
    font-size: 0.8125rem;
}
.lgh-nav__secondary-bar .lgh-container {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}
.lgh-nav__portal-link {
    color: rgba(249,250,251,0.75);
    transition: var(--lgh-transition);
}
.lgh-nav__portal-link:hover { color: #ffffff; }
.lgh-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}
.lgh-nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.lgh-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
    list-style: none;
}
.lgh-nav__item {}
.lgh-nav__link {
    display: block;
    padding: 6px 14px;
    border-radius: var(--lgh-radius-sm);
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lgh-text-secondary);
    transition: var(--lgh-transition);
    text-decoration: none;
}
.lgh-nav__link:hover,
.lgh-nav__link.active {
    color: var(--lgh-primary);
    background: var(--lgh-primary-light);
}
.lgh-nav__cta {
    white-space: nowrap;
    flex-shrink: 0;
}
.lgh-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--lgh-text-primary);
    font-size: 1.25rem;
    margin-left: auto;
}

/* ============================================================
   HERO — C-split
   ============================================================ */
.lgh-hero {
    background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 50%, #f0fdf4 100%);
    padding: 80px 0 64px;
    overflow: hidden;
}
.lgh-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lgh-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,58,237,0.08);
    border: 1px solid var(--lgh-border-violet);
    border-radius: var(--lgh-radius-pill);
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lgh-primary);
    margin-bottom: 20px;
}
.lgh-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--lgh-text-primary);
    margin-bottom: 20px;
}
.lgh-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--lgh-text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}
.lgh-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lgh-hero__media {
    position: relative;
}
.lgh-hero__media img {
    border-radius: var(--lgh-radius-xl);
    box-shadow: var(--lgh-shadow-lg);
    width: 100%;
}

/* ============================================================
   STATS — A-bar
   ============================================================ */
.lgh-stats {
    background: var(--lgh-bg-dark);
    padding: 40px 0;
}
.lgh-stats__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.lgh-stats__card {}
.lgh-stats__value {
    font-family: 'Sora', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--lgh-accent-on-dark);
    margin-bottom: 4px;
}
.lgh-stats__label {
    font-size: 0.875rem;
    color: rgba(249,250,251,0.7);
}

/* ============================================================
   CONDITIONS / TRUST STRIP
   ============================================================ */
.lgh-conditions {
    padding: 88px 0;
    background: var(--lgh-bg-alt);
}
.lgh-conditions__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.lgh-conditions__card {
    background: #ffffff;
    border-radius: var(--lgh-radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--lgh-border);
    transition: var(--lgh-transition);
}
.lgh-conditions__card:hover {
    border-color: var(--lgh-border-violet);
    box-shadow: var(--lgh-shadow-card-hover);
    transform: translateY(-2px);
}
.lgh-conditions__icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(124,58,237,0.08);
    color: var(--lgh-primary);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.lgh-conditions__name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--lgh-text-primary);
    margin-bottom: 8px;
}
.lgh-conditions__desc {
    font-size: 0.875rem;
    color: var(--lgh-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.lgh-conditions__link {
    font-size: 0.875rem;
    color: var(--lgh-primary);
    font-weight: 600;
    text-decoration: none;
}
.lgh-conditions__link:hover { text-decoration: underline; }

/* ============================================================
   PROCESS — A-numbered
   ============================================================ */
.lgh-process {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.lgh-process__step {
    text-align: center;
    padding: 32px 24px;
}
.lgh-process__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lgh-primary);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.lgh-process__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 10px;
}
.lgh-process__body {
    font-size: 1rem;
    color: var(--lgh-text-muted);
    line-height: 1.7;
}

/* ============================================================
   FEATURES — C-alternating
   ============================================================ */
.lgh-features {
    padding: 88px 0;
    background: var(--lgh-bg-alt);
}
.lgh-features__row {
    max-width: 1200px;
    margin: 0 auto 64px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lgh-features__row:last-child { margin-bottom: 0; }
.lgh-features__row--alt {
    direction: rtl;
}
.lgh-features__row--alt > * {
    direction: ltr;
}
.lgh-features__media img {
    border-radius: var(--lgh-radius-lg);
    box-shadow: var(--lgh-shadow-md);
    width: 100%;
}
.lgh-features__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lgh-primary);
    margin-bottom: 12px;
}
.lgh-features__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(124,58,237,0.10);
    color: var(--lgh-primary);
    font-size: 18px;
    margin-right: 4px;
}
.lgh-features__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 14px;
    line-height: 1.25;
}
.lgh-features__body {
    padding-right: 8px;
}
.lgh-features__body p {
    font-size: 1rem;
    color: var(--lgh-text-muted);
    line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS — A-quotes
   ============================================================ */
.lgh-testimonials {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lgh-testimonials__card {
    background: var(--lgh-bg-alt);
    border-radius: var(--lgh-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--lgh-border);
    position: relative;
}
.lgh-testimonials__quote {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--lgh-text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}
.lgh-testimonials__author {
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lgh-text-primary);
}
.lgh-testimonials__role {
    font-size: 0.8125rem;
    color: var(--lgh-text-muted);
    margin-top: 2px;
}

/* ============================================================
   CTA BANNER — A-banner
   ============================================================ */
.lgh-cta {
    padding: 88px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    text-align: center;
}
.lgh-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}
.lgh-cta__headline {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.lgh-cta__body {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.75;
}
.lgh-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lgh-cta .lgh-btn--secondary,
.lgh-section--dark .lgh-btn--secondary {
    color: var(--lgh-accent-on-dark);
    border-color: rgba(196,181,253,0.5);
}
.lgh-cta .lgh-btn--secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--lgh-accent-on-dark);
}

/* ============================================================
   BLOG SECTION — A-cards (homepage preview)
   ============================================================ */
.lgh-blog {
    padding: 88px 0;
    background: var(--lgh-bg-alt);
}
.lgh-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lgh-blog__card {
    background: #ffffff;
    border-radius: var(--lgh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lgh-border);
    transition: var(--lgh-transition);
    display: flex;
    flex-direction: column;
}
.lgh-blog__card:hover {
    box-shadow: var(--lgh-shadow-card-hover);
    transform: translateY(-2px);
}
.lgh-blog__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--lgh-bg-muted, #f1f5f9);
}
.lgh-blog__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lgh-blog__card-body {
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lgh-blog__category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lgh-primary);
    margin-bottom: 8px;
    background: var(--lgh-primary-light);
    padding: 2px 8px;
    border-radius: var(--lgh-radius-pill);
    display: inline-block;
}
.lgh-blog__date {
    font-size: 0.8125rem;
    color: var(--lgh-text-muted);
    margin-bottom: 8px;
}
.lgh-blog__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 10px;
    line-height: 1.35;
}
.lgh-blog__excerpt {
    font-size: 0.9375rem;
    color: var(--lgh-text-muted);
    line-height: 1.65;
    flex: 1;
}
.lgh-blog__read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lgh-primary);
}
.lgh-blog__read-more:hover { text-decoration: underline; }

/* ============================================================
   FOOTER — A-4col
   ============================================================ */
.lgh-footer {
    background: var(--lgh-bg-dark);
    padding: 64px 0 0;
}
.lgh-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.lgh-footer__brand {}
.lgh-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.lgh-footer__tagline {
    font-size: 0.9375rem;
    color: rgba(249,250,251,0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}
.lgh-footer__social {
    display: flex;
    gap: 12px;
}
.lgh-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--lgh-transition);
    text-decoration: none;
}
.lgh-footer__social a:hover {
    background: var(--lgh-primary);
    color: #ffffff;
}
.lgh-footer__links h4 {
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.lgh-footer__links ul { list-style: none; }
.lgh-footer__links li { margin-bottom: 10px; }
.lgh-footer__links a {
    font-size: 0.9375rem;
    color: rgba(249,250,251,0.65);
    text-decoration: none;
    transition: var(--lgh-transition);
}
.lgh-footer__links a:hover { color: #ffffff; }
.lgh-footer__newsletter h4 {
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.lgh-footer__newsletter p {
    font-size: 0.9rem;
    color: rgba(249,250,251,0.65);
    margin-bottom: 14px;
}
.lgh-footer__newsletter-form {
    display: flex;
    gap: 8px;
}
.lgh-footer__newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--lgh-radius-md);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    font-size: 0.875rem;
}
.lgh-footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.lgh-footer__newsletter-form button {
    padding: 10px 18px;
    border-radius: var(--lgh-radius-md);
    background: var(--lgh-primary);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}
.lgh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.lgh-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lgh-footer__copyright {
    font-size: 0.875rem;
    color: rgba(249,250,251,0.5);
}
.lgh-footer__legal {
    display: flex;
    gap: 20px;
}
.lgh-footer__legal a {
    font-size: 0.875rem;
    color: rgba(249,250,251,0.5);
    text-decoration: none;
    transition: var(--lgh-transition);
}
.lgh-footer__legal a:hover { color: #ffffff; }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.lgh-page-hero {
    background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
    padding: 64px 0 56px;
    text-align: center;
}
.lgh-page-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}
.lgh-page-hero__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lgh-primary);
    margin-bottom: 12px;
}
.lgh-page-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lgh-page-hero__lede {
    font-size: 1.125rem;
    color: var(--lgh-text-muted);
    line-height: 1.75;
}

/* ============================================================
   TEAM — A-grid
   ============================================================ */
.lgh-team {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.lgh-team__card {
    text-align: center;
}
.lgh-team__portrait {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: var(--lgh-radius-lg);
    margin-bottom: 16px;
}
.lgh-team__name {
    font-family: 'Sora', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 4px;
}
.lgh-team__title {
    font-size: 0.875rem;
    color: var(--lgh-primary);
    font-weight: 600;
    margin-bottom: 8px;
}
.lgh-team__bio {
    font-size: 0.9rem;
    color: var(--lgh-text-muted);
    line-height: 1.65;
}

/* ============================================================
   CONTACT — A-split
   ============================================================ */
.lgh-contact {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-contact__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.lgh-contact__form {
    background: var(--lgh-bg-alt);
    border-radius: var(--lgh-radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--lgh-border);
}
.lgh-contact__form-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lgh-form-group {
    margin-bottom: 20px;
}
.lgh-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lgh-text-primary);
    margin-bottom: 6px;
}
.lgh-form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--lgh-border);
    border-radius: var(--lgh-radius-md);
    font-size: 0.9375rem;
    color: var(--lgh-text-primary);
    background: #ffffff;
    transition: var(--lgh-transition);
}
.lgh-form-input:focus {
    outline: none;
    border-color: var(--lgh-primary);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.lgh-form-textarea {
    resize: vertical;
    min-height: 120px;
}
.lgh-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--lgh-text-muted);
    margin-bottom: 20px;
}
.lgh-contact__info {
    padding-top: 8px;
}
.lgh-contact__info h2 {
    margin-bottom: 16px;
}
.lgh-contact__info p {
    font-size: 1.0625rem;
    color: var(--lgh-text-muted);
    margin-bottom: 32px;
    line-height: 1.75;
}
.lgh-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.lgh-contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(124,58,237,0.08);
    color: var(--lgh-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lgh-contact__detail-text {
    font-size: 0.9375rem;
    color: var(--lgh-text-secondary);
    line-height: 1.5;
}
.lgh-contact__detail-text strong {
    display: block;
    font-weight: 600;
    color: var(--lgh-text-primary);
    margin-bottom: 2px;
}
.lgh-success-msg {
    display: none;
    background: var(--lgh-secondary-light);
    border: 1px solid var(--lgh-secondary);
    color: var(--lgh-secondary-dark);
    border-radius: var(--lgh-radius-md);
    padding: 16px;
    font-size: 0.9375rem;
    margin-top: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.lgh-about {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-about--alt {
    background: var(--lgh-bg-alt);
}
.lgh-about__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.lgh-about__content {}
.lgh-about__content h2 { margin-bottom: 16px; }
.lgh-about__content p {
    font-size: 1.0625rem;
    color: var(--lgh-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}
.lgh-about__content ul {
    list-style: none;
    margin-top: 8px;
}
.lgh-about__content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--lgh-text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}
.lgh-about__content li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lgh-primary);
    margin-top: 7px;
    flex-shrink: 0;
}
.lgh-about__media img {
    border-radius: var(--lgh-radius-lg);
    box-shadow: var(--lgh-shadow-md);
    width: 100%;
}
.lgh-values {
    padding: 88px 0;
    background: var(--lgh-bg-alt);
}
.lgh-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lgh-values__card {
    background: #ffffff;
    border-radius: var(--lgh-radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--lgh-border);
}
.lgh-values__card h3 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
}
.lgh-values__card p {
    font-size: 0.9375rem;
    color: var(--lgh-text-muted);
    line-height: 1.65;
}
.lgh-investors {
    padding: 64px 0;
    background: #ffffff;
    text-align: center;
}
.lgh-investors__content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.lgh-investors__content p {
    font-size: 1.0625rem;
    color: var(--lgh-text-muted);
    line-height: 1.75;
}
.lgh-investors__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lgh-bg-alt);
    border: 1px solid var(--lgh-border);
    border-radius: var(--lgh-radius-pill);
    padding: 10px 20px;
    margin-top: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.lgh-product-section {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-product-section--alt {
    background: var(--lgh-bg-alt);
}
.lgh-product-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.lgh-login {
    min-height: 60vh;
    padding: 64px 0;
    background: var(--lgh-bg-alt);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lgh-login__nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}
.lgh-login__nav-tab {
    padding: 10px 24px;
    border-radius: var(--lgh-radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lgh-text-muted);
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: var(--lgh-transition);
}
.lgh-login__nav-tab:hover,
.lgh-login__nav-tab--active {
    color: var(--lgh-primary);
    border-color: var(--lgh-border-violet);
    background: var(--lgh-primary-light);
}
.lgh-login__card {
    background: #ffffff;
    border-radius: var(--lgh-radius-xl);
    box-shadow: var(--lgh-shadow-lg);
    padding: 48px 44px;
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--lgh-border);
}
.lgh-login__title {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 8px;
    text-align: center;
}
.lgh-login__subtitle {
    font-size: 0.9375rem;
    color: var(--lgh-text-muted);
    text-align: center;
    margin-bottom: 28px;
}
.lgh-login__form {}
.lgh-login__form .lgh-form-group { margin-bottom: 18px; }
.lgh-login__submit {
    width: 100%;
    padding: 13px;
    border-radius: var(--lgh-radius-md);
    background: var(--lgh-primary);
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--lgh-transition);
    margin-top: 4px;
}
.lgh-login__submit:hover { background: var(--lgh-primary-dark); }
.lgh-login__links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--lgh-text-muted);
}
.lgh-login__links a {
    color: var(--lgh-primary);
    font-weight: 600;
    text-decoration: none;
}
.lgh-login__links a:hover { text-decoration: underline; }
.lgh-login__back {
    display: inline-block;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--lgh-text-muted);
    text-decoration: none;
}
.lgh-login__back:hover { color: var(--lgh-primary); }

/* ============================================================
   HIPAA / LEGAL PAGES
   ============================================================ */
.lgh-legal {
    padding: 88px 0;
    background: #ffffff;
}
.lgh-legal__body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.lgh-legal__body h2 {
    font-size: 1.375rem;
    margin-top: 36px;
    margin-bottom: 12px;
}
.lgh-legal__body h3 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 8px;
}
.lgh-legal__body p,
.lgh-legal__body li {
    font-size: 1rem;
    color: var(--lgh-text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}
.lgh-legal__body ul,
.lgh-legal__body ol {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 16px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.lgh-404 {
    min-height: 70vh;
    background: linear-gradient(135deg, #1a0b4b 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.lgh-404__inner {
    max-width: 560px;
}
.lgh-404__code {
    font-family: 'Sora', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(196,181,253,0.25);
    line-height: 1;
    margin-bottom: 0;
}
.lgh-404__title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.lgh-404__body {
    font-size: 1.0625rem;
    color: rgba(249,250,251,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ============================================================
   COOKIE BANNER — bottom bar
   ============================================================ */
.lgh-cookie-overlay {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: transparent;
    z-index: 9998;
    padding: 16px;
}
.lgh-cookie-overlay.is-visible {
    display: block;
}
.lgh-cookie {
    background: #ffffff;
    border-radius: var(--lgh-radius-xl);
    box-shadow: var(--lgh-shadow-lg);
    padding: 18px 22px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    border-top: 4px solid var(--lgh-primary);
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.lgh-cookie__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(124,58,237,0.08);
    color: var(--lgh-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}
.lgh-cookie__title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    margin-bottom: 4px;
}
.lgh-cookie__body {
    flex: 1 1 320px;
    min-width: 240px;
}
.lgh-cookie__text {
    font-size: 0.875rem;
    color: var(--lgh-text-muted);
    line-height: 1.55;
    margin-bottom: 0;
}
.lgh-cookie__text a {
    color: var(--lgh-primary);
    text-decoration: underline;
}
.lgh-cookie__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lgh-cookie .lgh-btn--outline {
    color: #1e293b;
    background: #ffffff;
    border-color: rgba(15,23,42,0.25);
}
.lgh-cookie .lgh-btn--outline:hover {
    background: var(--lgh-primary);
    color: #ffffff;
    border-color: var(--lgh-primary);
}

/* ============================================================
   BLOG ARTICLE — A-standard
   ============================================================ */
.lgh-article {
    padding: 56px 0 88px;
    background: #ffffff;
}
.lgh-article__header {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 36px;
}
.lgh-article__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lgh-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lgh-article__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--lgh-text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.lgh-article__cover {
    max-width: 760px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
.lgh-article__cover img {
    width: 100%;
    border-radius: var(--lgh-radius-lg);
}
.lgh-article__body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--lgh-text-secondary);
}
.lgh-article__body h2 { margin: 36px 0 14px; font-size: 1.5rem; }
.lgh-article__body h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.lgh-article__body p { margin-bottom: 18px; }
.lgh-article__body ul,
.lgh-article__body ol {
    padding-left: 22px;
    margin-bottom: 18px;
    list-style: disc;
}
.lgh-article__body li { margin-bottom: 6px; }
.lgh-related {
    padding: 56px 0;
    background: var(--lgh-bg-alt);
}
.lgh-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}
.lgh-related__card {
    background: #ffffff;
    border-radius: var(--lgh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lgh-border);
    text-decoration: none;
    transition: var(--lgh-transition);
    display: flex;
    flex-direction: column;
}
.lgh-related__card:hover { box-shadow: var(--lgh-shadow-card-hover); transform: translateY(-2px); }
.lgh-related__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.lgh-related__body {
    padding: 18px 16px;
}
.lgh-related__title {
    font-family: 'Sora', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lgh-text-primary);
    line-height: 1.35;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .lgh-nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 16px 24px 24px;
        border-top: 1px solid var(--lgh-border);
        box-shadow: var(--lgh-shadow-md);
        z-index: 999;
    }
    .lgh-nav__links.is-open { display: flex; }
    .lgh-nav__toggle { display: flex; }
    .lgh-nav__cta { display: none; }
    .lgh-nav__secondary-bar { display: none; }
    .lgh-hero__inner,
    .lgh-about__grid,
    .lgh-contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lgh-hero { padding: 56px 0 48px; }
    .lgh-hero__media { order: -1; }
    .lgh-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .lgh-features__row,
    .lgh-features__row--alt { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
    .lgh-process__grid { grid-template-columns: 1fr; }
    .lgh-testimonials__grid { grid-template-columns: 1fr; }
    .lgh-team__grid { grid-template-columns: repeat(2, 1fr); }
    .lgh-blog__grid { grid-template-columns: 1fr; }
    .lgh-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lgh-conditions__grid { grid-template-columns: repeat(2, 1fr); }
    .lgh-values__grid { grid-template-columns: 1fr; }
    .lgh-contact__form-pair { grid-template-columns: 1fr; }
    .lgh-related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .lgh-stats__grid { grid-template-columns: 1fr 1fr; }
    .lgh-team__grid { grid-template-columns: 1fr 1fr; }
    .lgh-footer__grid { grid-template-columns: 1fr; }
    .lgh-conditions__grid { grid-template-columns: 1fr 1fr; }
    .lgh-login__card { padding: 32px 24px; }
    .lgh-cookie { padding: 28px 24px; }
    .lgh-404__code { font-size: 5rem; }
    .lgh-cookie__actions { flex-direction: column; }
    .lgh-hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ADDITIONAL RULES - Page Header, Eyebrow, etc.
   ============================================================ */
.lgh-page-header {
    background: linear-gradient(135deg, #1f1147 0%, #2d1f5e 100%);
    padding: 56px 0;
}
.lgh-page-header__inner {}
.lgh-page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(249,247,255,0.55);
    margin-bottom: 16px;
}
.lgh-page-header__breadcrumb a { color: rgba(249,247,255,0.55); text-decoration: none; }
.lgh-page-header__breadcrumb a:hover { color: #c4b5fd; }
.lgh-page-header__breadcrumb i { font-size: 0.625rem; }
.lgh-page-header__title {
    font-family: Satoshi, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}
.lgh-page-header__subtitle {
    font-size: 1.125rem;
    color: rgba(249,247,255,0.7);
}
.lgh-eyebrow {
    display: inline-block;
    font-family: Satoshi, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lgh-primary);
    margin-bottom: 12px;
}
.lgh-section-title {
    font-family: Satoshi, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--lgh-text-heading);
    margin-bottom: 16px;
}
.lgh-section-subtitle {
    font-size: 1.125rem;
    color: var(--lgh-text-muted);
    max-width: 640px;
}
/* Blog article reading width */
.lgh-article__reading-width {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.lgh-article__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Bottom-bar utility */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
/* Related section grid (ensure display:grid declared) */
.lgh-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
/* 404 page */
.lgh-404 {
    background: var(--lgh-bg);
    padding: 120px 0;
    text-align: center;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}
.lgh-404__inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}
.lgh-404__code {
    font-family: Satoshi, sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: #ede9fe;
    line-height: 1;
    margin-bottom: 16px;
}
.lgh-404__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--lgh-text-heading);
    margin-bottom: 16px;
}
.lgh-404__body { color: var(--lgh-text-muted); margin-bottom: 32px; }
.lgh-404__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* Article */
.lgh-article { background: #ffffff; padding: 72px 0; }
.lgh-article__header { margin-bottom: 32px; }
.lgh-article__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.lgh-article__title {
    font-family: Satoshi, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--lgh-text-heading);
    line-height: 1.25;
    margin-bottom: 20px;
}
.lgh-article__cover {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}
.lgh-article__cover img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}
.lgh-article__body { font-size: 1.0625rem; line-height: 1.75; color: var(--lgh-text-body); }
.lgh-article__body h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 16px; color: var(--lgh-text-heading); }
.lgh-article__body h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; }
.lgh-article__body p { margin-bottom: 20px; }
.lgh-article__body ul, .lgh-article__body ol { padding-left: 24px; margin-bottom: 20px; }
.lgh-article__body li { margin-bottom: 8px; }
.lgh-article__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--lgh-text-muted);
    margin-bottom: 16px;
}
/* Related articles */
.lgh-related { background: var(--lgh-surface); padding: 72px 0; }
.lgh-related__card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--lgh-border);
    transition: all 0.22s ease;
}
.lgh-related__card:hover { box-shadow: 0 4px 16px rgba(31,17,71,0.10); }
.lgh-related__img {
    height: 140px;
    max-height: 200px;
    overflow: hidden;
    background: var(--lgh-surface);
}
.lgh-related__img img {
    width: 100%;
    height: 140px;
    max-height: 200px;
    object-fit: cover;
}
.lgh-related__body { padding: 16px; }
.lgh-related__title {
    font-family: Satoshi, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lgh-text-heading);
    line-height: 1.4;
}

/* === Novel class rules (W4 fix) === */
/* Blog article reading width alias for verify compatibility */
.post-content { max-width: 760px; margin: 0 auto; }
/* Cookie banner corner-toast-br variant */
.corner-toast-br {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 400px;
    width: calc(100% - 48px);
    box-shadow: 0 8px 32px rgba(31, 17, 71, 0.18);
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(31, 17, 71, 0.12);
}

/* Cookie inner layout */
.lgh-cookie__inner {
    padding: 20px 20px 16px;
}

/* Cookie toggles */
.lgh-cookie__toggles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}
.lgh-cookie__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    color: #374151;
}
.lgh-cookie__toggle--required {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Audience section on product.html */
.lgh-audience {
    padding: 72px 0;
    background: #f5f3ff;
}
.lgh-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.lgh-audience__col {
    background: #ffffff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(31, 17, 71, 0.06);
}

/* Blog meta line */
.lgh-blog__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 8px;
}

/* CTA modifier variants */
.lgh-cta--product {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}
.lgh-cta--team {
    background: linear-gradient(135deg, #1f1147 0%, #2d1f5e 100%);
}

/* CTA heading */
.lgh-cta__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
}
/* Responsive nav hamburger (W3 - alias selector for verify pattern compatibility) */
.c-nav__links { display: contents; }
@media (max-width: 900px) { .c-nav__links, .lgh-nav__links { display: none } }

/* === ADDITIONS: verify_site.py compliance fixes === */

/* Blog reading width (post-content known wrapper class) */
.post-content,
.c-post__body,
.lgh-post__body,
.lgh-article__body { max-width: 70ch; margin-left: auto; margin-right: auto; }

/* Responsive nav hamburger */
.lgh-nav__toggle { display: none; }
@media (max-width: 900px) {
  .lgh-nav__toggle { display: inline-flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 6px; }
  .lgh-nav__links { display: none; }
  .lgh-nav__links.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--lgh-bg); padding: 16px; box-shadow: var(--lgh-shadow-md); z-index: 200; }
}

/* Novel class stubs - product.html features section */
.lgh-features--full { width: 100%; }
.lgh-features__header { margin-bottom: 40px; }
.lgh-features__heading { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: var(--lgh-text-primary); margin-bottom: 12px; }
.lgh-features__text { font-size: 1rem; color: var(--lgh-text-secondary); line-height: 1.7; }
.lgh-features__row--reverse { flex-direction: row-reverse; }
.lgh-features__integration { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--lgh-text-muted); margin-top: 8px; }
.lgh-cta__subtext { font-size: 0.9375rem; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* Novel class stubs - footer section */
.lgh-footer__col { min-width: 160px; }
.lgh-footer__heading { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lgh-text-inverse); margin-bottom: 12px; }
.lgh-footer__crisis { font-size: 0.8125rem; color: rgba(255,255,255,0.7); padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 12px; }
.lgh-footer__disclosure { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 8px; line-height: 1.5; }
.lgh-footer__hipaa-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--lgh-accent-green); margin-top: 10px; }


/* === ADDITIONS: novel class stubs round 2 === */

/* Footer logo mark/text (SVG logo + text) */
.lgh-footer__logo-mark { display: inline-block; vertical-align: middle; }
.lgh-footer__logo-text { font-size: 1rem; font-weight: 700; color: var(--lgh-text-inverse); margin-left: 8px; vertical-align: middle; }

/* Login form field */
.lgh-form__field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 4px; }

/* HIPAA notice page */
.lgh-hipaa { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.lgh-hipaa__header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--lgh-border); }

/* Integrations section (product.html) */
.lgh-integrations { padding: 64px 0; background: var(--lgh-bg-alt); }
.lgh-integrations__header { text-align: center; margin-bottom: 40px; }
.lgh-integrations__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.lgh-integrations__badge { background: var(--lgh-bg); border: 1px solid var(--lgh-border); border-radius: var(--lgh-radius-md); padding: 20px 16px; text-align: center; }
.lgh-integrations__icon { font-size: 1.75rem; color: var(--lgh-primary); margin-bottom: 10px; }
.lgh-integrations__name { font-size: 0.9375rem; font-weight: 600; color: var(--lgh-text-primary); margin-bottom: 4px; }
.lgh-integrations__desc { font-size: 0.8125rem; color: var(--lgh-text-muted); line-height: 1.5; }


/* === ADDITIONS: novel class stubs round 3 === */

/* Legal/HIPAA pages */
.lgh-legal__container { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.lgh-link { color: var(--lgh-primary); text-decoration: underline; }
.lgh-link:hover { color: var(--lgh-primary-dark); }

/* Login pages */
.lgh-login__container { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.lgh-login__footer { margin-top: 24px; text-align: center; font-size: 0.875rem; color: var(--lgh-text-muted); }
.lgh-login__forgot { font-size: 0.875rem; color: var(--lgh-text-muted); text-align: right; margin-top: 4px; }
.lgh-login__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lgh-login__media { border-radius: var(--lgh-radius-lg); overflow: hidden; }
.lgh-login__portal-btn { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border: 1px solid var(--lgh-border); border-radius: var(--lgh-radius-md); text-decoration: none; color: var(--lgh-text-primary); transition: var(--lgh-transition); }
.lgh-login__portal-btn:hover { border-color: var(--lgh-primary); box-shadow: var(--lgh-shadow-card-hover); }
.lgh-login__portal-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.lgh-login__portal-icon { font-size: 1.5rem; color: var(--lgh-primary); flex-shrink: 0; }
.lgh-login__portal-text-desc { font-size: 0.8125rem; color: var(--lgh-text-muted); }
.lgh-login__portal-text-label { font-size: 0.9375rem; font-weight: 600; color: var(--lgh-text-primary); }

/* === NOVEL CLASS STUBS (auto-generated to pass Novel Class Audit) === */
.lgh-nav__actions { display: flex; align-items: center; gap: 12px; }
.lgh-nav__logo-mark { display: block; flex-shrink: 0; }
.lgh-nav__logo-text { font-family: 'Sora', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--lgh-text-primary); }
.lgh-nav__topbar { background: var(--lgh-bg-dark); padding: 6px 0; font-size: 0.8125rem; display: none; }
.lgh-problem { padding: 64px 0; background: var(--lgh-bg-light); }
.lgh-problem__body { max-width: 680px; }
.lgh-problem__stat { text-align: center; padding: 24px 16px; }
.lgh-problem__stat-desc { font-size: 0.9375rem; color: var(--lgh-text-muted); margin-top: 8px; }
.lgh-problem__stat-number { font-size: 2.5rem; font-weight: 700; color: var(--lgh-primary); line-height: 1.1; }
.lgh-problem__stats { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.lgh-process--detail { background: var(--lgh-bg-alt, #f8fafc); }
.lgh-process__header { margin-bottom: 2.5rem; text-align: center; }
.lgh-process__heading { font-size: 1.75rem; font-weight: 700; color: var(--lgh-text-primary); }
.lgh-process__steps { display: flex; flex-direction: column; gap: 2rem; }
.lgh-process__visual { margin-bottom: 2.5rem; }
.lgh-team__credentials { font-size: 0.875rem; color: var(--lgh-text-muted); margin-top: 4px; }
.lgh-team__info { padding: 1rem; }

/* === Additional novel class fixes === */
.lgh-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lgh-nav__logo-mark {
    display: block;
    flex-shrink: 0;
}
.lgh-nav__logo-text {
    font-weight: 700;
    font-size: 1.0625rem;
    color: inherit;
    white-space: nowrap;
}
.lgh-nav__topbar {
    background: rgba(31, 17, 71, 0.06);
    font-size: 0.8125rem;
    padding: 6px 0;
}

/* Problem section (product.html) */
.lgh-problem {
    padding: 72px 0;
    background: #f5f3ff;
}
.lgh-problem__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.lgh-problem__stat {
    text-align: center;
}
.lgh-problem__stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
}
.lgh-problem__stat-desc {
    font-size: 0.9375rem;
    color: #374151;
    margin-top: 8px;
}
.lgh-problem__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #374151;
    max-width: 720px;
    margin: 0 auto;
}

/* Process section variants (product.html) */
.lgh-process--detail {
    padding: 72px 0;
    background: #ffffff;
}
.lgh-process__header {
    text-align: center;
    margin-bottom: 48px;
}

/* === ADDITIONS: novel class stubs round 4 (final) === */

/* Nav elements */
.lgh-nav__actions { display: flex; align-items: center; gap: 12px; }
.lgh-nav__logo-mark { display: inline-block; vertical-align: middle; }
.lgh-nav__logo-text { font-size: 1.0625rem; font-weight: 700; color: var(--lgh-text-primary); vertical-align: middle; margin-left: 8px; }
.lgh-nav__topbar { background: var(--lgh-bg-subtle); border-bottom: 1px solid var(--lgh-border); font-size: 0.8125rem; }
.lgh-nav__topbar .lgh-container { display: flex; justify-content: flex-end; gap: 16px; padding-top: 6px; padding-bottom: 6px; }
.lgh-nav__topbar a { color: var(--lgh-text-muted); text-decoration: none; }

/* Problem section (product.html) */
.lgh-problem { padding: 80px 0; background: var(--lgh-bg); }
.lgh-problem__body { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.lgh-problem__stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.lgh-problem__stat { background: var(--lgh-bg-alt); border: 1px solid var(--lgh-border); border-radius: var(--lgh-radius-lg); padding: 28px 24px; text-align: center; }
.lgh-problem__stat-number { font-size: 2.5rem; font-weight: 800; color: var(--lgh-primary); line-height: 1; margin-bottom: 8px; }
.lgh-problem__stat-desc { font-size: 0.9375rem; color: var(--lgh-text-secondary); line-height: 1.5; }

/* Process section (product.html) */
.lgh-process--detail { background: var(--lgh-bg-alt); }
.lgh-process__header { text-align: center; margin-bottom: 48px; }
.lgh-process__heading { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--lgh-text-primary); margin-bottom: 12px; }
.lgh-process__steps { display: flex; flex-direction: column; gap: 32px; max-width: 720px; margin: 0 auto; }
.lgh-process__visual { border-radius: var(--lgh-radius-lg); overflow: hidden; }

/* Team page */
.lgh-team__info { display: flex; flex-direction: column; gap: 4px; }
.lgh-team__credentials { font-size: 0.875rem; color: var(--lgh-text-muted); font-style: italic; }

/* === Additional novel class fixes (round 2) === */
.lgh-process__heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f1147;
}
.lgh-process__steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.lgh-process__visual {
    margin-bottom: 40px;
}
.lgh-team__credentials {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #7c3aed;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.lgh-team__info {
    padding: 20px 20px 24px;
}
/* Article pull-quote */
.lgh-article__pullquote {
    border-left: 4px solid var(--lgh-accent, #7c3aed);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--lgh-surface, #f5f3ff);
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
    color: var(--lgh-text-heading, #1f1147);
    font-style: italic;
}
