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

    :root {
      --bg:        #07090F;
      --bg-2:      #0C0F1C;
      --bg-3:      #121628;
      --border:    rgba(255,255,255,0.07);
      --border-hi: rgba(255,255,255,0.14);
      --c1: #4A8CF7;
      --c2: #9B70F5;
      --c3: #F06BB0;
      --text:      #E6EAFF;
      --muted:     #7A84A0;
      --dim:       #3A4160;
      --grad: linear-gradient(135deg, var(--c1), var(--c2), var(--c3));
      --grad-h: linear-gradient(135deg, #6BA3FF, #B48DFF, #FF8FCC);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ── AMBIENT GLOWS ── */
    .glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
    }
    .glow-blue  { background: rgba(74,140,247,0.18); }
    .glow-purple{ background: rgba(155,112,245,0.15); }
    .glow-pink  { background: rgba(240,107,176,0.12); }
    #hero .glow-blue.glow-hero-blue { width: 700px; height: 700px; top: -200px; left: -200px; }
    #hero .glow-purple.glow-hero-purple { width: 500px; height: 500px; top: 100px; right: -150px; }
    #hero .glow-pink.glow-hero-pink { width: 400px; height: 400px; bottom: 0; left: 35%; }
    #platform .glow-blue.glow-platform-blue { width: 600px; height: 600px; top: 0; left: -200px; opacity: 0.5; }
    #platform .glow-pink.glow-platform-pink { width: 400px; height: 400px; bottom: 0; right: -100px; opacity: 0.5; }
    #how .glow-purple.glow-how-purple { width: 400px; height: 400px; top: -100px; left: 50%; transform: translateX(-50%); }

    /* ── UTILITY ── */
    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .grad-border {
      border: 1px solid transparent;
      background-clip: padding-box;
      position: relative;
    }
    .grad-border::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: var(--grad);
      z-index: -1;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
    .tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
    }

    /* ── NAV ── */
    .nav-logo-img {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
      background: rgba(7,9,15,0.7);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600; font-size: 16px; color: #fff;
      letter-spacing: -0.02em;
    }
    .nav-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; font-weight: 500;
      color: var(--text); letter-spacing: -0.01em;
    }
    .nav-links {
      display: flex; align-items: center; gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px; font-weight: 400;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      display: flex; align-items: center; gap: 12px;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 22px;
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 14px; font-weight: 500;
      cursor: pointer; text-decoration: none;
      transition: all 0.2s;
      border: none;
    }
    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { color: var(--text); border-color: var(--border-hi); }
    .btn-grad {
      background: var(--grad);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 0 24px rgba(155,112,245,0.3);
    }
    .btn-grad:hover {
      background: var(--grad-h);
      box-shadow: 0 0 36px rgba(155,112,245,0.5);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border-hi);
      font-size: 15px;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.25);
    }
    .btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }

    /* ── HERO ── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 0 80px;
      overflow: hidden;
    }
    #hero .glow-blue  { width: 600px; height: 600px; top: -100px; left: -150px; }
    #hero .glow-purple{ width: 500px; height: 500px; top: 100px; right: -100px; }
    #hero .glow-pink  { width: 400px; height: 400px; bottom: 0; left: 30%; }

    .hero-inner {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-hi);
      border-radius: 100px;
      padding: 6px 14px 6px 8px;
      margin-bottom: 28px;
    }
    .hero-eyebrow-pill {
      background: var(--grad);
      border-radius: 100px;
      padding: 2px 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #fff;
    }
    .hero-eyebrow-text {
      font-size: 13px; color: var(--muted);
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 24px;
    }
    h1 em {
      font-style: italic;
    }

    .hero-sub {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 460px;
      margin-bottom: 40px;
    }
    .hero-actions {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 56px;
    }
    .hero-trust {
      display: flex; align-items: center; gap: 12px;
    }
    .hero-trust-avatars {
      display: flex;
    }
    .avatar {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 600; color: #fff;
      margin-left: -8px;
    }
    .avatar:first-child { margin-left: 0; }
    .av1 { background: linear-gradient(135deg,#4A8CF7,#6B5FFF); }
    .av2 { background: linear-gradient(135deg,#9B70F5,#C85FFF); }
    .av3 { background: linear-gradient(135deg,#F06BB0,#FF8F5F); }
    .av4 { background: linear-gradient(135deg,#5F9FFF,#9B70F5); }
    .hero-trust-text { font-size: 13px; color: var(--muted); }
    .hero-trust-text strong { color: var(--text); font-weight: 500; }

    /* ── DASHBOARD MOCKUP ── */
    .dashboard-wrap {
      position: relative;
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }
    .dashboard {
      background: var(--bg-2);
      border: 1px solid var(--border-hi);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
    }
    .dash-header {
      background: var(--bg-3);
      padding: 14px 20px;
      display: flex; align-items: center; gap: 12px;
      border-bottom: 1px solid var(--border);
    }
    .dash-dots { display: flex; gap: 6px; }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dd1 { background: #FF5F57; }
    .dd2 { background: #FFBD2E; }
    .dd3 { background: #28CA42; }
    .dash-title { font-size: 12px; color: var(--muted); margin-left: 6px; }
    .dash-tabs {
      display: flex; gap: 2px;
      margin-left: auto;
    }
    .dash-tab {
      font-size: 11px; padding: 4px 12px;
      border-radius: 6px; color: var(--muted);
    }
    .dash-tab.active {
      background: rgba(74,140,247,0.15);
      color: var(--c1);
    }

    .dash-body {
      display: grid;
      grid-template-columns: 180px 1fr;
      min-height: 320px;
    }
    .dash-sidebar {
      background: rgba(12,15,28,0.6);
      border-right: 1px solid var(--border);
      padding: 16px 12px;
    }
    .dash-sidebar-label {
      font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--dim);
      padding: 0 8px; margin-bottom: 8px; margin-top: 12px;
    }
    .dash-sidebar-label:first-child { margin-top: 0; }
    .sidebar-item {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 10px; border-radius: 6px;
      font-size: 12px; color: var(--muted);
      margin-bottom: 2px; cursor: pointer;
    }
    .sidebar-item.active {
      background: rgba(74,140,247,0.1);
      color: var(--text);
    }
    .sidebar-item .si-icon {
      width: 18px; height: 18px; border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px;
    }
    .si-blue   { background: rgba(74,140,247,0.2); }
    .si-purple { background: rgba(155,112,245,0.2); }
    .si-pink   { background: rgba(240,107,176,0.2); }
    .si-teal   { background: rgba(52,211,153,0.2); }
    .si-orange { background: rgba(251,146,60,0.2); }
    .si-badge {
      margin-left: auto;
      background: rgba(240,107,176,0.2);
      color: var(--c3);
      font-size: 9px; font-weight: 700;
      padding: 1px 6px; border-radius: 10px;
    }

    .dash-main { padding: 20px; }
    .dash-main-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .dash-main-title { font-size: 13px; font-weight: 600; color: var(--text); }
    .dash-main-sub { font-size: 11px; color: var(--muted); }
    .dash-badge {
      background: rgba(74,140,247,0.1);
      border: 1px solid rgba(74,140,247,0.25);
      color: var(--c1);
      font-size: 10px; font-weight: 600;
      padding: 3px 10px; border-radius: 100px;
    }

    .patient-card {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px;
      margin-bottom: 10px;
      transition: border-color 0.2s;
    }
    .patient-card:hover { border-color: var(--border-hi); }
    .patient-card-top {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 10px;
    }
    .patient-avatar {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 600; color: #fff; flex-shrink: 0;
    }
    .pa1 { background: linear-gradient(135deg,#4A8CF7,#9B70F5); }
    .pa2 { background: linear-gradient(135deg,#F06BB0,#9B70F5); }
    .patient-name { font-size: 12px; font-weight: 600; color: var(--text); }
    .patient-meta { font-size: 10px; color: var(--muted); }
    .patient-roles {
      display: flex; gap: 4px; flex-wrap: wrap;
    }
    .role-pill {
      font-size: 9px; font-weight: 600;
      padding: 2px 8px; border-radius: 100px;
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .rp-blue   { background: rgba(74,140,247,0.15); color: #7AAFFF; }
    .rp-purple { background: rgba(155,112,245,0.15); color: #BE9FFF; }
    .rp-pink   { background: rgba(240,107,176,0.15); color: #FF9FD4; }
    .rp-teal   { background: rgba(52,211,153,0.15); color: #6DEBB0; }
    .rp-orange { background: rgba(251,146,60,0.15); color: #FFB37A; }

    .alert-banner {
      display: flex; align-items: center; gap: 8px;
      background: rgba(240,107,176,0.08);
      border: 1px solid rgba(240,107,176,0.2);
      border-radius: 8px;
      padding: 8px 12px;
      margin-bottom: 10px;
    }
    .alert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c3); flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
    .alert-text { font-size: 11px; color: var(--muted); }
    .alert-text strong { color: var(--c3); }

    .vitals-row {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
      margin-top: 8px;
    }
    .vital-chip {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 8px;
    }
    .vital-label { font-size: 9px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
    .vital-value { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.2; margin: 2px 0; }
    .vital-value-small { font-size: 13px; }
    .vital-trend { font-size: 9px; color: #6DEBB0; }
    .vital-trend.warn { color: var(--c3); }

    /* Floating badge */
    .dash-float-badge {
      position: absolute;
      background: var(--bg-2);
      border: 1px solid var(--border-hi);
      border-radius: 10px;
      padding: 10px 14px;
      display: flex; align-items: center; gap: 8px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.4);
      white-space: nowrap;
      font-size: 12px;
      z-index: 2;
    }
    .fb1 { top: -16px; right: -24px; }
    .fb2 { bottom: -16px; left: -24px; }
    .fb-icon {
      width: 28px; height: 28px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
    }
    .fb-icon-grad { background: var(--grad); }
    .fb-icon-good { background: rgba(52,211,153,0.15); font-size: 18px; }
    .fb-label { font-size: 11px; color: var(--muted); }
    .fb-value { font-size: 13px; font-weight: 600; color: var(--text); }

    /* ── STATS STRIP ── */
    #stats {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(12,15,28,0.5);
      padding: 48px 0;
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .stat-item {
      padding: 0 40px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .stat-item:first-child { border-left: 1px solid var(--border); }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px; font-weight: 500;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label { font-size: 14px; color: var(--muted); max-width: 200px; margin: 0 auto; }

    /* ── SECTION COMMON ── */
    section { position: relative; z-index: 1; }
    .section-pad { padding: 120px 0; }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 20px;
    }
    h2 em { font-style: italic; }

    .section-sub {
      font-size: 17px; color: var(--muted);
      line-height: 1.7; max-width: 520px;
    }
    .section-sub-offset { margin-top: 16px; }

    /* ── PROBLEM ── */
    #problem {
      background: var(--bg-2);
    }
    #problem .glow-purple { width: 500px; height: 500px; top: -50px; right: -100px; opacity: 0.7; }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .problem-cards { display: flex; flex-direction: column; gap: 16px; }
    .problem-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      transition: border-color 0.3s, transform 0.3s;
    }
    .problem-card:hover {
      border-color: var(--border-hi);
      transform: translateX(6px);
    }
    .problem-card-icon {
      font-size: 20px; margin-bottom: 10px;
    }
    .problem-card-title {
      font-size: 15px; font-weight: 600; color: var(--text);
      margin-bottom: 6px;
    }
    .problem-card-body {
      font-size: 14px; color: var(--muted); line-height: 1.6;
    }
    .problem-card-note { margin-top: 4px; font-size: 13px; }
    .problem-card-stat {
      margin-top: 12px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px; font-weight: 500; line-height: 1;
    }

    /* ── PLATFORM ── */
    #platform { overflow: hidden; }
    #platform .glow-blue  { width: 600px; height: 600px; top: 0; left: -200px; opacity: 0.6; }
    #platform .glow-pink  { width: 400px; height: 400px; bottom: 0; right: -100px; opacity: 0.6; }

    .platform-header {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 64px;
    }
    .platform-header .section-sub { margin: 0 auto; }

    .roles-tabs {
      display: flex; justify-content: center; gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .role-tab {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 20px; border-radius: 100px;
      font-size: 13px; font-weight: 500;
      cursor: pointer; transition: all 0.2s;
      border: 1px solid var(--border);
      color: var(--muted);
      background: transparent;
      font-family: 'Outfit', sans-serif;
    }
    .role-tab .rt-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: currentColor; opacity: 0.5;
      transition: opacity 0.2s;
    }
    .role-tab.active {
      border-color: transparent;
      background: var(--grad);
      color: #fff;
    }
    .role-tab.active .rt-dot { opacity: 1; }
    .role-tab:not(.active):hover {
      border-color: var(--border-hi); color: var(--text);
    }

    .platform-panel {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      animation: fadeIn 0.4s ease;
    }
    .platform-panel.active { display: grid; }
    @keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

    .panel-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px; font-weight: 500;
      line-height: 1.15; letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .panel-text p {
      font-size: 16px; color: var(--muted);
      line-height: 1.7; margin-bottom: 28px;
    }
    .panel-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .panel-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--muted);
    }
    .pf-check {
      width: 18px; height: 18px; border-radius: 5px;
      background: rgba(74,140,247,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; color: var(--c1);
      flex-shrink: 0; margin-top: 2px;
    }

    .panel-visual {
      background: var(--bg-2);
      border: 1px solid var(--border-hi);
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    }
    .panel-visual-title {
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 20px;
    }
    .mini-card {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 14px;
      margin-bottom: 10px;
    }
    .mini-card:last-child { margin-bottom: 0; }
    .mini-card-row {
      display: flex; align-items: center; gap: 10px;
    }
    .mini-card-icon {
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; flex-shrink: 0;
    }
    .mini-card-label { font-size: 12px; font-weight: 600; color: var(--text); }
    .mini-card-sub { font-size: 11px; color: var(--muted); }
    .mini-card-right { margin-left: auto; text-align: right; }
    .mini-timestamp { font-size: 11px; color: var(--muted); }
    .mini-bar-wrap { margin-top: 10px; }
    .mini-bar-label { font-size: 10px; color: var(--dim); margin-bottom: 4px; display: flex; justify-content: space-between; }
    .mini-bar { height: 4px; background: var(--bg); border-radius: 2px; overflow: hidden; }
    .mini-bar-fill { height: 100%; border-radius: 2px; background: var(--grad); }
    .mini-bar-fill-74 { width: 74%; }
    .mini-bar-fill-84 { width: 84%; }
    .mini-bar-fill-87 { width: 87%; }
    .mini-bar-fill-91 { width: 91%; }

    /* ── HOW IT WORKS ── */
    #how {
      background: var(--bg-2);
    }
    #how .glow-purple { width: 400px; height: 400px; top: 0; left: 50%; transform: translateX(-50%); }

    .how-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 72px;
    }
    .how-header .section-sub { margin: 0 auto; text-align: center; }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      position: relative;
    }
    .how-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(33.33% - 1px);
      right: calc(33.33% - 1px);
      height: 1px;
      background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
      opacity: 0.4;
    }

    .how-step {
      padding: 40px 32px;
      text-align: center;
    }
    .how-step-num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--border-hi);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 500;
      color: var(--text);
      margin: 0 auto 24px;
      position: relative; z-index: 1;
    }
    .how-step:nth-child(1) .how-step-num { box-shadow: 0 0 20px rgba(74,140,247,0.3); border-color: rgba(74,140,247,0.4); color: var(--c1); }
    .how-step:nth-child(2) .how-step-num { box-shadow: 0 0 20px rgba(155,112,245,0.3); border-color: rgba(155,112,245,0.4); color: var(--c2); }
    .how-step:nth-child(3) .how-step-num { box-shadow: 0 0 20px rgba(240,107,176,0.3); border-color: rgba(240,107,176,0.4); color: var(--c3); }

    .how-step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px; font-weight: 500;
      color: var(--text); margin-bottom: 12px;
    }
    .how-step-body {
      font-size: 14px; color: var(--muted); line-height: 1.7;
    }

    /* ── PARTNERSHIP ── */
    #partnership {
      overflow: hidden;
    }
    #partnership .glow-blue   { width: 500px; height: 500px; top: 0; left: -100px; }
    #partnership .glow-pink   { width: 400px; height: 400px; bottom: 0; right: -100px; }
    #partnership .glow-purple { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

    .partnership-inner {
      position: relative;
      background: rgba(12,15,28,0.6);
      border: 1px solid var(--border-hi);
      border-radius: 24px;
      padding: clamp(48px, 7vw, 80px);
      overflow: hidden;
      text-align: center;
    }
    .partnership-inner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: var(--grad);
    }

    .partnership-inner h2 { margin: 0 auto 20px; max-width: 600px; }
    .partnership-inner .section-sub { margin: 0 auto 48px; text-align: center; }
    .tag-centered { justify-content: center; }

    .partner-features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin: 0 auto 52px;
      max-width: 980px;
    }
    .partner-feature {
      position: relative;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      background: rgba(18,22,40,0.72);
      border: 1px solid rgba(134,153,204,0.18);
      border-radius: 16px;
      padding: 24px 24px 26px;
      text-align: left;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 45px rgba(0,0,0,0.16);
      transition: transform 0.3s, border-color 0.3s, background 0.3s;
    }
    .partner-feature::before {
      content: '';
      width: 36px;
      height: 2px;
      border-radius: 999px;
      background: rgba(106,163,255,0.9);
      margin-bottom: 4px;
    }
    .partner-feature:nth-child(2)::before { background: rgba(155,112,245,0.9); }
    .partner-feature:nth-child(3)::before { background: rgba(240,107,176,0.85); }
    .partner-feature::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,0.045), transparent 48%);
      opacity: 0.75;
    }
    .partner-feature:hover {
      transform: translateY(-2px);
      border-color: rgba(150,170,220,0.36);
      background: rgba(20,25,45,0.82);
    }
    .pf-kicker {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #8FB6FF;
    }
    .pf-title {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.18;
      letter-spacing: -0.01em;
      color: var(--text);
    }
    .pf-body {
      max-width: 32ch;
      font-size: 15px;
      color: #99A3BE;
      line-height: 1.62;
    }

    .partnership-actions {
      display: flex; align-items: center; justify-content: center; gap: 16px;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 0 40px;
      position: relative; z-index: 1;
    }
    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-brand {
      display: flex; align-items: center; gap: 10px;
    }
    .footer-logo-img {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .footer-brand-mark {
      width: 28px; height: 28px; border-radius: 7px;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600; font-size: 14px; color: #fff;
    }
    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px; font-weight: 500; color: var(--text);
    }
    .footer-copy { font-size: 13px; color: var(--dim); }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a {
      font-size: 13px; color: var(--muted);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── HERO ENTRY ── */
    .hero-entry { animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) both; }
    .hero-entry-1 { animation-delay: 0.1s; }
    .hero-entry-2 { animation-delay: 0.25s; }
    .hero-entry-3 { animation-delay: 0.4s; }
    .hero-entry-4 { animation-delay: 0.55s; }
    .hero-entry-5 { animation-delay: 0.7s; }
    @keyframes heroIn {
      from { opacity:0; transform: translateY(20px); }
      to   { opacity:1; transform: none; }
    }
    .dash-entry { animation: dashIn 1s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
    @keyframes dashIn {
      from { opacity:0; transform: translateY(40px) scale(0.96); }
      to   { opacity:1; transform: none; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .dashboard-wrap { max-width: 540px; margin: 0 auto; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat-item { border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--border); padding: 32px; }
      .problem-grid { grid-template-columns: 1fr; gap: 48px; }
      .platform-panel { grid-template-columns: 1fr; }
      .how-steps { grid-template-columns: 1fr; gap: 0; }
      .how-steps::before { display: none; }
      .partner-features { grid-template-columns: 1fr; max-width: 620px; }
      .partner-feature { min-height: 0; }
      .partnership-inner { padding: 48px 24px; }
      .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
      .nav-links { display: none; }
    }
