        body {
            margin: 0;
            font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Hero Background ── */
        .hero-bg {
            background:
                radial-gradient(circle at center, rgba(91,110,225,.18) 0%, transparent 45%),
                radial-gradient(circle at bottom right, rgba(91,110,225,.06) 0%, transparent 55%),
                #FAFBFD;
        }

        /* ── Ring Trace ── */
        .ring-trace {
            animation: ring-drift 12s linear infinite;
        }
        @keyframes ring-drift {
            to { stroke-dashoffset: -13; }
        }

        /* ── Executive Outcomes Cards ── */
        .outcome-card {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 0 0 1px rgba(91,110,225,0.03);
            transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }
        .outcome-card::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 17px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(91,110,225,0.08), rgba(255,255,255,0.4));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .outcome-card:hover {
            box-shadow: 0 0 40px rgba(91,110,225,0.12), 0 12px 48px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .outcome-card:hover::after {
            opacity: 1;
            background: linear-gradient(135deg, rgba(91,110,225,0.25), rgba(91,110,225,0.08), rgba(91,110,225,0.25));
        }
        .outcome-card .icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 0 0 1px rgba(91,110,225,0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .outcome-card:hover .icon-circle {
            box-shadow: 0 0 30px rgba(91,110,225,0.20), 0 8px 24px rgba(0,0,0,0.06);
            transform: scale(1.08);
        }
        .outcome-card .icon-circle .material-symbols-outlined {
            font-size: 22px;
            color: #5B6EE1;
        }
        .outcome-card .metric {
            font-size: 44px;
            font-weight: 800;
            color: #172033;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 8px;
        }
        .outcome-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #172033;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }
        .outcome-card:hover h3 {
            color: #5B6EE1;
        }
        .outcome-card p {
            font-size: 14px;
            color: #5B6F8A;
            line-height: 1.6;
        }

        /* ── Outer Node Cards ── */
        .orbit-node {
            position: absolute;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            cursor: default;
            z-index: 2;
            animation: node-float-subtle 5s ease-in-out infinite;
        }
        .orbit-node:nth-child(2) { animation-delay: 0.3s; animation-duration: 5.6s; }
        .orbit-node:nth-child(3) { animation-delay: 0.6s; animation-duration: 4.8s; }
        .orbit-node:nth-child(4) { animation-delay: 0.9s; animation-duration: 5.2s; }
        .orbit-node:nth-child(5) { animation-delay: 1.2s; animation-duration: 6s; }
        .orbit-node:nth-child(6) { animation-delay: 1.5s; animation-duration: 4.4s; }
        .orbit-node:nth-child(7) { animation-delay: 1.8s; animation-duration: 5.4s; }
        .orbit-node:nth-child(8) { animation-delay: 2.1s; animation-duration: 5s; }
        @keyframes node-float-subtle {
            0%, 100% { transform: translate(-50%, calc(-50% - 2px)); }
            50% { transform: translate(-50%, calc(-50% + 2px)); }
        }
        .orbit-node .icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow: 0 8px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(91,110,225,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .orbit-node:hover .icon {
            box-shadow: 0 0 40px rgba(91,110,225,0.25), 0 8px 32px rgba(0,0,0,0.08);
            transform: scale(1.1);
        }
        .orbit-node .icon svg {
            width: 18px;
            height: 18px;
            color: #5B6EE1;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }
        .orbit-node h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #172033;
            line-height: 1;
            letter-spacing: 0.01em;
            text-align: center;
            transition: color 0.3s ease;
        }
        .orbit-node:hover h3 {
            color: #5B6EE1;
        }
        .orbit-node p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 8px;
            font-weight: 500;
            color: #7A8390;
            line-height: 1;
            letter-spacing: 0.02em;
            text-align: center;
        }

        /* ── Center Orb ── */
        .orbit-center {
            position: absolute;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255,255,255,0.70);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow: 0 20px 60px rgba(91,110,225,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: center-breathe 4s ease-in-out infinite;
        }
        .orbit-center::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 50%;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(91,110,225,0.15), rgba(255,255,255,0.6));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
            pointer-events: none;
        }
        @keyframes center-breathe {
            0%, 100% { box-shadow: 0 20px 60px rgba(91,110,225,0.18), 0 0 80px rgba(91,110,225,0); }
            50% { box-shadow: 0 20px 80px rgba(91,110,225,0.28), 0 0 100px rgba(91,110,225,0.10); }
        }

        /* ── Section 2: Platform Diagram ── */
        .platform-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 32px;
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 0 0 1px rgba(91,110,225,0.04);
            padding: 28px 36px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .platform-visible .platform-center {
            opacity: 1;
        }

        .pillar-card {
            position: absolute;
            transform: translate(-50%, -50%);
            z-index: 5;
            background: rgba(255,255,255,0.90);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 0 0 1px rgba(91,110,225,0.03);
            padding: 16px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: 0;
            transform: translate(-50%, calc(-50% + 16px));
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .platform-visible .pillar-card {
            opacity: 1;
            transform: translate(-50%, -50%);
            transition-delay: calc(var(--order) * 0.12s + 0.2s);
        }
        .pillar-card h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #172033;
            line-height: 1;
        }
        .pillar-card p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 10px;
            font-weight: 500;
            color: #7A8390;
            line-height: 1;
        }

        .platform-lines path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
        }
        .platform-visible .platform-lines path {
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 1.2s ease;
            transition-delay: 1s;
        }

        .platform-particles {
            opacity: 0;
        }
        .platform-visible .platform-particles {
            opacity: 1;
            transition: opacity 0.3s ease;
            transition-delay: 2.2s;
        }

        /* ── Existing Hero Content Classes ── */
        .hero-glow {
            position: absolute;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(91,110,225,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .btn-premium {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 10px;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-premium-primary {
            background: #172033;
            color: #fff;
            box-shadow: 0 4px 14px rgba(23,32,51,0.12);
        }
        .btn-premium-primary:hover {
            background: #2a3a5c;
            box-shadow: 0 6px 24px rgba(23,32,51,0.2);
            transform: translateY(-1px);
        }
        .btn-premium-ghost {
            background: transparent;
            color: #5B6EE1;
            border: 1.5px solid rgba(91,110,225,0.25);
        }
        .btn-premium-ghost:hover {
            background: rgba(91,110,225,0.04);
            border-color: rgba(91,110,225,0.4);
        }
        .badge-premium {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.06em;
            padding: 8px 16px;
            border-radius: 100px;
            background: rgba(91,110,225,0.06);
            color: #5B6EE1;
            border: 1px solid rgba(91,110,225,0.12);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .badge-premium .icon { font-size: 14px; }

        .hero-heading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(36px, 4.5vw, 60px);
            font-weight: 800;
            letter-spacing: -0.035em;
            line-height: 1.08;
            color: #172033;
        }
        .hero-subheading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #5B6F8A;
            max-width: 520px;
        }
        .hero-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: #5B6EE1;
        }

        @media (max-width: 1023px) {
            .hero-heading { font-size: 32px; }
            .hero-subheading { font-size: 15px; }
            .btn-premium { font-size: 13px; padding: 12px 24px; }
            .orbit-node,
            .orbit-center,
            .hero-glow { display: none; }
        }
        .app-container {
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: 40px;
        }
        @keyframes subtle-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        .animate-float {
            animation: subtle-float 6s ease-in-out infinite;
        }
        @media (max-width: 768px) {
            .app-container { padding-inline: 20px; }
        }
        .material-symbols-outlined {
            font-family: 'Material Symbols Outlined';
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        /* ── Premium Dropdown ── */
        .nav-item-dropdown { position: relative; }
        .nav-item-dropdown .dropdown-trigger {
            background: none; border: none; cursor: pointer; font-family: inherit; padding: 0;
        }
        .nav-item-dropdown:hover .chevron { transform: rotate(180deg); }

        .dropdown-panel {
            position: absolute; top: calc(100% + 8px); left: 50%;
            transform: translateX(-50%) translateY(4px);
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
            opacity: 0; visibility: hidden;
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 200;
        }
        .nav-item-dropdown:hover .dropdown-panel {
            opacity: 1; visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-item {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 10px 14px; border-radius: 10px;
            text-decoration: none; transition: background 0.2s ease;
        }
        .dropdown-item:hover { background: #F8FAFC; }
        .dropdown-item-simple {
            display: block;
            padding: 8px 14px; border-radius: 8px;
            font-size: 14px; color: #475569;
            text-decoration: none; transition: all 0.2s ease;
        }
        .dropdown-item-simple:hover { background: #F8FAFC; color: #0F172A; }

        /* ── Mobile Menu ── */
        .mobile-toggle {
            display: none;
            flex-direction: column; justify-content: center;
            gap: 5px; width: 36px; height: 36px;
            background: none; border: none; cursor: pointer;
            padding: 6px; flex-shrink: 0;
        }
        .mobile-toggle span {
            display: block; width: 22px; height: 2px;
            background: #3B4F6B; border-radius: 2px;
            transition: all 0.3s ease;
        }
        .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.4);
            z-index: 98;
        }
        .mobile-overlay.open { display: block; }

        .mobile-menu {
            display: none;
            flex-direction: column;
            position: fixed; top: 0; right: 0;
            width: 320px; height: 100vh; height: 100dvh;
            background: #fff;
            z-index: 99;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        }
        .mobile-menu.open { display: flex; transform: translateX(0); }
        .mobile-menu-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid #E2E8F0;
        }
        .mobile-menu-close {
            background: none; border: none;
            color: #3B4F6B; cursor: pointer;
            font-size: 22px; padding: 4px;
        }
        .mobile-menu-items { padding: 8px 0; flex: 1; }
        .mobile-nav-item { border-bottom: 1px solid #F1F5F9; }
        .mobile-nav-link {
            display: flex; align-items: center; justify-content: space-between;
            padding: 14px 20px;
            color: #475569;
            font-size: 14px; font-weight: 600;
            text-decoration: none; background: none; border: none;
            width: 100%; cursor: pointer; font-family: inherit;
            text-transform: uppercase; letter-spacing: 0.05em;
        }
        .mobile-nav-link:hover { color: #D4876B; }
        .mobile-submenu { display: none; padding: 0 0 8px 20px; background: #F5E4DD; }
        .mobile-submenu.open { display: block; }
        .mobile-submenu a:hover { color: #D4876B; }
        .mobile-menu-footer { padding: 20px; border-top: 1px solid #E2E8F0; display: flex; flex-direction: column; gap: 10px; }

        /* ── Responsive ── */
        @media (min-width: 1025px) {
            .mobile-menu { display: none !important; }
            .mobile-overlay { display: none !important; }
        }
        @media (max-width: 1024px) {
            .nav-item-dropdown .dropdown-panel { display: none !important; }
            .mobile-toggle { display: flex; }
        }
        @media (max-width: 640px) {
            .mobile-menu { width: 100%; }
        }

        /* ── Section 2: Every Interaction Builds a Care Story — Timeline ── */
        .timeline-container { position: relative; padding: 20px 0; }
        .timeline-rail {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1.5px;
            background: linear-gradient(to bottom, transparent 0%, #CBD5E1 5%, #CBD5E1 95%, transparent 100%);
            transform: translateX(-50%);
        }
        .timeline-dots-svg {
            position: absolute;
            left: 50%;
            top: 0;
            width: 100px;
            height: 100%;
            transform: translateX(-50%);
            pointer-events: none;
            z-index: 2;
            overflow: visible;
        }
        .tl-row {
            display: grid;
            grid-template-columns: 1fr 40px 1fr;
            gap: 0;
            margin-bottom: 20px;
            position: relative;
            z-index: 3;
        }
        .tl-card-wrapper { display: flex; align-items: flex-start; }
        .tl-card-wrapper.left { justify-content: flex-end; padding-right: 24px; }
        .tl-card-wrapper.right { justify-content: flex-start; padding-left: 24px; }
        .tl-center { display: flex; align-items: flex-start; justify-content: center; padding-top: 8px; }
        .tl-node {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #5B6EE1;
            box-shadow: 0 0 0 3px rgba(91,110,225,0.08);
            flex-shrink: 0;
        }
        .tl-node-live {
            background: #5B6EE1;
            border-color: #5B6EE1;
            box-shadow: 0 0 0 4px rgba(91,110,225,0.15);
        }
        .tl-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            max-width: 360px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
        }
        .tl-card:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .tl-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #F1F4FF;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .tl-icon svg {
            color: #5B6EE1;
            width: 18px;
            height: 18px;
        }
        .tl-body h4 {
            font-size: 14px;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        .tl-body p {
            font-size: 12px;
            color: #64748B;
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .tl-meta {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tl-time {
            font-size: 10px;
            font-weight: 600;
            color: #94A3B8;
            letter-spacing: 0.02em;
        }
        .tl-status {
            font-size: 10px;
            font-weight: 700;
            color: #10B981;
            background: #ECFDF5;
            padding: 2px 8px;
            border-radius: 100px;
        }
        .tl-status-live {
            background: rgba(91,110,225,0.08);
            color: #5B6EE1;
        }

        .passport-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 3;
        }
        .health-passport {
            background: #fff;
            border-radius: 20px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 8px 32px rgba(0,0,0,0.04);
            padding: 28px;
            max-width: 600px;
            width: 100%;
        }
        .passport-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-bottom: 20px;
            border-bottom: 1px solid #F1F5F9;
            margin-bottom: 20px;
        }
        .passport-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5B6EE1, #8B9CF7);
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .passport-id h3 {
            font-size: 16px;
            font-weight: 700;
            color: #0F172A;
        }
        .passport-id p {
            font-size: 12px;
            color: #64748B;
        }
        .passport-admit {
            font-size: 10px !important;
            color: #94A3B8 !important;
            margin-top: 2px;
        }
        .passport-score {
            margin-left: auto;
            text-align: right;
        }
        .hs-value {
            display: flex;
            align-items: baseline;
            gap: 2px;
        }
        .health-score-number {
            font-size: 28px;
            font-weight: 800;
            color: #0F172A;
            line-height: 1;
        }
        .hs-trend {
            font-size: 14px;
            font-weight: 700;
            color: #10B981;
        }
        .hs-bar {
            width: 60px;
            height: 4px;
            background: #E2E8F0;
            border-radius: 2px;
            margin: 4px 0 2px;
            overflow: hidden;
        }
        .hs-fill {
            height: 100%;
            width: 74%;
            background: linear-gradient(90deg, #5B6EE1, #10B981);
            border-radius: 2px;
        }
        .hs-label {
            font-size: 9px;
            font-weight: 600;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .passport-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }
        .pg-col h5 {
            font-size: 11px;
            font-weight: 700;
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 8px;
        }
        .pg-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pg-col ul li {
            font-size: 12px;
            color: #0F172A;
            padding: 3px 0;
            line-height: 1.5;
        }
        .pg-col ul li::before {
            content: '•';
            color: #5B6EE1;
            margin-right: 6px;
            font-weight: 700;
        }
        .passport-footer {
            display: flex;
            gap: 16px;
            padding-top: 16px;
            border-top: 1px solid #F1F5F9;
        }
        .pf-item {
            font-size: 11px;
            font-weight: 600;
            color: #64748B;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .pf-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #94A3B8;
        }
        .pf-dot-green { background: #10B981; }
        .pf-dot-live { background: #5B6EE1; }

        @media (max-width: 768px) {
            .tl-row {
                grid-template-columns: 1fr 24px 1fr;
            }
            .tl-card-wrapper.left { padding-right: 12px; }
            .tl-card-wrapper.right { padding-left: 12px; }
            .tl-card { padding: 14px; gap: 10px; }
        }

        /* ── Section 2: Cinematic Closing ── */
        .closing-block {
            margin-top: 100px;
            text-align: center;
            position: relative;
            z-index: 3;
            padding-bottom: 60px;
        }
        .tl-extension {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 48px;
        }
        .tl-extension-line {
            width: 1.5px;
            height: 80px;
            background: linear-gradient(to bottom, #CBD5E1, #5B6EE1);
        }
        .tl-extension-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #5B6EE1;
            box-shadow: 0 0 0 4px rgba(91,110,225,0.15);
            animation: dot-pulse 3s ease-in-out infinite;
            margin-top: -1px;
        }
        @keyframes dot-pulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(91,110,225,0.15); transform: scale(1); }
            50% { box-shadow: 0 0 0 8px rgba(91,110,225,0.08); transform: scale(1.15); }
        }
        .closing-heading {
            font-size: 56px;
            font-weight: 600;
            color: #172033;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .closing-heading span {
            display: block;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .closing-heading span:first-child {
            transition-delay: 0ms;
        }
        .closing-heading span:last-child {
            transition-delay: 120ms;
        }
        .closing-visible .closing-heading span {
            opacity: 1;
            transform: translateY(0);
        }
        .closing-live {
            display: inline-block;
            margin-top: 32px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.25em;
            color: #5B6EE1;
            opacity: 0;
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
            animation: live-pulse 3s ease-in-out infinite 1s;
        }
        .closing-visible .closing-live {
            opacity: 0.8;
        }
        @keyframes live-pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }

        @media (max-width: 768px) {
            .closing-heading {
                font-size: 32px;
            }
            .closing-block {
                margin-top: 60px;
                padding-bottom: 40px;
            }
            .tl-extension-line {
                height: 60px;
            }
        }

        /* ── Section 3: Resident Health Passport ── */
        .hp-card {
            background: #fff;
            border-radius: 24px;
            border: 1px solid #E5E7EB;
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
            padding: 36px;
            opacity: 0;
            transform: scale(0.98);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hp-visible .hp-card {
            opacity: 1;
            transform: scale(1);
        }
        .hp-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5B6EE1, #8B9CF7);
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .hp-id h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 4px;
        }
        .hp-id p {
            font-size: 14px;
            color: #64748B;
            line-height: 1.5;
        }
        .hp-id-sub {
            font-size: 12px !important;
            color: #94A3B8 !important;
        }
        .hp-score {
            margin: 28px 0;
            padding: 24px 0;
            border-top: 1px solid #F1F5F9;
            border-bottom: 1px solid #F1F5F9;
            text-align: center;
        }
        .hp-score-number {
            font-size: 72px;
            font-weight: 800;
            color: #5B6EE1;
            line-height: 1;
            letter-spacing: -0.03em;
        }
        .hp-score-trend {
            display: block;
            margin-top: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #22C55E;
            animation: trend-pulse 4s ease-in-out infinite;
        }
        @keyframes trend-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        .hp-status-list {
            margin-bottom: 24px;
        }
        .hp-status-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            font-size: 14px;
            font-weight: 500;
            color: #0F172A;
        }
        .hp-check {
            color: #22C55E;
            font-weight: 700;
            font-size: 15px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }
        .hp-status-divider {
            height: 1px;
            background: #F1F5F9;
        }
        .hp-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #F1F5F9;
        }
        .hp-footer-time {
            font-size: 12px;
            color: #94A3B8;
            font-weight: 500;
        }
        .hp-footer-live {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: #5B6EE1;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 4px;
            animation: hp-live-pulse 4s ease-in-out infinite;
        }
        .hp-footer-live span {
            letter-spacing: 0.2em;
        }
        @keyframes hp-live-pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }

        .hp-network {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        .hp-metrics {
            position: relative;
            z-index: 1;
            padding: 12px 0;
        }
        .hp-metric {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
        }
        .hp-metric-label {
            font-size: 15px;
            font-weight: 500;
            color: #64748B;
        }
        .hp-metric-value {
            font-size: 18px;
            font-weight: 700;
            color: #0F172A;
            font-variant-numeric: tabular-nums;
        }
        .hp-metric-status {
            color: #22C55E;
            font-size: 14px;
        }
        .hp-metric-divider {
            height: 1px;
            background: #F1F5F9;
        }
        .hp-metrics .hp-counter {
            opacity: 0;
        }
        .hp-visible .hp-metrics .hp-counter {
            opacity: 1;
        }

        .hp-bottom {
            margin-top: 100px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hp-bottom-line {
            font-size: 22px;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--hp-delay, 0ms);
            max-width: 600px;
        }
        .hp-visible .hp-bottom-line {
            opacity: 1;
            transform: translateY(0);
        }
        .hp-bottom-emphasis {
            font-weight: 800;
            color: #5B6EE1;
        }

        @media (max-width: 1024px) {
            .hp-card {
                width: 100% !important;
                padding: 28px;
            }
            .hp-score-number {
                font-size: 56px;
            }
            .hp-bottom-line {
                font-size: 18px;
            }
        }
        @media (max-width: 768px) {
            .hp-metric {
                padding: 10px 0;
            }
            .hp-metric-label {
                font-size: 13px;
            }
            .hp-metric-value {
                font-size: 15px;
            }
            .hp-bottom {
                margin-top: 60px;
            }
        }

        /* ── Section 4: Facility Pulse Canvas ── */
        .pulse-canvas {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .pulse-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        .pulse-row {
            display: grid;
            grid-template-columns: 1fr 24px 1fr;
            gap: 0;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .pulse-row + .pulse-row {
            margin-top: 12px;
        }
        .pulse-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .pulse-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #5B6EE1;
            opacity: 0.2;
        }
        .pulse-node {
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .pulse-node-left {
            justify-content: flex-end;
            text-align: right;
        }
        .pulse-node-right {
            justify-content: flex-start;
            text-align: left;
        }
        .pulse-label {
            font-size: 14px;
            color: #64748B;
            font-weight: 500;
        }
        .pulse-value {
            font-size: 24px;
            font-weight: 700;
            color: #0F172A;
            font-variant-numeric: tabular-nums;
            min-width: 40px;
        }
        .pulse-value-warn {
            color: #EF4444;
            font-size: 18px;
        }
        .pulse-facility {
            text-align: center;
            padding: 28px 0 32px;
            position: relative;
            z-index: 1;
        }
        .pulse-facility-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #F1F4FF;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }
        .pulse-residents {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: #0F172A;
        }
        .pulse-residents .pulse-counter {
            font-weight: 700;
            color: #5B6EE1;
        }
        .pulse-health {
            text-align: center;
            padding: 24px 0;
            position: relative;
            z-index: 1;
        }
        .pulse-hs-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 6px;
        }
        .pulse-hs-value {
            font-size: 48px;
            font-weight: 800;
            color: #5B6EE1;
            line-height: 1;
        }

        .pulse-canvas .pulse-counter,
        .pulse-canvas .pulse-hs-number {
            opacity: 0;
        }
        .facility-visible .pulse-canvas .pulse-counter,
        .facility-visible .pulse-canvas .pulse-hs-number {
            opacity: 1;
        }

        .exec-questions {
            max-width: 640px;
            margin: 100px auto 0;
            position: relative;
            z-index: 1;
        }
        .exec-q {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: var(--q-delay, 0ms);
        }
        .facility-visible .exec-q {
            opacity: 1;
            transform: translateY(0);
        }
        .exec-q-divider {
            height: 1px;
            background: #F1F5F9;
        }
        .exec-q-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 0;
        }
        .exec-q-text {
            font-size: 16px;
            font-weight: 600;
            color: #0F172A;
        }
        .exec-q-answer {
            font-size: 18px;
            font-weight: 700;
            color: #0F172A;
            font-variant-numeric: tabular-nums;
        }
        .exec-q-yes {
            color: #22C55E;
        }
        .exec-q-pct {
            color: #5B6EE1;
        }
        .exec-q-trend {
            font-size: 13px;
            font-weight: 600;
            color: #22C55E;
        }

        .facility-bottom {
            text-align: center;
            margin-top: 120px;
        }
        .facility-bottom-main {
            font-size: 28px;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.4;
        }
        .facility-bottom-sub {
            margin-top: 20px;
            font-size: 16px;
            color: #64748B;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .pulse-node {
                padding: 12px 12px;
            }
            .pulse-value {
                font-size: 18px;
            }
            .pulse-label {
                font-size: 12px;
            }
            .pulse-hs-value {
                font-size: 36px;
            }
            .exec-q-text {
                font-size: 14px;
            }
            .exec-q-answer {
                font-size: 15px;
            }
            .exec-q-row {
                padding: 16px 0;
            }
            .facility-bottom-main {
                font-size: 22px;
            }
        }

        /* ── Three Transformations ── */
        .transform-panel {
            flex: 1;
            transition: flex 0.7s ease-in-out;
            padding: 60px 20px;
        }
        .tp-label {
            font-size: 14px;
            font-weight: 700;
            color: #64748B;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
            pointer-events: none;
        }
        .tp-content {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            max-width: 340px;
            margin: 0 auto;
            pointer-events: none;
        }
        .tp-content-active {
            opacity: 1;
            transform: translateY(0);
        }
        .tp-label-shifted {
            top: 40px;
            transform: translateX(-50%);
            font-size: 11px;
        }
        .tp-heading {
            font-size: 28px;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .tp-text {
            font-size: 15px;
            color: #64748B;
            line-height: 1.7;
            margin-bottom: 28px;
        }
        .tp-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }
        .tp-chip {
            font-size: 13px;
            font-weight: 500;
            color: #5B6EE1;
            background: rgba(91,110,225,0.06);
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 0.01em;
        }

        /* ── Closing Overlay ── */
        .transform-closing {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.8s ease;
            background: rgba(250,251,253,0.92);
        }
        .transform-closing-visible {
            opacity: 1;
            pointer-events: auto;
        }
        .tc-block-1 {
            margin-bottom: 40px;
        }
        .tc-block-2 {
            margin-top: 20px;
        }
        .tc-divider {
            width: 40px;
            height: 1px;
            background: #E5E7EB;
            margin: 0 auto;
        }
        .tcl-line {
            font-size: 48px;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.3;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .tcl-line-active {
            opacity: 1;
            transform: translateY(0);
        }
        .tc1-em .tcl-line-active {
            transition-delay: 0ms;
        }
        .tcl-em {
            color: #5B6EE1;
            font-weight: 700;
        }
        .tc2-em {
            color: #5B6EE1;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .transform-panel {
                padding: 40px 12px;
            }
            .tp-heading {
                font-size: 20px;
            }
            .tp-text {
                font-size: 13px;
            }
            .tp-chip {
                font-size: 11px;
                padding: 4px 12px;
            }
            .tcl-line {
                font-size: 24px;
            }
            .tc-block-1 {
                margin-bottom: 24px;
            }
        }

        /* ── Evidence Drawer ── */
        .evidence-drawer {
            border: 1px solid #E5E7EB;
            border-radius: 14px;
            background: #FFFFFF;
            overflow: hidden;
            transition: all 700ms cubic-bezier(0.42, 0, 0.58, 1);
        }
        .ed-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            padding: 0 24px;
            cursor: default;
            user-select: none;
        }
        .ed-header-title {
            font-size: 18px;
            font-weight: 600;
            color: #0F172A;
            letter-spacing: -0.01em;
        }
        .ed-header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .ed-time {
            font-size: 15px;
            color: #64748B;
            font-weight: 500;
        }
        .ed-status {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .ed-verified { color: #5B6EE1; }
        .ed-recorded { color: #64748B; }
        .ed-completed { color: #5B6EE1; }
        .ed-resolved { color: #5B6EE1; }
        .ed-approved { color: #5B6EE1; }
        .ed-live { color: #5B6EE1; }
        .ed-chevron {
            font-size: 22px;
            color: #CBD5E1;
            transition: transform 700ms cubic-bezier(0.42, 0, 0.58, 1);
            line-height: 1;
        }
        .ed-chevron-open {
            transform: rotate(90deg);
        }
        .ed-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 700ms cubic-bezier(0.42, 0, 0.58, 1);
        }
        .ed-body-open {
            max-height: 300px;
        }
        .ed-body-inner {
            padding: 0 24px 28px;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 500ms ease 200ms, transform 500ms ease 200ms;
        }
        .ed-body-inner-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .ed-label {
            font-size: 22px;
            font-weight: 600;
            color: #0F172A;
            margin-bottom: 20px;
        }
        .ed-sub-label {
            font-size: 16px;
            color: #64748B;
            margin-top: -12px;
            margin-bottom: 20px;
        }
        .ed-grid {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .ed-field {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }
        .ed-fn {
            font-size: 14px;
            color: #94A3B8;
            min-width: 110px;
            font-weight: 500;
        }
        .ed-fv {
            font-size: 16px;
            color: #334155;
            font-weight: 500;
        }
        .ed-fv.ed-verified {
            color: #5B6EE1;
        }
        .ed-note-text {
            font-size: 16px;
            color: #334155;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .ed-footer-note {
            font-size: 13px;
            color: #94A3B8;
            margin-top: 20px;
            font-style: italic;
        }

        /* ── Evidence Closing ── */
        .ecl-line {
            font-size: 48px;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.3;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
        }
        .ecl-line-active {
            opacity: 1;
            transform: translateY(0);
        }
        .ecl-em {
            color: #5B6EE1;
        }
        .ecl-divider {
            width: 40px;
            height: 1px;
            background: #E5E7EB;
            margin: 32px auto;
        }
        .ecl-final {
            font-size: 56px;
            font-weight: 600;
            color: #5B6EE1;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) 400ms, transform 700ms cubic-bezier(0.16, 1, 0.3, 1) 400ms;
        }
        .ecl-final-active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .ed-header-title {
                font-size: 14px;
            }
            .ed-header {
                height: 60px;
                padding: 0 16px;
            }
            .ed-header-right {
                gap: 10px;
            }
            .ed-time {
                font-size: 13px;
            }
            .ed-status {
                font-size: 11px;
            }
            .ed-chevron {
                font-size: 18px;
            }
            .ed-body-inner {
                padding: 0 16px 20px;
            }
            .ed-label {
                font-size: 18px;
                margin-bottom: 16px;
            }
            .ed-fn {
                font-size: 12px;
                min-width: 80px;
            }
            .ed-fv {
                font-size: 14px;
            }
            .ecl-line {
                font-size: 28px;
            }
            .ecl-final {
                font-size: 32px;
            }
        }

        /* ── One Day Inside iCareNZ ── */
        .stream-event {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            pointer-events: none;
            z-index: 10;
            height: 0;
        }
        .stream-event::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #5B6EE1;
            transform: translate(-50%, -50%);
            z-index: 2;
        }
        .se-inner {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            white-space: nowrap;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        .stream-left .se-inner {
            right: calc(50% + 18px);
            text-align: right;
        }
        .stream-right .se-inner {
            left: calc(50% + 18px);
            text-align: left;
        }
        .se-text {
            font-size: 16px;
            font-weight: 500;
            color: #0F172A;
            line-height: 1.3;
        }
        .se-status {
            font-size: 12px;
            font-weight: 500;
            color: #64748B;
            line-height: 1.3;
        }

        /* ── One Day Closing ── */
        .od-line {
            font-size: 48px;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.3;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
        }
        .od-line-active {
            opacity: 1;
            transform: translateY(0);
        }
        .od-divider {
            width: 40px;
            height: 1px;
            background: #E5E7EB;
            margin: 32px auto;
        }
        .od-em {
            font-size: 48px;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.3;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
        }
        .od-em-active {
            opacity: 1;
            transform: translateY(0);
        }
        .od-em-last {
            font-size: 56px;
            font-weight: 600;
            color: #5B6EE1;
        }

        @media (max-width: 768px) {
            .se-text {
                font-size: 14px;
            }
            .se-status {
                font-size: 11px;
            }
            .od-line, .od-em {
                font-size: 28px;
        }
        .od-em-last {
            font-size: 32px;
        }
    }

    /* ── Final CTA: Living Care Intelligence ── */
    .cc-node {
        position: absolute;
        pointer-events: none;
        z-index: 3;
        transition: opacity 600ms ease, transform 600ms ease;
    }
    .cc-node-pill {
        display: inline-flex;
        align-items: center;
        padding: 6px 16px;
        border-radius: 999px;
        background: #FFFFFF;
        border: 1px solid rgba(91,110,225,0.12);
        font-size: 14px;
        font-weight: 500;
        color: #0F172A;
        white-space: nowrap;
        font-family: 'Inter', system-ui, sans-serif;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .cc-conn-line {
        stroke: rgba(91,110,225,0.12);
        stroke-width: 1;
        fill: none;
    }
    .cc-ml {
        font-size: 56px;
        font-weight: 500;
        color: #0F172A;
        line-height: 1.4;
        letter-spacing: -0.01em;
        transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
    }
    .cc-ml-last {
        color: #5B6EE1;
        font-weight: 700;
        font-size: 64px;
        letter-spacing: -0.02em;
    }
    .cc-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        height: 56px;
        padding: 0 36px;
        border-radius: 10px;
        background: #5B6EE1;
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 300ms ease, opacity 600ms ease;
    }
    .cc-cta:hover {
        background: #4A5BCF;
        transform: translateY(-2px);
    }
    @media (max-width: 768px) {
        .cc-node-label {
            font-size: 12px;
            top: -4px;
            left: 12px;
        }
        .cc-ml {
            font-size: 32px;
        }
        .cc-ml-last {
            font-size: 38px;
        }
        .cc-cta {
            height: 48px;
            padding: 0 28px;
            font-size: 14px;
        }
    }

    /* ── Footer ── */
    .footer-pulse {
        animation: fpulse 3s ease-in-out infinite;
    }
    @keyframes fpulse {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 1; }
    }
