  /* ─── HERO ───────────────────────────────────────── */
  .hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,201,167,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,201,167,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
  }

  .hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,201,167,0.12) 0%, rgba(43,108,176,0.08) 40%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
  }

  .hero-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,108,176,0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.25);
    color: var(--teal);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--teal);
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--teal);
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }

  .btn-primary:hover { background: #00e0bb; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,167,0.3); }

  .btn-outline {
    background: transparent;
    color: white;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

  /* hero right - platform visual */
  .hero-platform {
    position: relative;
  }

  .platform-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
  }

  .platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .platform-title {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--teal);
    font-weight: 500;
  }

  .live-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 1.5s infinite;
  }

  .alert-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background 0.2s;
  }

  .alert-item:hover { background: rgba(255,255,255,0.03); }

  .alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .alert-icon.critical { background: rgba(245,101,101,0.15); }
  .alert-icon.warning { background: rgba(246,173,85,0.15); }
  .alert-icon.info { background: rgba(0,201,167,0.12); }

  .alert-text { flex: 1; min-width: 0; }

  .alert-title {
    font-size: 13.5px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .alert-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
  }

  .alert-time {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 2px;
  }

  .severity-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 6px;
  }

  .severity-chip.critical { background: rgba(245,101,101,0.2); color: #FC8181; }
  .severity-chip.warning { background: rgba(246,173,85,0.2); color: var(--amber); }
  .severity-chip.new { background: rgba(0,201,167,0.15); color: var(--teal); }

  .platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .stat-item {
    text-align: center;
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    line-height: 1;
  }

  .stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
  }

  /* ─── TICKER ─────────────────────────────────────── */
  .ticker {
    background: rgba(0,201,167,0.07);
    border-top: 1px solid rgba(0,201,167,0.1);
    border-bottom: 1px solid rgba(0,201,167,0.1);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: var(--navy-mid);
  }

  .ticker-track {
    display: inline-flex;
    animation: ticker 30s linear infinite;
    gap: 3rem;
  }

  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 0 1.5rem;
  }

  .ticker-item span { color: var(--teal); font-weight: 600; }

  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ─── SECTIONS ───────────────────────────────────── */
  section { padding: 6rem 0; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
  }

  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
  }

  .section-sub {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.65;
    max-width: 640px;
    font-weight: 300;
  }

  /* ─── DIFFERENTIATORS ────────────────────────────── */
  .diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
  }

  .diff-cell {
    background: white;
    padding: 2.5rem;
    position: relative;
  }

  .diff-cell::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .diff-cell:hover::before { opacity: 1; }

  .diff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 22px;
  }

  .diff-cell h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .diff-cell p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
  }

  /* ─── PLATFORM OVERVIEW ──────────────────────────── */
  .platform-sec {
    background: var(--navy);
    color: white;
  }

  .platform-sec .section-heading { color: white; }
  .platform-sec .section-sub { color: rgba(255,255,255,0.6); }

  .layers-diagram {
    margin-top: 3.5rem;
    position: relative;
  }

  .layer {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
  }

  .layer:hover { background: rgba(255,255,255,0.05); border-color: rgba(0,201,167,0.3); transform: translateX(4px); }

  .layer-num {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
  }

  .layer-content { flex: 1; }

  .layer-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
  }

  .layer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  .layer-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .layer-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
  }

  .layer-1 { background: rgba(0,201,167,0.05); }
  .layer-2 { background: rgba(43,108,176,0.05); }
  .layer-3 { background: rgba(246,173,85,0.04); }
  .layer-4 { background: rgba(0,201,167,0.03); }

  /* ─── SOLUTIONS PREVIEW ──────────────────────────── */
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .sol-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .sol-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .sol-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }
  .sol-card:hover::after { transform: scaleX(1); }

  .sol-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.25rem;
  }

  .sol-icon.clinical { background: rgba(0,201,167,0.1); }
  .sol-icon.genai { background: rgba(43,108,176,0.1); }
  .sol-icon.agentic { background: rgba(246,173,85,0.1); }

  .sol-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }

  .sol-card p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .sol-card-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: gap 0.2s;
  }

  .sol-card:hover .sol-card-link { gap: 9px; }

  /* ─── METRICS ────────────────────────────────────── */
  .metrics-sec {
    background: var(--off-white);
  }

  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
  }

  .metric-cell {
    background: white;
    padding: 2.5rem;
    text-align: center;
  }

  .metric-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .metric-num span { color: var(--teal); }

  .metric-label {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
  }

  .metric-source {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 6px;
  }

  /* ─── WORKFLOW ────────────────────────────────────── */
  .workflow-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
  }

  .workflow-steps {
    list-style: none;
    counter-reset: step;
  }

  .workflow-steps li {
    counter-increment: step;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
  }

  .workflow-steps li::before {
    content: counter(step, decimal-leading-zero);
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
  }

  .workflow-steps li h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .workflow-steps li p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.55;
  }

  .workflow-img-placeholder {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
  }

  .workflow-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,201,167,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,201,167,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  /* ─── CLINICAL AI VISUAL ─────────────────────────── */
  .clinical-img {
    position: relative;
  }

  .scan-display {
    background: #0A0E1A;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }

  .scan-toolbar {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .scan-dot { width: 9px; height: 9px; border-radius: 50%; }

  .scan-body {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1rem;
    min-height: 320px;
  }

  .scan-viewport {
    background: #000;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: hidden;
  }

  .scan-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .scan-inner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60,60,80,0.9) 0%, rgba(20,20,30,0.95) 100%);
    border: 0.5px solid rgba(255,255,255,0.06);
    position: relative;
  }

  .finding-marker {
    position: absolute;
    top: 28%;
    right: 25%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #F56565;
    animation: pulse-red 2s infinite;
  }

  @keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,101,101,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(245,101,101,0); }
  }

  /*.finding-label {*/
  /*  position: absolute;*/
  /*  top: 14%;*/
  /*  right: 8%;*/
  /*  background: rgba(245,101,101,0.1);*/
  /*  border: 1px solid rgba(245,101,101,0.3);*/
  /*  border-radius: 6px;*/
  /*  padding: 5px 10px;*/
  /*  font-size: 11px;*/
  /*  color: #FC8181;*/
  /*  white-space: nowrap;*/
  /*}*/

  .scan-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .sidebar-section {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
  }

  .sidebar-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .sidebar-value {
    font-size: 13px;
    color: white;
    font-weight: 500;
  }

  .confidence-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
  }

  .confidence-fill {
    height: 100%;
    background: var(--teal);
    border-radius: 2px;
    transition: width 1s ease;
  }

  /* ─── REGULATORY NOTICE ──────────────────────────── */
  .reg-notice {
    background: rgba(246,173,85,0.08);
    border: 1px solid rgba(246,173,85,0.2);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
  }

  .reg-notice-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .reg-notice p {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.55;
  }

  .reg-notice strong { color: var(--gray-800); }

  /* ─── QUOTES ─────────────────────────────────────── */
  .quotes-sec { background: var(--off-white); }

  .quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .quote-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }

  .quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--teal);
    margin-bottom: 0.75rem;
    display: block;
  }

  .quote-text {
    font-size: 15px;
    color: var(--gray-800);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
  }

  .author-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
  .author-role { font-size: 12px; color: var(--gray-600); }

  /* ─── CTA BANNER ─────────────────────────────────── */
  .cta-banner {
    background: var(--navy);
    text-align: center;
    padding: 5rem 2rem;
  }

  .cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.6;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }