    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --brand: #4A3DB8;
      --brand-dark: #3730A3;
      --brand-light: #6D5FE8;
      --brand-pale: #EEF0FF;
      --brand-glow: rgba(74, 61, 184, 0.15);
      --success: #10B981;
      --warning: #F59E0B;
      --danger: #EF4444;
      --ink: #0F172A;
      --ink-muted: #475569;
      --ink-subtle: #94A3B8;
      --surface: #FFFFFF;
      --surface-2: #F8FAFF;
      --surface-3: #F1F5F9;
      --border: #E2E8F0;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
      --shadow-lg: 0 20px 48px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
      --shadow-brand: 0 8px 32px rgba(74, 61, 184, 0.25);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--surface);
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    a { text-decoration: none; color: inherit; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px; font-weight: 800;
      color: var(--brand);
    }
    .nav-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); display: inline-block; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-muted); transition: color 0.15s; }
    .nav-links a:hover { color: var(--brand); }
    .nav-cta {
      background: var(--brand); color: #fff;
      padding: 10px 20px; border-radius: 8px;
      font-size: 14px; font-weight: 600;
      transition: background 0.15s, transform 0.1s;
      cursor: pointer;
    }
    .nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; border: none;
      background: none; border-radius: 8px;
      transition: background 0.15s;
    }
    .nav-hamburger:hover { background: var(--surface-3); }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--ink); border-radius: 2px;
      transition: transform 0.25s, opacity 0.2s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-menu {
      display: none; position: fixed;
      top: 68px; left: 0; right: 0; bottom: 0;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      z-index: 99;
      flex-direction: column;
      padding: 32px 24px;
      gap: 8px;
      transform: translateY(-8px);
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
      pointer-events: none;
    }
    .nav-mobile-menu.open {
      display: flex; opacity: 1; transform: translateY(0);
      pointer-events: all;
    }
    .nav-mobile-menu a {
      font-size: 18px; font-weight: 600; color: var(--ink);
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.15s;
    }
    .nav-mobile-menu a:hover { color: var(--brand); }
    .nav-mobile-menu .nav-mobile-cta {
      margin-top: 16px;
      background: var(--brand); color: #fff;
      padding: 16px; border-radius: 12px;
      text-align: center; font-size: 16px; font-weight: 700;
      border-bottom: none;
      box-shadow: var(--shadow-brand);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-cta { display: none; }
    }

    /* ── HERO ── */
    .hero {
      padding: 120px 24px 80px;
      background: linear-gradient(165deg, #F0F2FF 0%, #E8ECFF 40%, #F0F4FF 100%);
      position: relative; overflow: hidden;
      min-height: 720px; display: flex; align-items: center;
    }
    /* Hero isolation so z-index works correctly inside */
    .hero { isolation: isolate; }

    /* Gradient shield — subtle depth effect only */
    .hero-gradient-shield {
      position: absolute; inset: 0;
      background: linear-gradient(to right,
        rgba(234,236,255,0.12) 0%,
        transparent 60%
      );
      pointer-events: none; z-index: 0;
    }
    .hero-inner {
      max-width: 1380px; width: 100%; margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(auto, 520px) 1fr;
      align-items: center;
      gap: 0 32px;
      position: relative; z-index: 4;
    }
    .hero-inner > div:first-child {
      position: relative; z-index: 4;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand-pale); color: var(--brand);
      padding: 6px 14px; border-radius: 100px;
      font-size: 13px; font-weight: 600; margin-bottom: 24px;
      border: 1px solid rgba(74,61,184,0.2);
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse-green 2s infinite; }
    @keyframes pulse-green { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .hero h1 {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .hero h1 span { color: var(--brand); }
    .hero-sub {
      font-size: 18px; color: var(--ink-muted);
      line-height: 1.7; margin-bottom: 36px;
      max-width: 520px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      background: var(--brand); color: #fff;
      padding: 15px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 700;
      box-shadow: var(--shadow-brand);
      transition: all 0.2s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(74,61,184,0.35); }
    .btn-outline {
      border: 2px solid var(--brand); color: var(--brand);
      padding: 13px 26px; border-radius: 10px;
      font-size: 15px; font-weight: 600;
      transition: all 0.2s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { background: var(--brand-pale); }
    .hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
    .hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-muted); font-weight: 500; }
    .hero-trust-item svg { color: var(--success); }

    /* App mockup */
    .hero-mockup {
      position: relative;
    }
    .mockup-frame {
      background: var(--ink);
      border-radius: 24px;
      padding: 10px;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
      position: relative;
    }
    .mockup-screen {
      background: #1a1f2e;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 9/16;
      max-height: 520px;
      position: relative;
    }
    .mockup-topbar {
      background: var(--brand);
      padding: 14px 16px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .mockup-topbar-title { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; }
    .mockup-topbar-right { display: flex; gap: 8px; }
    .mockup-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.2); }
    .mockup-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
    .mockup-resident-card {
      background: #252b3d;
      border-radius: 12px;
      padding: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .mockup-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--brand);
      border: 3px solid var(--success);
      flex-shrink: 0;
      box-shadow: 0 0 12px var(--success);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 14px; font-weight: 700;
    }
    .mockup-avatar.amber { border-color: var(--warning); box-shadow: 0 0 12px var(--warning); animation: pulse-amber-m 1.5s infinite; }
    .mockup-avatar.red { border-color: var(--danger); box-shadow: 0 0 12px var(--danger); animation: pulse-red-m 1s infinite; }
    @keyframes pulse-amber-m { 0%,100%{box-shadow:0 0 8px var(--warning)} 50%{box-shadow:0 0 20px var(--warning)} }
    @keyframes pulse-red-m { 0%,100%{box-shadow:0 0 8px var(--danger)} 50%{box-shadow:0 0 20px var(--danger)} }
    .mockup-resident-info { flex: 1; }
    .mockup-resident-name { color: #fff; font-size: 13px; font-weight: 600; }
    .mockup-resident-room { color: #94A3B8; font-size: 11px; }
    .mockup-status-badge {
      padding: 3px 8px; border-radius: 100px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
    }
    .mockup-status-badge.green { background: rgba(16,185,129,0.15); color: var(--success); }
    .mockup-status-badge.amber { background: rgba(245,158,11,0.15); color: var(--warning); }
    .mockup-status-badge.red { background: rgba(239,68,68,0.15); color: var(--danger); }
    .mockup-vitals-card {
      background: linear-gradient(135deg, rgba(74,61,184,0.3), rgba(74,61,184,0.1));
      border: 1px solid rgba(74,61,184,0.4);
      border-radius: 12px; padding: 12px;
    }
    .mockup-vitals-title { color: #9CA3AF; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
    .mockup-vitals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .mockup-vital { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 8px; text-align: center; }
    .mockup-vital-val { color: #fff; font-size: 16px; font-weight: 700; }
    .mockup-vital-val.news2-amber { color: var(--warning); }
    .mockup-vital-val.news2-red { color: var(--danger); }
    .mockup-vital-label { color: #94A3B8; font-size: 9px; }
    .mockup-alert {
      background: rgba(239,68,68,0.15);
      border: 1px solid rgba(239,68,68,0.3);
      border-radius: 10px; padding: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .mockup-alert-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); flex-shrink: 0; animation: pulse-red-m 1s infinite; }
    .mockup-alert-text { color: #FCA5A5; font-size: 11px; font-weight: 600; }
    .mockup-tabs {
      display: flex; gap: 4px;
      background: #252b3d; border-radius: 10px; padding: 4px;
    }
    .mockup-tab {
      flex: 1; text-align: center;
      padding: 6px 4px; border-radius: 7px;
      font-size: 10px; font-weight: 600; color: #64748B; cursor: pointer;
    }
    .mockup-tab.active { background: var(--brand); color: #fff; }

    .mockup-float-badge {
      position: absolute; top: -16px; right: -16px;
      background: var(--danger); color: #fff;
      border-radius: 100px; padding: 6px 14px;
      font-size: 12px; font-weight: 700;
      box-shadow: 0 4px 12px rgba(239,68,68,0.4);
      white-space: nowrap;
    }
    .mockup-float-badge-2 {
      position: absolute; bottom: 40px; left: -20px;
      background: var(--success); color: #fff;
      border-radius: 100px; padding: 6px 14px;
      font-size: 12px; font-weight: 700;
      box-shadow: 0 4px 12px rgba(16,185,129,0.4);
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-mockup { display: none; }
    }

    /* ── LOGOS / TRUST ── */
    .trust-bar {
      background: var(--surface-3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
    }
    .trust-bar-inner {
      max-width: 1140px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 32px;
    }
    .trust-label { font-size: 12px; font-weight: 600; color: var(--ink-subtle); text-transform: uppercase; letter-spacing: 0.1em; }
    .trust-items { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600; color: var(--ink-muted);
    }
    .trust-icon { width: 20px; height: 20px; }

    /* ── SECTIONS ── */
    section { padding: 96px 24px; }
    .section-inner { max-width: 1140px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--brand); margin-bottom: 12px;
    }
    .section-heading { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--ink); margin-bottom: 16px; }
    .section-sub { font-size: 18px; color: var(--ink-muted); max-width: 600px; line-height: 1.7; margin-bottom: 56px; }
    .section-heading-center { text-align: center; }
    .section-sub-center { text-align: center; margin-left: auto; margin-right: auto; }

    /* ── FEATURES GRID ── */
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: all 0.2s;
      cursor: default;
    }
    .feature-card:hover {
      border-color: rgba(74,61,184,0.3);
      box-shadow: var(--shadow), 0 0 0 1px rgba(74,61,184,0.1);
      transform: translateY(-2px);
    }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--brand-pale);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .feature-icon svg { width: 24px; height: 24px; color: var(--brand); }
    .feature-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
    .feature-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

    /* ── OBS SECTION ── */
    .obs-section { background: var(--surface-2); }
    .obs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    @media (max-width: 860px) { .obs-grid { grid-template-columns: 1fr; } }
    .obs-types { display: flex; flex-direction: column; gap: 16px; }
    .obs-type-item {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 20px;
      transition: all 0.2s;
    }
    .obs-type-item:hover { border-color: rgba(74,61,184,0.3); transform: translateX(4px); }
    .obs-type-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .obs-type-icon.purple { background: var(--brand-pale); }
    .obs-type-icon.green { background: rgba(16,185,129,0.1); }
    .obs-type-icon.blue { background: rgba(59,130,246,0.1); }
    .obs-type-icon.orange { background: rgba(249,115,22,0.1); }
    .obs-type-icon.teal { background: rgba(20,184,166,0.1); }
    .obs-type-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
    .obs-type-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

    /* Scoring widget mockup */
    .scoring-widget {
      background: var(--ink);
      border-radius: 20px;
      padding: 24px;
      box-shadow: var(--shadow-lg);
    }
    .sw-title { color: #94A3B8; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
    .sw-score-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .sw-score-big { font-size: 64px; font-weight: 900; line-height: 1; }
    .sw-score-big.score-amber { color: var(--warning); }
    .sw-score-big.score-red { color: var(--danger); }
    .sw-score-big.score-green { color: var(--success); }
    .sw-score-label { color: #94A3B8; font-size: 12px; margin-top: 4px; }
    .sw-badge { padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; }
    .sw-badge.amber { background: rgba(245,158,11,0.2); color: var(--warning); }
    .sw-badge.red { background: rgba(239,68,68,0.2); color: var(--danger); }
    .sw-params { display: flex; flex-direction: column; gap: 10px; }
    .sw-param {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px 14px;
    }
    .sw-param-name { color: #94A3B8; font-size: 13px; }
    .sw-param-val { color: #fff; font-size: 13px; font-weight: 600; }
    .sw-param-score { min-width: 28px; text-align: center; border-radius: 6px; padding: 2px 6px; font-size: 12px; font-weight: 700; }
    .sw-param-score.s0 { background: rgba(16,185,129,0.2); color: var(--success); }
    .sw-param-score.s1 { background: rgba(245,158,11,0.2); color: var(--warning); }
    .sw-param-score.s2 { background: rgba(249,115,22,0.2); color: #F97316; }
    .sw-param-score.s3 { background: rgba(239,68,68,0.2); color: var(--danger); }
    .sw-alert {
      margin-top: 16px;
      background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
      border-radius: 10px; padding: 12px 16px;
      color: #FCA5A5; font-size: 13px; font-weight: 600;
      display: flex; align-items: center; gap: 10px;
    }

    /* ── SAFEGUARDING ── */
    .safeguarding-section { background: linear-gradient(165deg, #0F172A, #1E1B4B); }
    .safeguarding-section .section-eyebrow { color: #A78BFA; }
    .safeguarding-section .section-heading { color: #fff; }
    .safeguarding-section .section-sub { color: #94A3B8; }
    .ai-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 860px) { .ai-cards { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .ai-cards { grid-template-columns: 1fr; } }
    .ai-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg); padding: 24px;
      transition: all 0.2s;
    }
    .ai-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(167,139,250,0.3); }
    .ai-card-tag {
      display: inline-block;
      padding: 3px 10px; border-radius: 100px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .ai-card-tag.red { background: rgba(239,68,68,0.2); color: #FCA5A5; }
    .ai-card-tag.amber { background: rgba(245,158,11,0.2); color: #FCD34D; }
    .ai-card-tag.blue { background: rgba(99,102,241,0.2); color: #A5B4FC; }
    .ai-card-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .ai-card-desc { color: #94A3B8; font-size: 13px; line-height: 1.6; }

    /* ── HOW IT WORKS ── */
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
    @media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
    .step-card { text-align: center; padding: 24px 16px; }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--brand); color: #fff;
      font-size: 18px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      box-shadow: var(--shadow-brand);
    }
    .step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
    .step-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

    /* ── MONITORING SECTION ── */
    .monitoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    @media (max-width: 860px) { .monitoring-grid { grid-template-columns: 1fr; } }

    .status-demo {
      display: flex; flex-direction: column; gap: 12px;
    }
    .status-row {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px 20px;
      display: flex; align-items: center; gap: 16px;
      transition: all 0.2s;
    }
    .status-row:hover { box-shadow: var(--shadow); }
    .status-ring {
      width: 52px; height: 52px; border-radius: 50%;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: #fff;
      position: relative;
    }
    .status-ring.green { background: #1a4a2e; border: 3px solid var(--success); box-shadow: 0 0 14px var(--success); }
    .status-ring.amber { background: #3d2a00; border: 3px solid var(--warning); box-shadow: 0 0 14px var(--warning); animation: pulse-amber-m 1.5s infinite; }
    .status-ring.red { background: #3d0a0a; border: 3px solid var(--danger); box-shadow: 0 0 14px var(--danger); animation: pulse-red-m 1s infinite; }
    .status-info { flex: 1; }
    .status-name { font-size: 15px; font-weight: 700; color: var(--ink); }
    .status-detail { font-size: 13px; color: var(--ink-muted); }
    .status-label {
      padding: 4px 10px; border-radius: 100px;
      font-size: 12px; font-weight: 700;
    }
    .status-label.green { background: rgba(16,185,129,0.1); color: var(--success); }
    .status-label.amber { background: rgba(245,158,11,0.1); color: var(--warning); }
    .status-label.red { background: rgba(239,68,68,0.1); color: var(--danger); }

    /* ── PRICING ── */
    .pricing-section { background: var(--surface-2); }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 36px 32px;
      position: relative;
    }
    .pricing-card.featured {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px var(--brand-glow), var(--shadow-lg);
    }
    .pricing-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--brand); color: #fff;
      padding: 4px 16px; border-radius: 100px;
      font-size: 12px; font-weight: 700; white-space: nowrap;
    }
    .pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 8px; }
    .pricing-price { font-size: 48px; font-weight: 900; color: var(--ink); line-height: 1; }
    .pricing-price span { font-size: 18px; font-weight: 500; color: var(--ink-muted); }
    .pricing-per { font-size: 13px; color: var(--ink-subtle); margin-top: 4px; margin-bottom: 24px; }
    .pricing-desc { font-size: 14px; color: var(--ink-muted); margin-bottom: 24px; line-height: 1.6; }
    .pricing-cta {
      display: block; width: 100%; padding: 13px;
      border-radius: 9px; text-align: center;
      font-size: 15px; font-weight: 700;
      transition: all 0.2s; cursor: pointer;
    }
    .pricing-cta.primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
    .pricing-cta.primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
    .pricing-cta.outline { border: 2px solid var(--border); color: var(--ink-muted); }
    .pricing-cta.outline:hover { border-color: var(--brand); color: var(--brand); }
    .pricing-features { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
    .pricing-features li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-muted); align-items: flex-start; }
    .pricing-features li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
    .pricing-features li.muted { color: var(--ink-subtle); }
    .pricing-features li.muted svg { color: var(--ink-subtle); }

    /* ── COMPARISON ── */
    .comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .comparison-table th {
      padding: 16px 20px; text-align: left;
      font-size: 13px; font-weight: 700; color: var(--ink-muted);
      border-bottom: 2px solid var(--border);
      background: var(--surface-3);
    }
    .comparison-table th:first-child { border-radius: 12px 0 0 0; }
    .comparison-table th:last-child { border-radius: 0 12px 0 0; }
    .comparison-table th.dobs-col { background: var(--brand-pale); color: var(--brand); }
    .comparison-table td {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      color: var(--ink-muted);
      vertical-align: middle;
    }
    .comparison-table td.dobs-col { background: rgba(74,61,184,0.03); font-weight: 600; color: var(--ink); }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tr:hover td { background: var(--surface-2); }
    .comparison-table tr:hover td.dobs-col { background: rgba(74,61,184,0.05); }
    .check { color: var(--success); font-weight: 700; }
    .cross { color: var(--ink-subtle); }
    .wrap-table { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-q {
      padding: 20px 24px;
      font-size: 16px; font-weight: 600; color: var(--ink);
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      user-select: none;
      transition: background 0.15s;
    }
    .faq-q:hover { background: var(--surface-2); }
    .faq-a {
      padding: 0 24px;
      font-size: 15px; color: var(--ink-muted); line-height: 1.7;
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.2s;
    }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
    .faq-chevron { transition: transform 0.2s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      border-radius: var(--radius-lg); padding: 64px 48px;
      text-align: center;
      box-shadow: var(--shadow-brand);
    }
    .cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
    .cta-banner p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 36px; }
    .cta-banner-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .btn-white {
      background: #fff; color: var(--brand);
      padding: 15px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 700;
      transition: all 0.2s; cursor: pointer;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
    .btn-ghost-white {
      border: 2px solid rgba(255,255,255,0.4); color: #fff;
      padding: 13px 26px; border-radius: 10px;
      font-size: 15px; font-weight: 600;
      transition: all 0.2s; cursor: pointer;
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 64px 24px 32px;
      color: #94A3B8;
    }
    .footer-inner { max-width: 1140px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    @media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
    .footer-brand-name { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
    .footer-brand-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
    .footer-col-title { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: #94A3B8; transition: color 0.15s; }
    .footer-links a:hover { color: #fff; }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: #94A3B8; }
    .footer-bottom-links a:hover { color: #fff; }
    .footer-compliance {
      display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
    }
    .compliance-badge {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 4px 10px; border-radius: 6px;
      font-size: 12px; font-weight: 600; color: #CBD5E1;
    }

    /* ── UTILS ── */
    .text-center { text-align: center; }
    .mt-16 { margin-top: 16px; }
    .mt-24 { margin-top: 24px; }
    .gap-cols { column-gap: 20px; }

    /* ── MOBILE RESPONSIVE ── */
    @media (max-width: 768px) {
      /* Section padding */
      section { padding: 64px 20px; }

      /* Hero */
      .hero { padding: 100px 20px 60px; }
      .hero-inner { gap: 40px; }
      .hero h1 { font-size: clamp(30px, 8vw, 42px); }
      .hero-sub { font-size: 16px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn-primary,
      .hero-actions .btn-outline { justify-content: center; width: 100%; }
      .hero-trust { flex-wrap: wrap; gap: 12px; }
      .orb-1 { width: 280px; height: 280px; top: -80px; right: -60px; }
      .orb-2 { width: 200px; height: 200px; }
      .orb-3 { display: none; }

      /* Features */
      .features-grid { grid-template-columns: 1fr; }

      /* Obs section */
      .obs-grid { gap: 36px; }

      /* Monitoring */
      .monitoring-grid { gap: 36px; }

      /* Steps */
      .steps { grid-template-columns: 1fr 1fr; gap: 20px; }

      /* AI cards */
      .ai-cards { grid-template-columns: 1fr; }

      /* Pricing */
      .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
      .pricing-card { padding: 28px 24px; }

      /* Comparison table */
      .comparison-table th,
      .comparison-table td { padding: 12px 14px; font-size: 13px; }

      /* CTA banner */
      .cta-banner { padding: 44px 24px; }
      .cta-banner h2 { font-size: clamp(22px, 6vw, 32px); }
      .cta-banner-actions { flex-direction: column; align-items: stretch; }
      .cta-banner-actions .btn-white,
      .cta-banner-actions .btn-ghost-white { text-align: center; }

      /* Footer */
      footer { padding: 48px 20px 24px; }
      .footer-top { gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

      /* Section headings */
      .section-heading { font-size: clamp(24px, 6vw, 36px); }
      .section-sub { font-size: 16px; margin-bottom: 40px; }

      /* Scoring widget */
      .scoring-widget { padding: 20px; }
      .sw-score-big { font-size: 48px; }
      .sw-params { gap: 8px; }

      /* Mockup badges */
      .mockup-float-badge { font-size: 11px; padding: 5px 10px; top: -12px; right: -8px; }
      .mockup-float-badge-2 { font-size: 11px; padding: 5px 10px; bottom: 30px; left: -10px; }
    }

    @media (max-width: 480px) {
      section { padding: 52px 16px; }
      .hero { padding: 90px 16px 52px; }
      .steps { grid-template-columns: 1fr; }
      .trust-bar { padding: 16px; }
      .trust-bar-inner { gap: 16px; flex-direction: column; align-items: flex-start; }
      .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
      .cta-banner { padding: 36px 20px; }
      .comparison-table th:nth-child(3),
      .comparison-table td:nth-child(3),
      .comparison-table th:nth-child(4),
      .comparison-table td:nth-child(4),
      .comparison-table th:nth-child(5),
      .comparison-table td:nth-child(5) { display: none; }
      .comparison-table th:nth-child(2) { border-radius: 0 12px 0 0; }
      .footer-bottom-links { gap: 12px; }
    }

    /* ── SCROLL ANIMATIONS ── */
    .fade-up {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    @media (prefers-reduced-motion: reduce) {
      .fade-up { opacity: 1; transform: none; transition: none; }
      .hero-reveal { opacity: 1; transform: none; animation: none; }
    }

    /* ── HERO CANVAS ── */
    #hero-canvas {
      position: absolute; inset: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
    }
    .hero > * { position: relative; z-index: 1; }

    /* ── HERO ANIMATED GRADIENT ── */
    .hero {
      background: linear-gradient(165deg, #F0F2FF 0%, #E8ECFF 40%, #F0F4FF 100%) !important;
    }
    @keyframes hero-gradient {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ── FLOATING ORBS ── */
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(60px); pointer-events: none; z-index: 0;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(74,61,184,0.12), transparent 70%);
      top: -150px; right: -100px;
      animation: orb-float-1 12s ease-in-out infinite;
    }
    .orb-2 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(109,95,232,0.1), transparent 70%);
      bottom: -80px; left: -80px;
      animation: orb-float-2 15s ease-in-out infinite;
    }
    .orb-3 {
      width: 250px; height: 250px;
      background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 70%);
      top: 40%; left: 35%;
      animation: orb-float-3 10s ease-in-out infinite;
    }
    @keyframes orb-float-1 {
      0%,100% { transform: translate(0,0) scale(1); }
      33%     { transform: translate(-40px,60px) scale(1.1); }
      66%     { transform: translate(30px,-30px) scale(0.95); }
    }
    @keyframes orb-float-2 {
      0%,100% { transform: translate(0,0) scale(1); }
      40%     { transform: translate(60px,-40px) scale(1.08); }
      70%     { transform: translate(-20px,30px) scale(0.97); }
    }
    @keyframes orb-float-3 {
      0%,100% { transform: translate(0,0); opacity:0.6; }
      50%     { transform: translate(20px,-25px); opacity:1; }
    }

    /* ── AURORA (dark sections) ── */
    .aurora-wrap {
      position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
    }
    .aurora {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: 0.5;
    }
    .aurora-1 {
      width: 700px; height: 400px;
      background: linear-gradient(135deg, #4A3DB8, #6D5FE8);
      top: -100px; left: -100px;
      animation: aurora-move-1 18s ease-in-out infinite;
    }
    .aurora-2 {
      width: 600px; height: 350px;
      background: linear-gradient(135deg, #7C3AED, #4A3DB8);
      bottom: -80px; right: -80px;
      animation: aurora-move-2 22s ease-in-out infinite;
    }
    .aurora-3 {
      width: 400px; height: 300px;
      background: linear-gradient(135deg, #10B981, #059669);
      top: 30%; left: 40%;
      opacity: 0.15;
      animation: aurora-move-3 14s ease-in-out infinite;
    }
    .aurora-4 {
      width: 300px; height: 200px;
      background: linear-gradient(135deg, #EF4444, #DC2626);
      top: 10%; right: 20%;
      opacity: 0.12;
      animation: aurora-move-4 16s ease-in-out infinite;
    }
    @keyframes aurora-move-1 {
      0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
      33%     { transform: translate(100px,80px) rotate(20deg) scale(1.15); }
      66%     { transform: translate(-50px,40px) rotate(-10deg) scale(0.9); }
    }
    @keyframes aurora-move-2 {
      0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
      40%     { transform: translate(-120px,-60px) rotate(-25deg) scale(1.2); }
      70%     { transform: translate(60px,80px) rotate(15deg) scale(0.85); }
    }
    @keyframes aurora-move-3 {
      0%,100% { transform: translate(0,0) scale(1); opacity:0.15; }
      50%     { transform: translate(-80px,-60px) scale(1.3); opacity:0.25; }
    }
    @keyframes aurora-move-4 {
      0%,100% { transform: translate(0,0); opacity:0.12; }
      50%     { transform: translate(60px,40px); opacity:0.2; }
    }
    .safeguarding-section { position: relative; overflow: hidden; }
    .safeguarding-section > * { position: relative; z-index: 1; }

    /* ── GRADIENT ANIMATED TEXT ── */
    .hero h1 span {
      background: linear-gradient(135deg, var(--brand), #8B5CF6, var(--brand-light), var(--brand));
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 4s ease infinite;
    }
    @keyframes gradient-shift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ── HERO BADGE SHIMMER ── */
    .hero-badge {
      position: relative; overflow: hidden;
    }
    .hero-badge::after {
      content: '';
      position: absolute; top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
      animation: shimmer 3s ease-in-out infinite;
      animation-delay: 2s;
    }
    @keyframes shimmer {
      0%   { left: -100%; }
      100% { left: 200%; }
    }

    /* ── MOCKUP — grid cell, overflows right edge for depth ── */
    .hero-mockup {
      position: relative !important;
      left: auto !important; right: auto !important; top: auto !important;
      transform: none !important;
      width: calc(100% + 48px);
      max-width: 860px;
      margin-right: -48px;
      z-index: 1;
      animation: mockup-float 7s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes mockup-float {
      0%,100% { transform: translateY(0) rotate(0deg); }
      33%     { transform: translateY(-10px) rotate(0.35deg); }
      66%     { transform: translateY(-3px) rotate(-0.2deg); }
    }
    @media (max-width: 1100px) {
      .hero-mockup { width: calc(100% + 24px); margin-right: -24px; }
    }
    @media (max-width: 1024px) {
      .hero-mockup { width: 100%; margin-right: 0; }
    }
    @media (max-width: 900px) {
      .hero-mockup { display: none !important; }
      .hero-gradient-shield { display: none !important; }
    }

    /* ── TABLET MOCKUP ── */
    .tablet-wrap { position: relative; }
    .tablet-frame {
      background: linear-gradient(160deg, #C8C8CC 0%, #A8A8AD 40%, #B8B8BC 70%, #D0D0D4 100%);
      border-radius: 28px;
      padding: 12px 12px 22px;
      box-shadow:
        0 40px 80px rgba(0,0,0,0.28),
        0 12px 32px rgba(0,0,0,0.18),
        0 0 0 1px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.1);
      position: relative;
    }
    .tablet-btn-vol {
      position: absolute; left: -4px; top: 60px;
      width: 4px; height: 28px; background: #A0A0A4;
      border-radius: 2px 0 0 2px;
      box-shadow: 0 22px 0 #A0A0A4, -1px 0 2px rgba(0,0,0,0.2);
    }
    .tablet-btn-power {
      position: absolute; right: -4px; top: 52px;
      width: 4px; height: 36px; background: #A0A0A4;
      border-radius: 0 2px 2px 0;
      box-shadow: -1px 0 2px rgba(0,0,0,0.15);
    }
    .tablet-camera-bar {
      width: 10px; height: 10px; border-radius: 50%;
      background: radial-gradient(circle, #2a2a2a 60%, #1a1a1a);
      margin: 0 auto 8px;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.3);
    }
    .tablet-home-bar {
      width: 100px; height: 4px;
      background: rgba(0,0,0,0.2);
      border-radius: 2px; margin: 8px auto 0;
    }
    .tablet-screen {
      background: #0F172A;
      border-radius: 18px;
      overflow: hidden;
      display: flex; flex-direction: column;
      aspect-ratio: 4/3;
    }
    .t-topbar {
      background: linear-gradient(90deg, #3730A3, #4A3DB8);
      padding: 9px 14px;
      display: flex; align-items: center; justify-content: space-between;
      flex-shrink: 0;
    }
    .t-topbar-left { display: flex; align-items: center; gap: 8px; }
    .t-logo { color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; }
    .t-topbar-center { color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 500; }
    .t-topbar-right { display: flex; align-items: center; gap: 6px; }
    .t-time { color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 600; }
    .t-avatar-sm {
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 9px; font-weight: 700;
    }
    .t-body { flex: 1; display: flex; overflow: hidden; min-height: 0; }
    /* Sidebar */
    .t-sidebar {
      width: 36%; background: #141927;
      border-right: 1px solid rgba(255,255,255,0.05);
      display: flex; flex-direction: column; overflow: hidden;
    }
    .t-sidebar-header {
      padding: 10px 10px 6px;
      font-size: 9px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.08em; color: #64748B;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: flex; align-items: center; justify-content: space-between;
    }
    .t-sidebar-count {
      background: var(--danger); color: #fff;
      font-size: 8px; font-weight: 700; padding: 1px 5px;
      border-radius: 10px;
    }
    .t-resident {
      padding: 8px 10px; display: flex; align-items: center; gap: 7px;
      border-bottom: 1px solid rgba(255,255,255,0.03);
      cursor: pointer; transition: background 0.1s;
    }
    .t-resident.active { background: rgba(74,61,184,0.2); border-left: 2px solid var(--brand); }
    .t-resident:hover { background: rgba(255,255,255,0.04); }
    .t-res-avatar {
      width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: #fff;
      background: var(--brand);
    }
    .t-res-avatar.ring-green { border: 2px solid var(--success); box-shadow: 0 0 8px rgba(16,185,129,0.6); animation: pulse-amber-m 3s infinite; }
    .t-res-avatar.ring-amber { border: 2px solid var(--warning); box-shadow: 0 0 8px rgba(245,158,11,0.7); animation: pulse-amber-m 1.5s infinite; }
    .t-res-avatar.ring-red   { border: 2px solid var(--danger);  box-shadow: 0 0 8px rgba(239,68,68,0.8);  animation: pulse-red-m 1s infinite; }
    .t-res-info { flex: 1; min-width: 0; }
    .t-res-name { color: #E2E8F0; font-size: 10px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .t-res-room { color: #64748B; font-size: 9px; }
    .t-res-badge {
      padding: 2px 6px; border-radius: 8px;
      font-size: 8px; font-weight: 700; flex-shrink: 0;
    }
    .t-res-badge.g { background: rgba(16,185,129,0.15); color: var(--success); }
    .t-res-badge.a { background: rgba(245,158,11,0.15); color: var(--warning); }
    .t-res-badge.r { background: rgba(239,68,68,0.15); color: var(--danger); }
    /* Main panel */
    .t-main { flex: 1; padding: 10px; overflow: hidden; display: flex; flex-direction: column; gap: 7px; }
    .t-panel-title {
      font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
      color: #64748B; margin-bottom: 2px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .t-panel-title span { color: #94A3B8; font-size: 9px; font-weight: 500; text-transform: none; letter-spacing: 0; }
    .t-vitals-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 5px; }
    .t-vital {
      background: rgba(255,255,255,0.05); border-radius: 8px; padding: 7px 6px; text-align: center;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .t-vital.warn { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.05); }
    .t-vital.crit { border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.07); }
    .t-vital-val { font-size: 13px; font-weight: 800; color: #fff; line-height: 1; }
    .t-vital-val.warn { color: var(--warning); }
    .t-vital-val.crit { color: var(--danger); }
    .t-vital-lbl { font-size: 8px; color: #64748B; margin-top: 2px; }
    .t-news2-row {
      background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(239,68,68,0.05));
      border: 1px solid rgba(239,68,68,0.25);
      border-radius: 10px; padding: 8px 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .t-news2-score { font-size: 28px; font-weight: 900; color: var(--danger); line-height: 1; }
    .t-news2-info { flex: 1; }
    .t-news2-label { color: #94A3B8; font-size: 9px; }
    .t-news2-risk { color: var(--danger); font-size: 11px; font-weight: 700; }
    .t-news2-badge {
      padding: 4px 8px; border-radius: 6px;
      background: rgba(239,68,68,0.2); color: #FCA5A5;
      font-size: 9px; font-weight: 700;
      display: flex; align-items: center; gap: 4px;
    }
    .t-alert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--danger); animation: pulse-red-m 1s infinite; flex-shrink: 0; }
    .t-obs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .t-obs-card {
      background: rgba(255,255,255,0.04); border-radius: 8px; padding: 7px 8px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .t-obs-title { color: #94A3B8; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
    .t-obs-val { color: #E2E8F0; font-size: 11px; font-weight: 600; }
    .t-obs-sub { color: #64748B; font-size: 8px; }
    .t-alert-bar {
      background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
      border-radius: 8px; padding: 6px 10px;
      display: flex; align-items: center; gap: 6px;
      color: #FCA5A5; font-size: 9px; font-weight: 600;
    }
    /* Floating badges */
    .t-badge-float {
      position: absolute; right: 10px; top: 10px;
      background: var(--danger); color: #fff;
      border-radius: 20px; padding: 5px 10px;
      font-size: 10px; font-weight: 700;
      box-shadow: 0 4px 16px rgba(239,68,68,0.5);
      white-space: nowrap; z-index: 10;
      animation: badge-bounce 3s ease-in-out infinite;
    }
    .t-badge-float-2 {
      position: absolute; left: 10px; bottom: 50px;
      background: var(--success); color: #fff;
      border-radius: 20px; padding: 5px 10px;
      font-size: 10px; font-weight: 700; z-index: 10;
      box-shadow: 0 4px 16px rgba(16,185,129,0.5);
      white-space: nowrap;
      animation: badge-bounce-2 3s ease-in-out infinite;
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-mockup { display: none; }
    }

    /* ── FEATURE CARD 3D TILT ── */
    .feature-card {
      transform-style: preserve-3d;
      perspective: 800px;
      transition: transform 0.15s ease, box-shadow 0.2s, border-color 0.2s !important;
      will-change: transform;
    }
    .feature-card::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }
    .feature-card:hover::after { opacity: 1; }

    /* Staggered feature card reveal */
    .features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
    .features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
    .features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
    .features-grid .feature-card:nth-child(4) { transition-delay: 0.24s; }
    .features-grid .feature-card:nth-child(5) { transition-delay: 0.32s; }
    .features-grid .feature-card:nth-child(6) { transition-delay: 0.40s; }
    .features-grid .feature-card:nth-child(7) { transition-delay: 0.48s; }
    .features-grid .feature-card:nth-child(8) { transition-delay: 0.56s; }
    .features-grid .feature-card:nth-child(9) { transition-delay: 0.64s; }

    /* ── AI CARD GLOW ON HOVER ── */
    .ai-card {
      transition: all 0.25s ease !important;
      position: relative; overflow: hidden;
    }
    .ai-card::before {
      content: '';
      position: absolute; inset: -1px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(167,139,250,0.4), rgba(74,61,184,0.2), transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 0;
    }
    .ai-card:hover::before { opacity: 1; }
    .ai-card > * { position: relative; z-index: 1; }

    /* ── BUTTON PULSE GLOW ── */
    .btn-primary {
      position: relative; overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute; inset: -2px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand), var(--brand-light), var(--brand));
      background-size: 200%;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s;
      animation: btn-border-spin 3s linear infinite;
    }
    .btn-primary:hover::after { opacity: 1; }
    @keyframes btn-border-spin {
      0%   { background-position: 0%; }
      100% { background-position: 200%; }
    }

    /* ── SECTION HEADING REVEAL ── */
    .section-heading {
      animation: none; /* overridden by JS */
    }
    .hero-reveal { opacity: 0; transform: translateY(20px); animation: hero-in 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
    .hero-reveal-1 { animation-delay: 0.1s; }
    .hero-reveal-2 { animation-delay: 0.25s; }
    .hero-reveal-3 { animation-delay: 0.4s; }
    .hero-reveal-4 { animation-delay: 0.55s; }
    .hero-reveal-5 { animation-delay: 0.7s; }
    @keyframes hero-in {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── MOCKUP BADGE BOUNCE ── */
    .mockup-float-badge {
      animation: badge-bounce 3s ease-in-out infinite !important;
    }
    .mockup-float-badge-2 {
      animation: badge-bounce-2 3s ease-in-out infinite !important;
      animation-delay: 1.5s !important;
    }
    @keyframes badge-bounce {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-6px); }
    }
    @keyframes badge-bounce-2 {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(6px); }
    }

    /* ── STATUS RING GLOW PULSE ── */
    .status-ring.green { animation: ring-green 3s ease-in-out infinite; }
    .status-ring.amber { animation: ring-amber 1.5s ease-in-out infinite; }
    .status-ring.red   { animation: ring-red   1s ease-in-out infinite; }
    @keyframes ring-green {
      0%,100% { box-shadow: 0 0 10px var(--success), 0 0 20px rgba(16,185,129,0.2); }
      50%     { box-shadow: 0 0 20px var(--success), 0 0 40px rgba(16,185,129,0.35); }
    }
    @keyframes ring-amber {
      0%,100% { box-shadow: 0 0 10px var(--warning), 0 0 20px rgba(245,158,11,0.2); }
      50%     { box-shadow: 0 0 24px var(--warning), 0 0 48px rgba(245,158,11,0.4); }
    }
    @keyframes ring-red {
      0%,100% { box-shadow: 0 0 10px var(--danger), 0 0 20px rgba(239,68,68,0.2); }
      50%     { box-shadow: 0 0 28px var(--danger), 0 0 56px rgba(239,68,68,0.5); }
    }

    /* ── CTA BANNER ANIMATED GRADIENT ── */
    .cta-banner {
      background: linear-gradient(135deg, #3730A3, #4A3DB8, #6D5FE8, #4A3DB8, #3730A3) !important;
      background-size: 300% 300% !important;
      animation: cta-gradient 8s ease infinite !important;
    }
    @keyframes cta-gradient {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ── TRUST BAR ── */
    .trust-items { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

    /* ── FEATURE ICON SPIN ON HOVER ── */
    .feature-card:hover .feature-icon svg {
      animation: icon-spin 0.5s cubic-bezier(0.34,1.56,0.64,1);
    }
    @keyframes icon-spin {
      0%   { transform: scale(1) rotate(0); }
      50%  { transform: scale(1.2) rotate(-15deg); }
      100% { transform: scale(1) rotate(0); }
    }

    /* ── SCROLL PROGRESS BAR ── */
    #scroll-progress {
      position: fixed; top: 68px; left: 0; right: 0;
      height: 3px; z-index: 99;
      background: linear-gradient(90deg, var(--brand), var(--brand-light), #8B5CF6);
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.1s linear;
    }
