/* ============================================================
   AROMS landing / marketing design system (lp-*)
   Extracted from new-landing-3.ejs — shared across the landing
   page and the About / Team / Partners / Donate pages.
   ============================================================ */

        /* ────────────────────────────────────────────────────────
           RESET
           ──────────────────────────────────────────────────────── */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { -webkit-text-size-adjust: 100%; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            background: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        button { font-family: inherit; }

        :root {
            --primary: #F28846;
            --primary-dark: #D76B3C;
            --primary-light: #ffb98e;
            --text-dark: #1a1a1a;
            --text-medium: #4d4d4d;
            --text-light: #777;
            --text-muted: #9ca3af;
            --bg-white: #ffffff;
            --bg-light: #f7f7f7;
            --bg-cream: #fafaf9;
            --bg-dark: #1a1a1a;
            --border: rgba(0,0,0,0.06);
            --border-strong: #ececec;
            --shadow-card: 0 20px 60px rgba(0,0,0,0.08);
            --shadow-soft: 0 8px 28px rgba(0,0,0,0.06);
        }

        /* ────────────────────────────────────────────────────────
           NAV
           ──────────────────────────────────────────────────────── */
        .lp-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 40px;
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: padding 0.3s ease, box-shadow 0.3s ease;
        }
        .lp-nav.scrolled {
            padding: 10px 40px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }
        .lp-nav-logo {
            display: flex;
            align-items: center;
        }
        .lp-nav-logo img {
            height: 32px;
            width: auto;
            display: block;
        }
        .lp-nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .lp-nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-medium);
            transition: color 0.2s;
        }
        .lp-nav-link:hover { color: var(--primary); }
        .lp-nav-cta {
            display: inline-block;
            padding: 10px 22px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.2s, transform 0.2s;
        }
        .lp-nav-cta:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
        }
        .lp-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-dark);
            cursor: pointer;
        }

        /* ────────────────────────────────────────────────────────
           HERO
           ──────────────────────────────────────────────────────── */
        .lp-hero {
            position: relative;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            padding: 180px 40px 120px;
            overflow: hidden;
        }
        .lp-hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 700px; height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242,136,70,0.20) 0%, rgba(242,136,70,0) 60%);
            pointer-events: none;
        }
        .lp-hero::after {
            content: '';
            position: absolute;
            bottom: -300px; left: -200px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242,136,70,0.10) 0%, rgba(242,136,70,0) 60%);
            pointer-events: none;
        }
        /* Desktop hero gets a surgical background photo behind the dark gradient.
           Mobile/tablet keeps the plain gradient — the image gets awkwardly
           cropped at narrow widths. */
        @media (min-width: 961px) {
            .lp-hero {
                background:
                    linear-gradient(135deg, rgba(26, 26, 26, 0.82) 0%, rgba(45, 45, 45, 0.88) 100%),
                    url('/img/john_surgery_hero_image.JPG');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
        }
        .lp-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }
        .lp-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--primary-light);
            padding: 8px 18px;
            border: 1px solid rgba(242,136,70,0.35);
            border-radius: 100px;
            margin-bottom: 32px;
            background: rgba(242,136,70,0.08);
        }
        .lp-hero-eyebrow .pulse {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 0 rgba(242,136,70, 0.7);
            animation: lp-pulse 2s infinite;
        }
        @keyframes lp-pulse {
            0% { box-shadow: 0 0 0 0 rgba(242,136,70, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(242,136,70, 0); }
            100% { box-shadow: 0 0 0 0 rgba(242,136,70, 0); }
        }
        .lp-hero-heading {
            font-size: clamp(40px, 6.8vw, 82px);
            font-weight: 800;
            line-height: 1.04;
            letter-spacing: -2.5px;
            margin-bottom: 26px;
        }
        .lp-hero-heading .accent { color: var(--primary); }
        .lp-hero-sub {
            font-size: clamp(17px, 2vw, 21px);
            color: rgba(255,255,255,0.72);
            line-height: 1.6;
            max-width: 640px;
            margin: 0 auto 44px;
            font-weight: 300;
        }
        .lp-hero-ctas {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 72px;
        }
        .lp-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: transform 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
            border: 1px solid transparent;
            cursor: pointer;
        }
        .lp-btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 24px rgba(242,136,70,0.28);
        }
        .lp-btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(242,136,70,0.38);
        }
        .lp-btn-ghost-light {
            background: rgba(255,255,255,0.06);
            color: #fff;
            border-color: rgba(255,255,255,0.18);
        }
        .lp-btn-ghost-light:hover {
            background: rgba(255,255,255,0.12);
            color: #fff;
        }
        .lp-btn-ghost {
            background: transparent;
            color: var(--text-dark);
            border-color: rgba(0,0,0,0.12);
        }
        .lp-btn-ghost:hover { background: var(--bg-light); }
        .lp-hero-stats {
            display: flex;
            justify-content: center;
            gap: clamp(28px, 6vw, 80px);
            flex-wrap: wrap;
            padding-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .lp-hero-stat { text-align: center; }
        .lp-hero-stat-num {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            letter-spacing: -1px;
        }
        .lp-hero-stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 10px;
            font-weight: 600;
        }

        /* ────────────────────────────────────────────────────────
           SECTIONS — shared
           ──────────────────────────────────────────────────────── */
        .lp-section { padding: clamp(72px, 10vw, 130px) 40px; position: relative; }
        .lp-container { max-width: 1180px; margin: 0 auto; width: 100%; }
        .lp-eyebrow {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .lp-section-heading {
            font-size: clamp(30px, 4.5vw, 50px);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -1.2px;
            margin-bottom: 18px;
        }
        .lp-section-sub {
            font-size: clamp(16px, 1.6vw, 19px);
            line-height: 1.65;
            color: var(--text-light);
            max-width: 680px;
        }
        .lp-section-header { text-align: center; margin-bottom: clamp(56px, 7vw, 80px); }
        .lp-section-header .lp-section-sub { margin-left: auto; margin-right: auto; }

        /* ────────────────────────────────────────────────────────
           MISSION
           ──────────────────────────────────────────────────────── */
        .lp-mission { background: var(--bg-white); }
        .lp-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(48px, 7vw, 96px);
            align-items: center;
        }
        .lp-mission-text .lp-section-sub {
            font-size: 17px;
            color: var(--text-medium);
            line-height: 1.75;
            max-width: none;
            margin-top: 4px;
        }
        .lp-pillars {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .lp-pillar {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 28px 24px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border);
        }
        .lp-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
        .lp-pillar-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(242,136,70,0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 16px;
        }
        .lp-pillar-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.2px;
        }
        .lp-pillar-desc {
            font-size: 13.5px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ────────────────────────────────────────────────────────
           FEATURES GRID
           ──────────────────────────────────────────────────────── */
        .lp-features { background: var(--bg-light); }
        .lp-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .lp-features-grid .lp-feature-card.highlight {
            grid-column: 2;
        }
        .lp-feature-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 32px 26px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .lp-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
        .lp-feature-card.highlight {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            border-color: rgba(242,136,70,0.25);
        }
        .lp-feature-card.highlight .lp-feature-title { color: #fff; }
        .lp-feature-card.highlight .lp-feature-desc { color: rgba(255,255,255,0.65); }
        .lp-feature-badge {
            position: absolute;
            top: 18px; right: 18px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: rgba(242,136,70,0.15);
            padding: 4px 10px;
            border-radius: 100px;
        }
        .lp-feature-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 22px;
        }
        .lp-feature-icon.lectures   { background: rgba(242,136,70,0.15);  color: #F28846; }
        .lp-feature-icon.flashcards { background: rgba(106,186,48,0.15);  color: #6aba30; }
        .lp-feature-icon.qbank      { background: rgba(212,151,10,0.15);  color: #d4970a; }
        .lp-feature-icon.papers     { background: rgba(139,92,246,0.15);  color: #8b5cf6; }
        .lp-feature-icon.videos     { background: rgba(232,67,147,0.15);  color: #e84393; }
        .lp-feature-icon.boards     { background: rgba(45,156,219,0.15);  color: #2d9cdb; }
        .lp-feature-icon.maximus    {
            background-color: rgba(242,136,70,0.15);
            background-image: url("/img/favicon.svg");
            background-size: 64%;
            background-position: center;
            background-repeat: no-repeat;
        }
        .lp-feature-stat {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .lp-feature-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }
        .lp-feature-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-light);
        }

        /* ── Showcase: features flanking a centered app video ── */
        .lp-showcase {
            display: grid;
            grid-template-columns: 1fr clamp(248px, 26vw, 312px) 1fr;
            gap: clamp(28px, 4vw, 64px);
            align-items: center;
        }
        .lp-showcase-col {
            display: flex;
            flex-direction: column;
            gap: clamp(28px, 4vw, 52px);
        }
        .lp-showcase-feature {
            display: flex;
            align-items: center;
            gap: 18px;
            transition: transform 0.3s ease;
        }
        .lp-showcase-feature:hover { transform: translateY(-4px); }
        .lp-showcase-col.left .lp-showcase-feature { justify-content: flex-end; text-align: right; }
        .lp-showcase-col.right .lp-showcase-feature { justify-content: flex-start; text-align: left; }
        .lp-showcase-feature .lp-feature-icon { margin-bottom: 0; flex-shrink: 0; }
        .lp-showcase-text { min-width: 0; }
        .lp-showcase-stat {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
        }
        .lp-showcase-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.2px;
            color: var(--text-dark);
        }
        .lp-showcase-desc {
            font-size: 13.5px;
            line-height: 1.55;
            color: var(--text-light);
            max-width: 264px;
        }
        .lp-showcase-col.left .lp-showcase-desc { margin-left: auto; }
        .lp-showcase-video-wrap { display: flex; justify-content: center; }
        .lp-showcase-video {
            width: 100%;
            max-width: 312px;
            height: auto;
            display: block;
        }
        .lp-showcase-maximus {
            justify-content: center;
            text-align: left;
            margin: 0 auto clamp(36px, 5vw, 56px);
        }
        .lp-showcase-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: rgba(242,136,70,0.15);
            padding: 3px 9px;
            border-radius: 100px;
            vertical-align: middle;
            margin-left: 8px;
            position: relative;
            top: -2px;
        }

        /* ────────────────────────────────────────────────────────
           DEEP-DIVE sections
           ──────────────────────────────────────────────────────── */
        .lp-deep { background: var(--bg-white); }
        .lp-deep.alt { background: var(--bg-light); }
        .lp-deep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(48px, 7vw, 96px);
            align-items: center;
        }
        .lp-deep-grid.reverse .lp-deep-content { order: 2; }
        .lp-deep-grid.reverse .lp-deep-visual { order: 1; }
        .lp-deep-eyebrow {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
        }
        .lp-deep-heading {
            font-size: clamp(26px, 3.4vw, 40px);
            font-weight: 800;
            letter-spacing: -0.8px;
            line-height: 1.18;
            margin-bottom: 20px;
        }
        .lp-deep-text {
            font-size: 16.5px;
            line-height: 1.75;
            color: var(--text-medium);
            margin-bottom: 28px;
        }
        .lp-deep-bullets { list-style: none; margin: 0 0 28px 0; }
        .lp-deep-bullets li {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.55;
            padding: 8px 0 8px 32px;
            position: relative;
        }
        .lp-deep-bullets li::before {
            content: '\2714';
            font-weight: 700;
            position: absolute;
            left: 0; top: 9px;
            color: var(--primary);
            font-size: 12px;
            line-height: 1;
            width: 20px; height: 20px;
            background: rgba(242,136,70,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lp-deep-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 28px; }
        .lp-deep-stat-num {
            font-size: 30px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            letter-spacing: -0.5px;
        }
        .lp-deep-stat-label {
            font-size: 12px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
            font-weight: 600;
        }
        .lp-deep-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Maximus showcase (dark) */
        .lp-maximus {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .lp-maximus::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(242,136,70,0.10) 0%, rgba(242,136,70,0) 60%);
            pointer-events: none;
        }
        .lp-maximus .lp-container { position: relative; z-index: 1; }
        .lp-maximus .lp-deep-eyebrow { color: var(--primary-light); }
        .lp-maximus .lp-deep-heading { color: #fff; }
        .lp-maximus .lp-deep-text { color: rgba(255,255,255,0.72); }
        .lp-maximus .lp-deep-bullets li { color: rgba(255,255,255,0.85); }
        .lp-maximus .lp-deep-stat-label { color: rgba(255,255,255,0.5); }

        /* ════════════════════════════════════════════════════════
           PRODUCT MOCKUPS (.aw-*)  — lifted verbatim from presentation
           ════════════════════════════════════════════════════════ */

        /* Shared */
        .aw-frame {
            width: 100%;
            max-width: 460px;
            background: #fafaf9;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 24px 60px -24px rgba(0,0,0,0.22);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1a1a1a;
            line-height: 1.5;
        }
        .aw-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 12px 18px;
            background: rgba(255,255,255,0.92);
            border-bottom: 1px solid #ececec;
            font-size: 12px;
        }
        .aw-bar-left { display: flex; align-items: center; gap: 8px; color: #6b7280; font-weight: 500; }
        .aw-bar-left i { color: #9ca3af; font-size: 11px; }
        .aw-bar-brand { font-weight: 800; color: #1a1a1a; letter-spacing: -0.3px; }
        .aw-bar-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(242,136,70,0.12);
            color: #F28846;
            padding: 3px 9px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .aw-body { background: #ffffff; padding: 22px; }
        .aw-body-tight { padding: 18px 20px; }
        .aw-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #F28846;
            color: #fff;
            border: none;
            padding: 7px 13px;
            border-radius: 7px;
            font-size: 12px;
            font-weight: 600;
            font-family: inherit;
            cursor: default;
            box-shadow: 0 1px 3px rgba(242,136,70,0.25);
        }
        .aw-btn.ghost { background: white; color: #6b7280; border: 1px solid #e5e7eb; box-shadow: none; }

        /* Lecture */
        .aw-lecture-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; color: #9ca3af; font-weight: 700; margin-bottom: 6px; }
        .aw-lecture-title { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; letter-spacing: -0.3px; }
        .aw-lecture-meta { font-size: 12px; color: #6b7280; margin-bottom: 18px; }
        .aw-lecture-h { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #F28846; font-weight: 700; margin-bottom: 10px; }
        .aw-lecture-body { font-size: 13.5px; color: #374151; margin-bottom: 14px; line-height: 1.65; }
        .aw-hl {
            background-image: linear-gradient(rgba(242,136,70,0.32), rgba(242,136,70,0.32));
            background-repeat: no-repeat;
            background-size: 0% 78%;
            background-position: 0 92%;
            padding: 0 3px;
            margin: 0 -3px;
            border-radius: 2px;
            animation: aw-hl-sweep 7s cubic-bezier(0.4,0,0.2,1) infinite;
        }
        .aw-lecture-bullets { list-style: none; padding: 0; margin: 0 0 18px 0; }
        .aw-lecture-bullets li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #4b5563; padding: 5px 0; }
        .aw-lecture-bullets li::before { content: ""; width: 5px; height: 5px; border-radius: 999px; background: #F28846; flex-shrink: 0; }
        .aw-lecture-bullets li .pct { margin-left: auto; font-size: 11px; color: #9ca3af; font-weight: 600; }
        .aw-lecture-cites { border-top: 1px solid #f3f4f6; padding-top: 12px; font-size: 11px; color: #9ca3af; }
        .aw-lecture-cites strong { color: #6b7280; font-weight: 600; }
        .aw-lecture-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid #f3f4f6; }
        .aw-lecture-dots { display: flex; gap: 5px; }
        .aw-lecture-dots span { width: 6px; height: 6px; border-radius: 999px; background: #e5e7eb; transition: all 0.5s ease; }
        .aw-lecture-dots span:nth-child(1) { animation: aw-dot-1 8s ease-in-out infinite; }
        .aw-lecture-dots span:nth-child(2) { animation: aw-dot-2 8s ease-in-out infinite; }
        .aw-lecture-dots span:nth-child(3) { animation: aw-dot-3 8s ease-in-out infinite; }

        /* Flashcard */
        .aw-card-stats { display: flex; justify-content: space-between; align-items: center; font-size: 11px; margin-bottom: 16px; }
        .aw-card-stats .l { color: #6b7280; font-weight: 600; }
        .aw-card-stats .r { color: #9ca3af; }
        .aw-card-stage { position: relative; height: 260px; perspective: 1200px; margin-bottom: 16px; }
        .aw-card {
            position: absolute; inset: 0;
            border-radius: 14px;
            transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
            transform-style: preserve-3d;
            animation: aw-card-flip 7s ease-in-out infinite;
        }
        .aw-card-face {
            position: absolute; inset: 0;
            border-radius: 14px;
            border: 1px solid #ececec;
            background: white;
            display: flex; flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 20px;
            text-align: left;
            backface-visibility: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            overflow: hidden;
        }
        .aw-card-face.back {
            transform: rotateY(180deg);
            background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
            border-color: rgba(242,136,70,0.25);
        }
        .aw-card-face-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px; height: 22px;
            border-radius: 999px;
            background: rgba(242,136,70,0.15);
            color: #F28846;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .aw-card-face-q { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.5; }
        .aw-card-face-a { font-size: 12.5px; color: #1a1a1a; line-height: 1.6; width: 100%; }
        .aw-card-face-a ol { list-style: none; padding: 0; margin: 0; counter-reset: card-num; }
        .aw-card-face-a ol li { counter-increment: card-num; padding: 2px 0; display: flex; gap: 6px; }
        .aw-card-face-a ol li::before { content: counter(card-num) "."; color: #6b7280; font-weight: 600; flex-shrink: 0; min-width: 14px; }
        .aw-card-rate { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
        .aw-card-rate button {
            border: 1px solid #e5e7eb;
            background: white;
            border-radius: 8px;
            padding: 10px 0 8px;
            font-size: 11px;
            font-weight: 700;
            color: #4b5563;
            font-family: inherit;
            cursor: default;
            transition: all 0.3s ease;
        }
        .aw-card-rate button .key { display: block; font-size: 9px; font-weight: 500; color: #9ca3af; margin-top: 2px; }
        .aw-card-rate button:nth-child(3) { animation: aw-rate-good 7s ease-in-out infinite; }
        .aw-card-streak {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 14px;
            padding: 10px 12px;
            background: linear-gradient(90deg, rgba(242,136,70,0.08), rgba(148,154,137,0.08));
            border-radius: 8px;
            font-size: 11px;
        }
        .aw-card-streak .stat { display: flex; align-items: center; gap: 5px; color: #6b7280; font-weight: 600; }
        .aw-card-streak .stat i { color: #F28846; }
        .aw-card-streak .stat .num { color: #1a1a1a; font-weight: 800; }

        /* Papers */
        .aw-search {
            display: flex; align-items: center; gap: 10px;
            background: #fafaf9;
            border: 1px solid #e5e7eb;
            border-radius: 9px;
            padding: 9px 12px;
            margin-bottom: 16px;
            font-size: 12px;
            color: #9ca3af;
        }
        .aw-search i { color: #9ca3af; }
        .aw-cat { border: 1px solid #ececec; border-radius: 10px; background: white; margin-bottom: 8px; overflow: hidden; }
        .aw-cat-head { display: flex; align-items: center; gap: 10px; padding: 11px 14px; font-size: 13px; font-weight: 600; color: #1a1a1a; }
        .aw-cat-head .chev { color: #9ca3af; font-size: 11px; margin-left: auto; transition: transform 0.5s ease; }
        .aw-cat-icon {
            width: 24px; height: 24px;
            border-radius: 6px;
            background: rgba(242,136,70,0.12);
            color: #F28846;
            display: flex; align-items: center; justify-content: center;
            font-size: 11px;
        }
        .aw-cat.open .chev { transform: rotate(90deg); }
        .aw-cat-body { padding: 10px 14px 12px 48px; border-top: 1px solid #f3f4f6; }
        .aw-paper { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 12px; }
        .aw-paper-tick { width: 14px; height: 14px; border-radius: 999px; border: 1.5px solid #d1d5db; flex-shrink: 0; margin-top: 2px; }
        .aw-paper.done .aw-paper-tick {
            background: #5b8a63; border-color: #5b8a63;
            display: flex; align-items: center; justify-content: center;
        }
        .aw-paper.done .aw-paper-tick::before { content: "\2713"; color: white; font-size: 9px; line-height: 1; }
        .aw-paper-info .t { font-weight: 600; color: #1a1a1a; line-height: 1.3; }
        .aw-paper-info .m { color: #9ca3af; font-size: 11px; margin-top: 1px; }
        .aw-paper.focus {
            animation: aw-paper-focus 7s ease-in-out infinite;
            border-radius: 6px;
            padding: 8px;
            margin-left: -8px;
            margin-right: -8px;
        }
        .aw-takeaways {
            margin-top: 8px;
            margin-left: 24px;
            padding: 12px;
            background: linear-gradient(135deg, rgba(242,136,70,0.07), rgba(242,136,70,0.02));
            border: 1px solid rgba(242,136,70,0.2);
            border-radius: 8px;
            font-size: 11px;
            color: #374151;
            opacity: 0;
            animation: aw-takeaway-show 7s ease-in-out infinite;
        }
        .aw-takeaways-h { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: #F28846; font-weight: 700; margin-bottom: 6px; }
        .aw-takeaways ul { list-style: none; padding: 0; }
        .aw-takeaways li { padding: 3px 0; line-height: 1.4; }
        .aw-takeaways li::before { content: "\2192"; color: #F28846; margin-right: 6px; }

        /* Videos */
        .aw-video-player {
            position: relative;
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #2d3d34 0%, #1a1a1a 100%);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
            display: flex; align-items: center; justify-content: center;
        }
        .aw-video-player::before {
            content: "";
            position: absolute; inset: 0;
            background:
                radial-gradient(circle at 30% 40%, rgba(242,136,70,0.15), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(171,217,178,0.12), transparent 50%);
        }
        .aw-video-play {
            position: relative;
            width: 56px; height: 56px;
            border-radius: 999px;
            background: rgba(255,255,255,0.95);
            display: flex; align-items: center; justify-content: center;
            color: #F28846;
            font-size: 18px;
            padding-left: 4px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.3);
            animation: aw-play-pulse 2.4s ease-in-out infinite;
        }
        .aw-video-overlay {
            position: absolute; inset: auto 0 0 0;
            padding: 12px 16px;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
            color: white;
        }
        .aw-video-overlay .t { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
        .aw-video-overlay .m { font-size: 10px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
        .aw-video-overlay .dur { background: rgba(0,0,0,0.5); padding: 1px 6px; border-radius: 3px; }
        .aw-video-src {
            position: absolute; top: 10px; right: 10px;
            z-index: 2;
            background: rgba(255,255,255,0.96);
            color: #1a1a1a;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 5px;
            letter-spacing: -0.3px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .aw-vstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
        .aw-vstat { padding: 10px; background: #fafaf9; border: 1px solid #ececec; border-radius: 8px; }
        .aw-vstat .num { font-size: 16px; font-weight: 800; color: #F28846; }
        .aw-vstat .lbl { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
        .aw-vlist {
            margin: 0; padding: 0;
            list-style: none;
            background: white;
            border: 1px solid #ececec;
            border-radius: 8px;
            overflow: hidden;
        }
        .aw-vlist > li { padding: 10px 12px; border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; gap: 10px; font-size: 12px; }
        .aw-vlist > li:last-child { border-bottom: none; }
        .aw-vlist .chev { color: #9ca3af; font-size: 10px; }
        .aw-vlist .tick { width: 14px; height: 14px; border-radius: 999px; border: 1.5px solid #d1d5db; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
        .aw-vlist .tick.done { background: #5b8a63; border-color: #5b8a63; }
        .aw-vlist .tick.done::before { content: "\2713"; color: white; font-size: 8px; line-height: 1; }
        .aw-vlist .label { flex: 1; color: #1a1a1a; font-weight: 500; }
        .aw-vlist .label .sub { color: #9ca3af; font-weight: 400; font-size: 11px; margin-top: 1px; }
        .aw-vlist-src {
            font-size: 9px;
            font-weight: 700;
            color: #1a1a1a;
            background: white;
            border: 1px solid #e5e7eb;
            padding: 2px 7px;
            border-radius: 4px;
            letter-spacing: -0.3px;
            flex-shrink: 0;
            font-family: 'Inter', sans-serif;
        }

        /* Question Bank */
        .aw-qb-progress { display: flex; align-items: center; justify-content: space-between; font-size: 11px; margin-bottom: 14px; }
        .aw-qb-progress .l { color: #6b7280; font-weight: 600; }
        .aw-qb-progress .r { color: #5b8a63; font-weight: 700; }
        .aw-qb-bar { height: 4px; background: #f3f4f6; border-radius: 999px; overflow: hidden; margin-bottom: 16px; }
        .aw-qb-bar-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #F28846, #d4683a);
            border-radius: 999px;
            animation: aw-qb-fill 8s ease-out infinite;
        }
        .aw-qb-stem { font-size: 13px; color: #1a1a1a; line-height: 1.55; margin-bottom: 14px; }
        .aw-qb-opts { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
        .aw-qb-opt {
            padding: 8px 12px;
            background: white;
            border: 1.5px solid #ececec;
            border-radius: 8px;
            font-size: 11.5px;
            color: #374151;
            transition: all 0.4s ease;
        }
        .aw-qb-opt-main { display: flex; align-items: center; gap: 10px; }
        .aw-qb-opt .dot { width: 13px; height: 13px; border-radius: 999px; border: 1.5px solid #d1d5db; flex-shrink: 0; position: relative; }
        .aw-qb-opt .letter { font-weight: 700; color: #9ca3af; font-size: 10.5px; width: 12px; text-align: center; }
        .aw-qb-opt .opt-text { flex: 1; line-height: 1.35; }
        .aw-qb-opt .pct {
            margin-left: auto;
            font-size: 10px;
            color: #9ca3af;
            font-weight: 600;
            opacity: 0;
            animation: aw-qb-reveal-pct 8s ease-out infinite;
            flex-shrink: 0;
        }
        .aw-qb-opt.correct .pct { color: #5b8a63; }
        .aw-qb-bar-line {
            height: 2.5px;
            background: #f3f4f6;
            border-radius: 999px;
            margin-top: 5px;
            overflow: hidden;
            opacity: 0;
            animation: aw-qb-reveal-pct 8s ease-out infinite;
        }
        .aw-qb-bar-line .fill { height: 100%; background: #d1d5db; border-radius: 999px; }
        .aw-qb-opt.correct .aw-qb-bar-line .fill { background: #5b8a63; }
        .aw-qb-opt.correct { animation: aw-qb-correct 8s ease-out infinite; }
        .aw-qb-opt.correct .dot { animation: aw-qb-dot 8s ease-out infinite; }
        .aw-qb-opt.correct .dot::after {
            content: "\2713";
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            color: white;
            font-size: 9px;
            opacity: 0;
            animation: aw-qb-check 8s ease-out infinite;
        }
        .aw-qb-rationale {
            background: linear-gradient(135deg, rgba(86,156,110,0.08), rgba(86,156,110,0.02));
            border: 1px solid rgba(86,156,110,0.25);
            border-radius: 9px;
            padding: 12px;
            font-size: 12px;
            color: #1a1a1a;
            opacity: 0;
            animation: aw-qb-show 8s ease-out infinite;
        }
        .aw-qb-rationale .h {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #5b8a63;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .aw-qb-rationale .cite {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid rgba(86,156,110,0.2);
            font-size: 10px;
            color: #6b7280;
            font-style: italic;
            line-height: 1.45;
        }

        /* Maximus */
        .aw-mx-brand { display: flex; align-items: center; gap: 8px; }
        .aw-mx-brand-avatar,
        .aw-mx-bot-avatar {
            background-image: url("/img/favicon.svg");
            background-size: 70%;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #1a1a1a;
            border-radius: 999px;
            flex-shrink: 0;
        }
        .aw-mx-brand-avatar { width: 24px; height: 24px; }
        .aw-mx-brand-text { font-weight: 800; color: #1a1a1a; letter-spacing: -0.3px; font-size: 12px; }
        .aw-mx-chat { display: flex; flex-direction: column; gap: 10px; }
        .aw-mx-user {
            background: rgba(242,136,70,0.1);
            border: 1px solid rgba(242,136,70,0.25);
            border-radius: 12px;
            padding: 10px 12px;
            font-size: 12px;
            color: #1a1a1a;
            line-height: 1.5;
            text-align: left;
        }
        .aw-mx-bot { display: flex; gap: 8px; align-items: flex-start; }
        .aw-mx-bot-avatar { width: 28px; height: 28px; margin-top: 2px; }
        .aw-mx-msg { background: white; border: 1px solid #ececec; border-radius: 12px; padding: 10px 12px; font-size: 12px; color: #1a1a1a; flex: 1; }
        .aw-mx-thinking { display: flex; gap: 3px; margin-bottom: 8px; }
        .aw-mx-thinking span {
            width: 5px; height: 5px;
            border-radius: 999px;
            background: #9ca3af;
            animation: aw-mx-dot 1.1s ease-in-out infinite;
        }
        .aw-mx-thinking span:nth-child(2) { animation-delay: 0.18s; }
        .aw-mx-thinking span:nth-child(3) { animation-delay: 0.36s; }
        .aw-mx-text {
            font-size: 13px;
            color: #1a1a1a;
            line-height: 1.6;
            opacity: 0;
            animation: aw-mx-text-in 10s ease-in-out infinite;
        }
        .aw-mx-text strong { color: #F28846; font-weight: 700; }
        .aw-mx-cites {
            display: flex; flex-wrap: wrap; gap: 5px;
            margin-top: 10px;
            opacity: 0;
            animation: aw-mx-cites-in 10s ease-in-out infinite;
        }
        .aw-mx-cite {
            display: inline-flex; align-items: center; gap: 5px;
            background: white;
            border: 1px solid #ececec;
            border-radius: 999px;
            padding: 3px 9px 3px 4px;
            font-size: 10px;
            color: #4b5563;
            font-weight: 600;
        }
        .aw-mx-cite-num {
            width: 14px; height: 14px;
            border-radius: 999px;
            background: rgba(242,136,70,0.15);
            color: #F28846;
            font-weight: 800;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 9px;
        }
        .aw-mx-cite .ty { color: #9ca3af; font-weight: 500; }
        .aw-mx-res-h {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #F28846;
            font-weight: 700;
            margin: 14px 0 8px;
            display: flex; align-items: center; gap: 5px;
            opacity: 0;
            animation: aw-mx-res-in 10s ease-in-out infinite;
        }
        .aw-mx-resources {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            opacity: 0;
            animation: aw-mx-res-in 10s ease-in-out infinite;
        }
        .aw-mx-res { background: white; border: 1px solid #ececec; border-radius: 9px; padding: 9px 11px; display: flex; align-items: center; gap: 9px; min-width: 0; }
        .aw-mx-res-icon { width: 28px; height: 28px; border-radius: 7px; background: rgba(242,136,70,0.1); color: #F28846; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
        .aw-mx-res-info { min-width: 0; flex: 1; }
        .aw-mx-res-info .t { font-size: 11px; font-weight: 600; color: #1a1a1a; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .aw-mx-res-info .m { font-size: 9.5px; color: #9ca3af; margin-top: 1px; }
        .aw-mx-disclaim {
            border-top: 1px solid #f3f4f6;
            padding-top: 10px;
            margin-top: 12px;
            font-size: 10px;
            color: #9ca3af;
            font-style: italic;
            line-height: 1.5;
            display: flex; gap: 6px; align-items: flex-start;
            opacity: 0;
            animation: aw-mx-disclaim-in 10s ease-in-out infinite;
        }
        .aw-mx-disclaim i { color: #9ca3af; margin-top: 2px; font-size: 9px; }
        .aw-mx-disclaim a { color: #F28846; text-decoration: none; font-style: normal; font-weight: 600; }

        /* Oral Boards */
        .aw-boards-back { font-size: 12px; font-weight: 600; color: #F28846; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
        .aw-boards-back i { font-size: 10px; }
        .aw-boards-section-title {
            font-family: 'Lora', Georgia, serif;
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            text-align: center;
            letter-spacing: -0.4px;
            margin: 10px 0 14px;
        }
        .aw-boards-divider { height: 1px; background: #e5e7eb; margin: 0 0 18px; }
        .aw-boards-divider.warm { height: 2px; background: rgba(242,136,70,0.28); margin: 18px 0 14px; }
        .aw-boards-h { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; letter-spacing: -0.2px; }
        .aw-boards-h.underline { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
        .aw-boards-ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; color: #374151; }
        .aw-boards-ul.circle { list-style: circle; padding-left: 38px; margin-bottom: 10px; }
        .aw-boards-ul li { font-size: 13px; line-height: 1.7; padding: 1px 0; }
        .aw-boards-ul li::marker { color: #1a1a1a; }
        .aw-boards-next { font-family: 'Lora', Georgia, serif; font-size: 18px; font-weight: 600; color: #1a1a1a; letter-spacing: -0.3px; opacity: 0.55; }

        /* ────────────────────────────────────────────────────────
           KEYFRAMES — for all .aw-* animations
           ──────────────────────────────────────────────────────── */
        @keyframes aw-hl-sweep {
            0%, 10%   { background-size: 0%   78%; }
            42%, 100% { background-size: 100% 78%; }
        }
        @keyframes aw-dot-1 { 0%, 32% { background: #F28846; width: 18px; } 33%, 100% { background: #d4d4d4; width: 6px; } }
        @keyframes aw-dot-2 { 0%, 32%, 67%, 100% { background: #e5e7eb; width: 6px; } 33%, 66% { background: #F28846; width: 18px; } }
        @keyframes aw-dot-3 { 0%, 66% { background: #e5e7eb; width: 6px; } 67%, 100% { background: #F28846; width: 18px; } }
        @keyframes aw-card-flip {
            0%, 40% { transform: rotateY(0deg); }
            50%, 90% { transform: rotateY(180deg); }
            100% { transform: rotateY(360deg); }
        }
        @keyframes aw-rate-good {
            0%, 55%   { background: white; border-color: #e5e7eb; color: #4b5563; transform: scale(1); }
            65%, 85%  { background: rgba(86,156,110,0.1); border-color: rgba(86,156,110,0.4); color: #5b8a63; transform: scale(1.04); }
            95%, 100% { background: white; border-color: #e5e7eb; color: #4b5563; transform: scale(1); }
        }
        @keyframes aw-paper-focus {
            0%, 25%, 100% { background: transparent; }
            45%, 80%      { background: rgba(242,136,70,0.06); }
        }
        @keyframes aw-takeaway-show {
            0%, 25%, 95%, 100% { opacity: 0; }
            45%, 80%           { opacity: 1; }
        }
        @keyframes aw-play-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 6px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(242,136,70, 0.5); }
            50%      { transform: scale(1.08); box-shadow: 0 6px 30px rgba(0,0,0,0.3), 0 0 0 14px rgba(242,136,70, 0); }
        }
        @keyframes aw-qb-fill { 0% { width: 0%; } 30% { width: 20%; } 55%, 100% { width: 60%; } }
        @keyframes aw-qb-reveal-pct { 0%, 50% { opacity: 0; } 65%, 100% { opacity: 1; } }
        @keyframes aw-qb-correct {
            0%, 45% { border-color: #ececec; background: white; }
            55%, 100% { border-color: rgba(86,156,110,0.5); background: rgba(86,156,110,0.06); }
        }
        @keyframes aw-qb-dot {
            0%, 45% { border-color: #d1d5db; background: white; }
            55%, 100% { border-color: #5b8a63; background: #5b8a63; }
        }
        @keyframes aw-qb-check { 0%, 50% { opacity: 0; } 60%, 100% { opacity: 1; } }
        @keyframes aw-qb-show {
            0%, 55%   { opacity: 0; }
            70%, 100% { opacity: 1; }
        }
        @keyframes aw-mx-think { 0%, 8% { opacity: 0; } 12%, 22% { opacity: 1; } 26%, 100% { opacity: 0; height: 0; margin: 0; } }
        @keyframes aw-mx-dot { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-3px); opacity: 1; } }
        @keyframes aw-mx-text-in { 0%, 22% { opacity: 0; transform: translateY(4px); } 28%, 100% { opacity: 1; transform: translateY(0); } }
        @keyframes aw-mx-cites-in { 0%, 40% { opacity: 0; transform: translateY(4px); } 48%, 100% { opacity: 1; transform: translateY(0); } }
        @keyframes aw-mx-res-in { 0%, 54% { opacity: 0; transform: translateY(4px); } 62%, 100% { opacity: 1; transform: translateY(0); } }
        @keyframes aw-mx-disclaim-in { 0%, 62% { opacity: 0; } 70%, 100% { opacity: 1; } }

        /* ────────────────────────────────────────────────────────
           COMPETENCY (snapshot vs continuous)
           ──────────────────────────────────────────────────────── */
        .lp-competency { background: var(--bg-white); }
        .lp-comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .lp-comparison-card {
            border-radius: 20px;
            padding: 36px 32px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        .lp-comparison-card.old { background: var(--bg-light); }
        .lp-comparison-card.aroms {
            background: linear-gradient(135deg, rgba(242,136,70,0.04), rgba(242,136,70,0.02));
            border-color: rgba(242,136,70,0.25);
        }
        .lp-comparison-card.aroms::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--primary);
        }
        .lp-comparison-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .lp-comparison-card.aroms .lp-comparison-label { color: var(--primary); }
        .lp-comparison-title { font-size: 22px; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.5px; }
        .lp-comparison-list { list-style: none; }
        .lp-comparison-list li {
            font-size: 14.5px;
            color: var(--text-medium);
            line-height: 1.6;
            padding: 11px 0 11px 28px;
            position: relative;
        }
        .lp-comparison-card.old .lp-comparison-list li::before {
            content: '\2715';
            font-weight: 700;
            position: absolute;
            left: 0; top: 12px;
            color: #c94a4a;
            font-size: 14px;
            line-height: 1;
        }
        .lp-comparison-card.aroms .lp-comparison-list li::before {
            content: '\2714';
            font-weight: 700;
            position: absolute;
            left: 0; top: 12px;
            color: #4a8f24;
            font-size: 14px;
            line-height: 1;
        }

        /* ────────────────────────────────────────────────────────
           REACH (proof points)
           ──────────────────────────────────────────────────────── */
        .lp-reach { background: var(--bg-light); }
        .lp-reach-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        .lp-reach-card {
            background: var(--bg-white);
            border-radius: 18px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .lp-reach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
        .lp-reach-icon { font-size: 24px; color: var(--primary); margin-bottom: 16px; }
        .lp-reach-stat {
            font-size: clamp(28px, 3.6vw, 40px);
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -1px;
            line-height: 1;
            margin-bottom: 8px;
        }
        .lp-reach-label { font-size: 13.5px; color: var(--text-light); line-height: 1.5; }

        /* ────────────────────────────────────────────────────────
           PARTNERS
           ──────────────────────────────────────────────────────── */
        .lp-partners { background: var(--bg-white); }
        .lp-partners-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 48px 64px;
            margin-top: 48px;
        }
        .lp-partner-logo {
            height: 52px;
            width: auto;
            opacity: 0.65;
            filter: grayscale(40%);
            transition: opacity 0.3s, filter 0.3s, transform 0.3s;
        }
        .lp-partner-logo:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }

        /* ────────────────────────────────────────────────────────
           PRICING
           ──────────────────────────────────────────────────────── */
        .lp-pricing { background: var(--bg-light); }
        .lp-pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: stretch;
        }
        .lp-pricing-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 36px 32px;
            border: 1px solid var(--border);
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        .lp-pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .lp-pricing-card.highlight {
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(242,136,70,0.12);
        }
        .lp-pricing-card.highlight:hover {
            box-shadow: 0 20px 60px rgba(242,136,70,0.18);
        }
        .lp-pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 100px;
            box-shadow: 0 4px 12px rgba(242,136,70,0.3);
            white-space: nowrap;
        }
        .lp-pricing-tier {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 6px;
        }
        .lp-pricing-tier-sub {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 24px;
        }
        .lp-pricing-price-row {
            display: flex;
            align-items: baseline;
            gap: 2px;
            margin-bottom: 6px;
        }
        .lp-pricing-currency {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
        }
        .lp-pricing-price {
            font-size: 52px;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -2px;
            line-height: 1;
        }
        .lp-pricing-duration {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 500;
            margin-left: 4px;
        }
        .lp-pricing-duration sup {
            font-size: 11px;
            color: var(--primary);
            margin-left: 1px;
            top: -0.7em;
        }
        .lp-pricing-total {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 24px;
        }
        .lp-pricing-cta {
            width: 100%;
            justify-content: center;
            margin-bottom: 24px;
        }
        .lp-pricing-bullets {
            list-style: none;
            padding: 0;
            margin: 0;
            flex: 1;
        }
        .lp-pricing-bullets li {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.5;
            padding: 9px 0 9px 28px;
            position: relative;
        }
        .lp-pricing-bullets li::before {
            content: '\2714';
            font-weight: 700;
            position: absolute;
            left: 0; top: 10px;
            color: var(--primary);
            font-size: 11px;
            line-height: 1;
            width: 18px; height: 18px;
            background: rgba(242,136,70,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lp-pricing-disclaimer {
            font-size: 11px;
            color: var(--text-light);
            margin-top: 14px;
            padding-top: 4px;
        }
        .lp-pricing-disclaimer sup { color: var(--primary); font-weight: 700; }
        .lp-pricing-trust {
            text-align: center;
            margin-top: 48px;
            font-size: 16px;
            color: var(--text-medium);
        }
        .lp-pricing-trust .accent {
            color: var(--primary);
            font-weight: 700;
        }

        /* Residency block (sits at bottom of pricing section) */
        .lp-residency-block {
            margin-top: 56px;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: clamp(36px, 5vw, 56px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(32px, 5vw, 64px);
            align-items: center;
            box-shadow: var(--shadow-soft);
        }
        .lp-residency-text .lp-eyebrow { margin-bottom: 12px; }
        .lp-residency-heading {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            letter-spacing: -0.6px;
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .lp-residency-desc {
            font-size: 15.5px;
            line-height: 1.65;
            color: var(--text-medium);
        }
        .lp-residency-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .lp-residency-action {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            background: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text-dark);
            transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
        }
        .lp-residency-action:hover {
            border-color: rgba(242,136,70,0.4);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.06);
        }
        .lp-residency-action-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(242,136,70,0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .lp-residency-action-text { flex: 1; min-width: 0; }
        .lp-residency-action-title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.2px;
            margin-bottom: 2px;
        }
        .lp-residency-action-sub {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.4;
        }
        .lp-residency-action-arrow {
            color: var(--text-muted);
            font-size: 13px;
            transition: color 0.25s, transform 0.25s;
            flex-shrink: 0;
        }
        .lp-residency-action:hover .lp-residency-action-arrow {
            color: var(--primary);
            transform: translateX(3px);
        }

        /* ────────────────────────────────────────────────────────
           CTA
           ──────────────────────────────────────────────────────── */
        .lp-cta {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .lp-cta::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(242,136,70,0.14) 0%, rgba(242,136,70,0) 60%);
            pointer-events: none;
        }
        .lp-cta .lp-container { position: relative; z-index: 1; }
        .lp-cta-heading {
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 800;
            line-height: 1.18;
            letter-spacing: -1px;
            margin: 0 auto 18px;
            max-width: 760px;
        }
        .lp-cta-sub {
            font-size: clamp(16px, 1.6vw, 19px);
            color: rgba(255,255,255,0.7);
            margin: 0 auto 36px;
            max-width: 560px;
        }

        /* ────────────────────────────────────────────────────────
           FAQ
           ──────────────────────────────────────────────────────── */
        .lp-faq { background: var(--bg-white); }
        .lp-faq-list { max-width: 780px; margin: 0 auto; }
        .lp-faq-item { border-bottom: 1px solid var(--border); }
        .lp-faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-family: inherit;
            font-size: clamp(16px, 1.8vw, 18px);
            font-weight: 600;
            color: var(--text-dark);
            padding: 24px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            letter-spacing: -0.2px;
        }
        .lp-faq-question-text { flex: 1; }
        .lp-faq-icon {
            position: relative;
            width: 28px; height: 28px;
            background: rgba(242,136,70,0.12);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .lp-faq-icon::before,
        .lp-faq-icon::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            background: var(--primary);
            border-radius: 1px;
            transition: transform 0.3s ease;
        }
        .lp-faq-icon::before {
            width: 12px; height: 2px;
            transform: translate(-50%, -50%);
        }
        .lp-faq-icon::after {
            width: 2px; height: 12px;
            transform: translate(-50%, -50%);
        }
        .lp-faq-item.open .lp-faq-icon::after {
            transform: translate(-50%, -50%) scaleY(0);
        }
        .lp-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            font-size: 15.5px;
            line-height: 1.75;
            color: var(--text-medium);
        }
        .lp-faq-item.open .lp-faq-answer { max-height: 1200px; padding: 0 0 24px 0; }

        /* ────────────────────────────────────────────────────────
           FOOTER
           ──────────────────────────────────────────────────────── */
        .lp-footer {
            background: #111;
            color: rgba(255,255,255,0.6);
            padding: 72px 40px 40px;
        }
        .lp-footer-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .lp-footer-brand-name {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
        }
        .lp-footer-brand-name img {
            height: 34px;
            width: auto;
            display: block;
        }
        .lp-footer-tagline { font-size: 14px; line-height: 1.6; max-width: 280px; margin-bottom: 18px; }
        .lp-footer-address { font-size: 13px; line-height: 1.6; }
        .lp-footer-col-title {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 18px;
        }
        .lp-footer-links { list-style: none; }
        .lp-footer-links li { margin-bottom: 10px; }
        .lp-footer-links a {
            font-size: 14px;
            color: rgba(255,255,255,0.55);
            transition: color 0.2s;
        }
        .lp-footer-links a:hover { color: var(--primary); }
        .lp-footer-bottom {
            max-width: 1180px;
            margin: 0 auto;
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 12.5px;
            color: rgba(255,255,255,0.4);
        }
        .lp-footer-social { display: flex; gap: 16px; }
        .lp-footer-social a {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            font-size: 15px;
            transition: background 0.2s, color 0.2s;
        }
        .lp-footer-social a:hover { background: var(--primary); color: #fff; }

        /* ────────────────────────────────────────────────────────
           FADE-IN ANIMATION
           ──────────────────────────────────────────────────────── */
        .lp-fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .lp-fade-up.in-view { opacity: 1; transform: translateY(0); }

        /* ────────────────────────────────────────────────────────
           RESPONSIVE
           ──────────────────────────────────────────────────────── */
        @media (max-width: 960px) {
            .lp-nav { padding: 14px 20px; }
            .lp-nav.scrolled { padding: 10px 20px; }
            .lp-nav-links { display: none; }
            .lp-nav-toggle { display: block; }
            .lp-nav-links.open {
                display: flex;
                position: absolute;
                top: 100%; left: 0; right: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(14px);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 12px 20px 16px;
                border-bottom: 1px solid rgba(0,0,0,0.06);
            }
            .lp-nav-links.open .lp-nav-link {
                padding: 14px 4px;
                border-bottom: 1px solid rgba(0,0,0,0.04);
                font-size: 15px;
            }
            .lp-nav-links.open .lp-nav-cta {
                margin-top: 12px;
                text-align: center;
            }
            .lp-hero { padding: 140px 24px 90px; }
            .lp-section { padding: 80px 24px; }
            .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
            .lp-features-grid .lp-feature-card.highlight { grid-column: auto; }
            .lp-showcase {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 32px 36px;
                align-items: start;
            }
            .lp-showcase-video-wrap {
                grid-column: 1 / -1;
                order: -1;
                margin-bottom: 12px;
            }
            .lp-showcase-video { max-width: 280px; }
            .lp-showcase-col.left .lp-showcase-feature,
            .lp-showcase-col.right .lp-showcase-feature { justify-content: flex-start; text-align: left; }
            .lp-showcase-col.left .lp-showcase-text { order: 2; }
            .lp-showcase-col.left .lp-feature-icon { order: 1; }
            .lp-showcase-col.left .lp-showcase-desc { margin-left: 0; }
            .lp-showcase-desc { max-width: none; }
            .lp-reach-grid { grid-template-columns: repeat(2, 1fr); }
            .lp-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
            .lp-residency-block { grid-template-columns: 1fr; gap: 32px; }
            .lp-mission-grid,
            .lp-deep-grid,
            .lp-comparison-grid { grid-template-columns: 1fr; }
            .lp-deep-grid.reverse .lp-deep-content,
            .lp-deep-grid .lp-deep-content { order: 1; }
            .lp-deep-grid.reverse .lp-deep-visual,
            .lp-deep-grid .lp-deep-visual { order: 2; }
            .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
        }
        @media (max-width: 600px) {
            .lp-features-grid { grid-template-columns: 1fr; }
            .lp-showcase { grid-template-columns: 1fr; }
            .lp-pillars { grid-template-columns: 1fr; }
            .lp-reach-grid { grid-template-columns: 1fr; }
            .lp-hero-stats { gap: 28px; }
            .lp-footer-grid { grid-template-columns: 1fr; }
        }

/* ============================================================
   NAV DROPDOWN (Company)
   ============================================================ */
.lp-nav-dropdown { position: relative; }
.lp-nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.lp-nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%; left: 0; right: 0; height: 18px;
}
.lp-nav-dropdown-menu {
    position: absolute;
    top: 100%; left: 50%;
    margin-top: 12px;
    transform: translateX(-50%) translateY(6px);
    min-width: 190px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.14);
    padding: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}
.lp-nav-dropdown:hover .lp-nav-dropdown-menu,
.lp-nav-dropdown.open .lp-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.lp-nav-dropdown-item {
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.lp-nav-dropdown-item:hover { background: var(--bg-light); color: var(--primary); }

/* ============================================================
   PAGE HERO (About / Team / Partners / Donate)
   ============================================================ */
.lp-page-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 160px 40px 84px;
    text-align: center;
    overflow: hidden;
}
.lp-page-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -150px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,136,70,0.18) 0%, rgba(242,136,70,0) 60%);
    pointer-events: none;
}
.lp-page-hero .lp-container { position: relative; z-index: 1; }
.lp-page-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 14px;
}
.lp-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}
.lp-page-hero p {
    margin: 18px auto 0;
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 660px;
    line-height: 1.65;
}
.lp-page-hero .lp-btn { margin-top: 28px; }

/* ============================================================
   PROSE (About story)
   ============================================================ */
.lp-prose { max-width: 760px; margin: 0 auto; }
.lp-prose p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 22px;
}
.lp-prose p:last-child { margin-bottom: 0; }

/* ============================================================
   QUOTE / CTA block
   ============================================================ */
.lp-quote { background: var(--bg-light); text-align: center; }
.lp-quote blockquote {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.9rem);
    font-weight: 600;
    line-height: 1.5;
    max-width: 840px;
    margin: 0 auto;
    color: var(--text-dark);
}
.lp-quote cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================================
   TEAM
   ============================================================ */
.lp-team-section { margin-bottom: clamp(48px, 7vw, 80px); }
.lp-team-section:last-child { margin-bottom: 0; }
.lp-team-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}
.lp-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 36px 24px;
    justify-items: center;
    max-width: 860px;
    margin: 0 auto;
}
.lp-team-grid.narrow { max-width: 720px; }
.lp-team-member { text-align: center; max-width: 220px; }
.lp-team-member img {
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-soft);
}
.lp-team-name { font-size: 16px; font-weight: 700; letter-spacing: -0.2px; }
.lp-team-role { font-size: 13.5px; color: var(--text-light); margin-top: 4px; }
.lp-team-list {
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
    columns: 2;
    column-gap: 48px;
}
.lp-team-list li {
    padding: 9px 2px;
    font-size: 15px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border);
    break-inside: avoid;
}
.lp-team-list li strong { color: var(--text-dark); font-weight: 700; }

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.lp-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.lp-partner-logos img { max-width: 170px; height: auto; }

/* ============================================================
   DONATE GALLERY + LIGHTBOX
   ============================================================ */
.lp-donate-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.lp-donate-intro img { max-width: 220px; margin: 0 auto 24px; }
.lp-donate-intro p { font-size: 17px; line-height: 1.7; color: var(--text-medium); margin-bottom: 24px; }
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.lp-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: var(--bg-light);
}
.lp-gallery-item img,
.lp-gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lp-gallery-item:hover img,
.lp-gallery-item:hover video { transform: scale(1.05); }
.lp-gallery-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 30px;
    background: rgba(0,0,0,0.25);
    pointer-events: none;
}
.lp-lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
}
.lp-lightbox.active { display: flex; }
.lp-lightbox-content { max-width: 90vw; max-height: 88vh; display: flex; }
.lp-lightbox-content img,
.lp-lightbox-content video { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lp-lightbox-close,
.lp-lightbox-prev,
.lp-lightbox-next {
    position: absolute; color: #fff; cursor: pointer; user-select: none;
    background: none; border: none; line-height: 1;
}
.lp-lightbox-close { top: 22px; right: 30px; font-size: 44px; }
.lp-lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); font-size: 50px; }
.lp-lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); font-size: 50px; }

/* ============================================================
   RESPONSIVE — content pages + mobile nav dropdown
   ============================================================ */
@media (max-width: 960px) {
    .lp-page-hero { padding: 130px 24px 64px; }
    .lp-nav-dropdown { width: 100%; }
    .lp-nav-dropdown::after { display: none; }
    .lp-nav-dropdown-toggle { width: 100%; justify-content: space-between; }
    .lp-nav-dropdown-menu {
        position: static;
        transform: none;
        margin-top: 2px;
        min-width: 0;
        padding: 0 0 4px 12px;
        border: none;
        box-shadow: none;
        display: none;
        transition: none;
    }
    .lp-nav-dropdown:hover .lp-nav-dropdown-menu { display: none; }
    .lp-nav-dropdown.open .lp-nav-dropdown-menu { display: flex; }
    .lp-nav-dropdown-item { padding: 12px 4px; }
}
@media (max-width: 600px) {
    .lp-team-list { columns: 1; }
    .lp-partner-logos { gap: 32px; }
}

/* ============================================================
   COURSE OVERVIEW
   ============================================================ */
.lp-co-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-dark);
    margin-bottom: clamp(44px, 6vw, 68px);
}
.lp-co-intro a { color: var(--primary); }
.lp-co-intro a:hover { color: var(--primary-dark); }
.lp-unit {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding: clamp(40px, 6vw, 64px) 0;
    border-top: 1px solid var(--border);
}
.lp-unit:first-of-type { border-top: none; padding-top: 0; }
.lp-unit-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--primary); margin-bottom: 12px;
}
.lp-unit-title {
    font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.6px;
    line-height: 1.15; margin-bottom: 16px;
}
.lp-unit-text { font-size: 16px; line-height: 1.75; color: var(--text-medium); }
.lp-unit-material {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
}
.lp-unit-material-title {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-dark); margin-bottom: 14px;
}
.lp-unit-material-title.mt { margin-top: 22px; }
.lp-unit-material-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}
.lp-unit-material-list li {
    font-size: 14px; color: var(--text-medium); padding: 4px 0; line-height: 1.45;
}
.lp-unit-material-list li::marker { color: var(--text-muted); font-weight: 600; }
.lp-unit-material-list li a { color: var(--primary); font-weight: 600; }
.lp-unit-material-list li a:hover { color: var(--primary-dark); }
@media (max-width: 900px) {
    .lp-unit { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   LEGAL PAGES (disclaimer / privacy / terms)
   ============================================================ */
.lp-legal { max-width: 820px; margin: 0 auto; }
.lp-legal h4, .lp-legal h5 { color: var(--text-dark); }
.lp-legal h5 { font-size: 14px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.lp-legal h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.lp-legal h4[style*="red"] { color: var(--primary) !important; }
.lp-legal p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 18px;
}
.lp-legal u { text-decoration: underline; color: var(--text-dark); font-weight: 600; }
.lp-legal a { color: var(--primary); font-weight: 600; word-break: break-word; }
.lp-legal a:hover { color: var(--primary-dark); }

/* ============================================================
   RESOURCES
   ============================================================ */
.lp-emphasize { color: var(--primary); font-weight: 700; }
.lp-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(28px, 4vw, 48px);
    margin-bottom: clamp(28px, 4vw, 48px);
}
.lp-resources-grid:last-child { margin-bottom: 0; }
.lp-resource-group-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.lp-resource-list { list-style: none; }
.lp-resource-list > li {
    font-size: 14.5px;
    line-height: 1.5;
    padding: 8px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border);
}
.lp-resource-list > li:last-child { border-bottom: none; }
.lp-resource-list a { color: var(--text-dark); font-weight: 500; transition: color 0.15s; }
.lp-resource-list a:hover { color: var(--primary); }
.lp-resource-sublist { list-style: none; margin: 6px 0 2px 0; }
.lp-resource-sublist li { font-size: 14px; color: var(--text-light); padding: 3px 0; }
