
  :root{
    /* Real Blockwrap palette — mapped from primitives to usage (see chat for reasoning) */
    --navy: #011f25;        /* Cyan 900 — dark backgrounds (hero, topbar, stepper) */
    --navy-soft: #005263;   /* Cyan 600 — slightly lighter dark surface */
    --green: #005263;       /* Cyan 600 — primary button fill (Anchor cyan too light for white text) */
    --green-light: #22d8e5; /* Cyan Anchor — accents, active states, progress */
    --bg: #f2fbfa;          /* Secondary Teal 50 */
    --border-soft: #dedede; /* Neutral 200 */
    --text-dark: #111111;   /* Neutral 1000 */
    --text-muted: #808080;  /* Neutral 500 */
    --white: #ffffff;       /* Neutral 0 */
    --success-bg: #dcfce7;  /* Success 100 */
    --success-border: #86efac; /* Success 300 */
    --success-text: #15803d;  /* Success 700 */
  }
  *{box-sizing:border-box;}
  body{
    margin:0;
    font-family:'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
    color:var(--text-dark);
    background:var(--bg);
  }
  .screen{ display:none; }
  .screen.active{ display:block; }

  /* ===== AUTH SCREEN ===== */
  #screen-auth.active{ display:flex; height:100vh; overflow:hidden; }
  #screen-2fa.active{ display:flex; height:100vh; overflow:hidden; }
  .hero{
    flex:1 1 45%;
    min-width:0;
    position:relative;
    background:
      linear-gradient(160deg, rgba(19,34,62,0.80), rgba(19,34,62,0.92)),
      url('images/img-0.jpeg');
    background-size:cover;
    background-position:center;
    color:var(--white);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:64px;
  }

  .hero-logo{
    display:flex;align-items:center;gap:14px;
    font-weight:600;letter-spacing:6px;font-size:20px;
    position:absolute; top:56px; left:64px;
  }
  .hero-logo svg{width:180px;height:auto;}
  .hero h1{ font-size:36px; font-weight:700; max-width:520px; line-height:1.25; margin-bottom:20px; }
  .hero p{ max-width:480px; font-size:15px; color:rgba(255,255,255,0.75); line-height:1.6; margin-bottom:36px; }
  .hero-dots{ display:flex; gap:6px; }
  .hero-dots span{ width:20px;height:3px;border-radius:2px; background:rgba(255,255,255,0.25); }
  .hero-dots span.active{ background:var(--white); width:28px; }

  .auth{ flex:1 1 55%; min-width:0; background:var(--white); display:flex; align-items:flex-start; justify-content:center; padding:clamp(24px, 6vw, 56px); padding-top:clamp(56px, 10vh, 96px); overflow-y:auto; }
  .auth-inner{ width:100%; max-width:440px; }
  .form-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:12px; padding:36px; box-shadow:0 4px 24px rgba(19,34,62,0.06); }
  .auth-logo{ display:flex;align-items:center;justify-content:center;gap:16px; font-weight:600;letter-spacing:6px;font-size:26px; color:var(--navy); margin-bottom:44px; }
  .auth-logo svg{ width:180px;height:auto; }

  .tabs{ display:flex; justify-content:center; border-bottom:1px solid var(--border-soft); margin-bottom:32px; }
  .tab{ padding-bottom:12px; font-size:15px; font-weight:500; color:var(--text-muted); cursor:pointer; border-bottom:2px solid transparent; margin:0 28px; }
  .tab.active{ color:var(--navy); border-bottom-color:var(--green); font-weight:600; }

  h2{ font-size:22px; margin:0 0 6px; text-align:center; }
  .subtitle{ font-size:13.5px; color:var(--text-muted); margin-bottom:28px; text-align:center; }

  .oauth-row{ display:flex; gap:12px; margin-bottom:22px; }
  .oauth-btn{ flex:1; display:flex;align-items:center;justify-content:center;gap:8px; padding:13px; border:1.5px solid var(--border-soft); border-radius:6px; font-size:13.5px; font-weight:500; background:var(--white); cursor:pointer; }
  .oauth-btn:hover{ border-color:var(--navy); }

  .divider{ display:flex;align-items:center;gap:12px; color:var(--text-muted); font-size:12px; margin-bottom:22px; }
  .divider::before, .divider::after{ content:''; flex:1; height:1px; background:var(--border-soft); }

  .field{ margin-bottom:20px; }
  .field label{ display:block; font-size:13px; font-weight:500; margin-bottom:8px; }
  .field input{ width:100%; padding:13px 15px; border:1.5px solid var(--border-soft); border-radius:6px; font-size:14px; }
  .field input:focus{ outline:none; border-color:var(--green); }

  .btn-primary{ width:100%; background:var(--green-light); color:var(--navy); border:none; padding:15px; border-radius:8px; font-size:14.5px; font-weight:700; cursor:pointer; margin-top:6px; }
  .btn-primary:hover{ background:#5ee5ef; }
  .btn-eoi-submitted{ background:#dcfce7 !important; color:#15803d !important; cursor:default !important; opacity:1 !important; }

  .switch-line{ text-align:center; margin-top:26px; font-size:13.5px; color:var(--text-muted); }
  .switch-line a{ color:var(--green); font-weight:600; text-decoration:none; cursor:pointer; }

  .entity-note{ margin-top:24px; padding:12px 14px; background:#dcfce7; border:1px solid #86efac; border-radius:6px; font-size:12px; color:#15803d; }

  /* ===== ONBOARDING SCREEN ===== */
  .topbar{ background:var(--navy); display:flex; align-items:center; justify-content:space-between; padding:18px 40px; }
  .logo{ display:flex; align-items:center; gap:12px; color:var(--white); font-weight:600; letter-spacing:4px; font-size:20px; }
  .logo svg{ width:30px;height:30px; }
  .account-icon{ width:34px;height:34px;border-radius:50%; border:1.5px solid rgba(255,255,255,0.4); display:flex;align-items:center;justify-content:center; color:var(--white); }
  .back-link{ color:rgba(255,255,255,0.6); font-size:13px; cursor:pointer; }
  .back-link:hover{ color:var(--white); }

  .stepper-wrap{ background:var(--white); padding:28px 40px 20px; border-bottom:1px solid var(--border-soft); }
  .stepper{ display:flex; max-width:1100px; margin:0 auto; }
  .step{ flex:1; position:relative; text-align:center; cursor:pointer; user-select:none; }
  .step:not(:last-child)::after{ content:''; position:absolute; top:15px; left:calc(50% + 26px); right:calc(-50% + 26px); border-top:2px dotted var(--border-soft); z-index:0; }
  .step.completed:not(:last-child)::after{ border-top-color:var(--green); }
  .step-circle{ position:relative; z-index:1; width:30px;height:30px; border-radius:50%; margin:0 auto 10px; display:flex;align-items:center;justify-content:center; font-size:13px;font-weight:600; border:2px solid var(--border-soft); color:var(--text-muted); background:var(--white); transition:all .2s ease; }
  .step.active .step-circle{ border-color:var(--navy); color:var(--white); background:var(--navy); box-shadow:0 0 0 4px rgba(1,31,37,0.1); }
  .step.completed .step-circle{ border-color:var(--green); background:var(--green); color:var(--white); }
  .step-label{ font-size:13px; font-weight:500; color:var(--text-muted); letter-spacing:.3px; }
  .step.active .step-label{ color:var(--text-dark); font-weight:600; }
  .step.completed .step-label{ color:var(--text-dark); }

  .substeps{ display:flex; justify-content:center; gap:6px; margin-top:8px; height:8px; }
  .substeps .dot{ width:6px;height:6px;border-radius:50%; background:var(--border-soft); }
  .substeps .dot.done{ background:var(--green); }
  .substeps .dot.current{ background:var(--navy); box-shadow:0 0 0 3px rgba(1,31,37,0.12); }
  .substep-caption{ text-align:center; font-size:11px; color:var(--text-muted); margin-top:6px; }

  .content{ max-width:640px; margin:64px auto; padding:0 24px; }
  .content h1{ font-size:24px; font-weight:600; margin-bottom:36px; }
  .field-row{ display:flex; gap:24px; margin-bottom:28px; }
  .field-row .field{ flex:1; margin-bottom:0; }
  .field label .req{ color:#C0392B; }
  .field label .info{ width:14px;height:14px;border-radius:50%; background:var(--green-light); color:var(--white); font-size:10px; display:inline-flex;align-items:center;justify-content:center; margin-left:4px; }
  .actions{ margin-top:44px; display:flex; justify-content:flex-end; gap:12px; }

  .note{ max-width:640px; margin:0 auto 40px; padding:14px 18px; background:#dcfce7; border:1px solid #86efac; border-radius:6px; font-size:12.5px; color:#15803d; }

  /* ===== SIDEBAR (hover-expand) ===== */
  .sidebar{
    position:fixed; top:0; left:0; height:100vh; width:64px;
    background:
      linear-gradient(rgba(1,31,37,0.82), rgba(1,31,37,0.92)),
      url('images/img-1.jpeg');
    background-size:cover; background-position:center top;
    border-right:1px solid rgba(255,255,255,0.08);
    z-index:200; overflow:hidden; transition:width .18s ease;
    display:flex; flex-direction:column; padding:20px 0;
  }
  .sidebar:hover{ width:230px; box-shadow:6px 0 28px rgba(0,0,0,0.25); }
  .sidebar-logo{ padding:4px 20px 26px; margin-bottom:16px; display:flex; align-items:center; }
  .sidebar-logo .sidebar-item-label{ margin-left:12px; }
  .sidebar-logo svg{ fill:currentColor; }
  .sidebar-nav{ overflow:hidden; }
  .sidebar-bottom{ margin-top:auto; padding-top:12px; border-top:1px solid rgba(255,255,255,0.12); overflow:hidden; }
  .sidebar-avatar-block{ display:flex; align-items:center; padding:11px 20px; cursor:pointer; margin-bottom:4px; }
  .sidebar-avatar-block:hover{ background:rgba(255,255,255,0.06); }
  .sidebar-avatar{ width:26px; height:26px; border-radius:50%; background:var(--green-light); color:var(--navy); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; flex-shrink:0; margin-right:14px; }
  .sidebar-avatar-info{ opacity:0; transition:opacity .12s ease; white-space:nowrap; overflow:hidden; }
  .sidebar:hover .sidebar-avatar-info{ opacity:1; }
  .sidebar-email{ font-size:12px; font-weight:600; color:var(--white); }
  .sidebar-item{
    display:flex; align-items:center; padding:11px 20px;
    color:rgba(255,255,255,0.65); cursor:pointer; white-space:nowrap; user-select:none;
  }
  .sidebar-item:hover{ background:rgba(255,255,255,0.08); color:var(--white); }
  .sidebar-item.active{ background:rgba(255,255,255,0.14); color:var(--white); font-weight:600; }
  .sidebar-item svg{ width:19px; height:19px; flex-shrink:0; margin-right:14px; stroke:var(--green-light); transition:stroke .15s ease; }
  .sidebar-item-label{ opacity:0; transition:opacity .12s ease; font-size:13.5px; }
  .sidebar:hover .sidebar-item-label{ opacity:1; }
  .sidebar-group-label{ font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:rgba(255,255,255,0.38); padding:0 20px; max-height:0; overflow:hidden; opacity:0; transition:opacity .12s ease, max-height .15s ease, padding .15s ease; white-space:nowrap; }
  .sidebar:hover .sidebar-group-label{ opacity:1; max-height:40px; padding:16px 20px 6px; }
  .sidebar:hover .sidebar-group-label:first-child{ padding-top:4px; }

  .dash-main{ margin-left:64px; display:flex; flex-direction:column; min-height:100vh; }

  /* ===== INVESTMENT ENTITY SWITCHER ===== */
  .profile-switcher-bar{ background:var(--white); border-bottom:1px solid var(--border-soft); padding:14px 40px; position:relative; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
  .psb-right{ display:flex; align-items:center; gap:10px; margin-left:auto; }
  .psb-icon-btn{ position:relative; width:38px; height:38px; border-radius:10px; border:1.5px solid var(--border-soft); display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text-muted); transition:border-color .15s ease, background .15s ease; }
  .psb-icon-btn:hover{ background:var(--bg); border-color:var(--text-muted); }
  .psb-icon-btn svg{ width:18px; height:18px; }

  /* ===== ENTITY & HOLDINGS PAGES ===== */
  .page-wrap{ padding:32px 40px 48px; flex:1; }
  #deals-container{ flex:1; }
  .page-title{ font-size:24px; font-weight:700; color:var(--text-dark); margin:0 0 4px; }
  .entities-header{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:28px; }
  .entities-sub{ font-size:13.5px; color:var(--text-muted); margin-top:4px; }
  .entity-grid{ display:flex; flex-wrap:wrap; gap:20px; }
  .entity-table{ width:100%; border-collapse:collapse; }
  .entity-table thead th{ padding:11px 18px; text-align:left; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); background:#fafafa; border-bottom:1px solid var(--border-soft); }
  .entity-table thead th:first-child{ border-radius:12px 0 0 0; }
  .entity-table thead th:last-child{ border-radius:0 12px 0 0; }
  .entity-table tbody td{ padding:15px 18px; font-size:13.5px; color:var(--text-dark); border-bottom:1px solid #f3f4f6; vertical-align:middle; }
  .entity-table tbody tr:last-child td{ border-bottom:none; }
  .entity-row{ cursor:pointer; transition:background .12s; }
  .entity-row:hover td{ background:#f6fdfc; }
  .entity-row-name{ display:flex; align-items:center; gap:12px; font-weight:600; color:var(--text-dark); }
  .entity-row-avatar{ width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; letter-spacing:.5px; flex-shrink:0; }
  .entity-row-action{ color:var(--green); font-weight:600; font-size:13px; white-space:nowrap; text-align:right; }
  .entity-add-btn{ margin-top:14px; background:none; border:1.5px dashed var(--border-soft); border-radius:10px; padding:11px 20px; font-size:13px; font-weight:600; color:var(--text-muted); cursor:pointer; font-family:inherit; transition:border-color .15s,color .15s; }
  .entity-add-btn:hover{ border-color:var(--green); color:var(--green); }
  .entity-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:24px; width:280px; cursor:pointer; transition:border-color .15s, box-shadow .15s; display:flex; flex-direction:column; }
  .entity-card:hover{ border-color:var(--green-light); box-shadow:0 8px 24px rgba(0,0,0,0.06); }
  .entity-card-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
  .entity-card-avatar{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; letter-spacing:.5px; flex-shrink:0; }
  .entity-card-name{ font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
  .entity-card-meta{ font-size:12px; color:var(--text-muted); margin-bottom:16px; }
  .entity-card-divider{ height:1px; background:var(--border-soft); margin-bottom:16px; }
  .entity-card-stats{ display:flex; gap:0; flex:1; }
  .entity-card-stat{ flex:1; }
  .entity-card-stat-val{ font-size:13.5px; font-weight:700; color:var(--text-dark); }
  .entity-card-stat-lbl{ font-size:11px; color:var(--text-muted); margin-top:2px; }
  .entity-card-notice{ display:flex; align-items:center; gap:8px; font-size:12.5px; color:#92400e; background:#fff8ed; border:1px solid #fde68a; border-radius:8px; padding:10px 12px; flex:1; line-height:1.4; }
  .entity-card-footer{ margin-top:18px; font-size:12.5px; font-weight:700; color:var(--green); }
  .entity-card-footer-cta{ color:var(--navy); }
  .entity-create-card{ width:280px; border:1.5px dashed var(--border-soft); border-radius:16px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:var(--green); font-weight:600; font-size:13.5px; cursor:pointer; transition:border-color .15s, background .15s; min-height:220px; }
  .entity-create-card:hover{ border-color:var(--green); background:var(--bg); }
  .entity-create-icon{ width:40px; height:40px; border-radius:50%; border:1.5px solid var(--green); display:flex; align-items:center; justify-content:center; font-size:20px; }

  .holdings-table-wrap{ background:var(--white); border:1px solid var(--border-soft); border-radius:16px; overflow-x:auto; overflow-y:hidden; margin-bottom:24px; }
  .holdings-table{ width:max-content; min-width:100%; border-collapse:collapse; }
  .holdings-table th{ text-align:left; font-size:11.5px; text-transform:uppercase; letter-spacing:.3px; color:var(--text-muted); padding:14px 20px; border-bottom:1px solid var(--border-soft); white-space:nowrap; }
  .holdings-table td{ padding:16px 20px; font-size:13.5px; color:var(--text-dark); border-bottom:1px solid var(--border-soft); white-space:nowrap; }
  .holdings-table tfoot td{ font-weight:700; border-bottom:none; }
  .holdings-empty{ text-align:center; color:var(--text-muted); padding:32px 20px; }
  .holdings-empty a{ color:var(--green); font-weight:600; }

  .action-card-row{ display:flex; flex-wrap:wrap; gap:16px; }
  .action-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:14px; padding:20px 22px; width:240px; cursor:pointer; position:relative; transition:border-color .15s ease, box-shadow .15s ease; }
  .action-card:hover{ border-color:var(--green-light); box-shadow:0 8px 24px rgba(0,0,0,0.06); }
  .action-card-title{ font-size:14.5px; font-weight:700; color:var(--green); margin-bottom:6px; }
  .action-card-desc{ font-size:12px; color:var(--text-muted); line-height:1.5; padding-right:16px; }
  .action-card-arrow{ position:absolute; top:20px; right:18px; color:var(--green); font-weight:700; }
  .profile-switcher-btn{ display:inline-flex; align-items:center; cursor:pointer; font-size:14px; user-select:none; border:1.5px solid var(--border-soft); border-radius:10px; padding:9px 14px; transition:border-color .15s ease, background .15s ease; min-width:280px; }
  .profile-switcher-btn:hover{ background:var(--bg); border-color:var(--text-muted); }
  .profile-switcher-btn.open{ border-color:var(--navy); background:var(--bg); }
  .profile-switcher-btn .psb-label{ color:var(--text-muted); margin-right:6px; }
  .profile-switcher-btn .psb-value{ font-weight:700; color:var(--text-dark); margin-right:8px; flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .profile-switcher-btn svg{ width:14px; height:14px; color:var(--text-muted); transition:transform .15s ease; }
  .profile-switcher-btn.open svg{ transform:rotate(180deg); }

  .profile-dropdown{ position:absolute; top:100%; left:40px; margin-top:6px; background:var(--white); border:1px solid var(--border-soft); border-radius:14px; box-shadow:0 12px 32px rgba(0,0,0,0.12); width:420px; z-index:150; display:none; overflow:hidden; }
  .profile-dropdown.open{ display:block; }
  .profile-row{ display:flex; align-items:center; justify-content:space-between; padding:16px 20px; cursor:pointer; border-bottom:1px solid var(--border-soft); }
  .profile-row:hover{ background:var(--bg); }
  .profile-row-id{ font-weight:700; font-size:14px; color:var(--text-dark); }
  .profile-row-type{ font-size:12px; color:var(--text-muted); margin-top:2px; }
  .p-badge{ font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px; white-space:nowrap; }
  .p-badge-verified{ background:#dcfce7; color:#15803d; }
  .p-badge-pending{ background:#fef3c7; color:#92400e; }
  .add-profile-row{ display:flex; align-items:center; padding:16px 20px; color:var(--green); font-weight:700; font-size:13.5px; cursor:pointer; }
  .add-profile-row:hover{ background:var(--bg); }

  /* ===== DASHBOARD HERO ===== */
  .dash-hero{ display:none; position:relative; overflow:hidden; background:var(--navy); padding:28px 40px; }
  .dash-hero-illustration{ position:absolute; inset:0; z-index:0; background-image:radial-gradient(rgba(34,216,229,0.18) 1.2px, transparent 1.2px); background-size:22px 22px; mask-image:linear-gradient(120deg, black, transparent 75%); -webkit-mask-image:linear-gradient(120deg, black, transparent 75%); }
  .dash-hero-top{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
  .dash-hero-left{ flex:1.1; min-width:260px; }
  .dash-hero-left h1{ font-size:24px; font-weight:800; margin:0 0 6px; color:var(--white); letter-spacing:.2px; }
  .dash-hero-left p{ font-size:13.5px; color:rgba(255,255,255,0.65); margin:0; }
  .dash-hero-right{ flex:1.15; min-width:320px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .stat-icon-card{ background:var(--white); border-radius:14px; padding:14px 16px; display:flex; align-items:center; justify-content:space-between; gap:10px; box-shadow:0 1px 4px rgba(1,31,37,0.08); }
  .stat-icon-card-num{ font-size:19px; font-weight:800; color:var(--text-dark); line-height:1.2; }
  .stat-icon-card-label{ font-size:11px; color:var(--text-muted); margin-top:2px; }
  .stat-icon-badge{ width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .stat-icon-badge svg{ width:17px; height:17px; }

  /* ===== DEALS TOOLBAR ===== */
  .deals-section-header-row{ display:flex; align-items:center; justify-content:space-between; padding:28px 40px 0; gap:16px; flex-wrap:wrap; }
  .deals-section-title{ font-size:22px; font-weight:700; color:var(--text-dark); letter-spacing:.2px; }
  .deals-toolbar-filters{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
  .deals-geo-select{ padding:10px 14px; border:1.5px solid var(--border-soft); border-radius:8px; font-size:13px; background:var(--white); color:var(--text-dark); cursor:pointer; outline:none; }
  .deals-reset-btn{ padding:10px 14px; border:1.5px solid #e0a0a0; border-radius:8px; background:var(--white); font-size:13px; color:#c0392b; cursor:pointer; white-space:nowrap; font-family:inherit; font-weight:500; }
  .deals-reset-btn:hover{ background:#fff5f5; }
  .custom-select{ position:relative; }
  .custom-select-btn{ display:flex; align-items:center; justify-content:space-between; gap:8px; width:160px; padding:10px 14px; border:1.5px solid var(--border-soft); border-radius:8px; background:var(--white); font-size:13px; color:var(--text-dark); cursor:pointer; white-space:nowrap; font-family:inherit; }
  .custom-select-btn:hover{ border-color:#bbb; }
  .custom-select.open .custom-select-btn{ border-color:var(--navy); }
  .custom-select-menu{ display:none; position:absolute; top:calc(100% + 6px); left:0; min-width:100%; background:var(--white); border:1.5px solid var(--border-soft); border-radius:10px; box-shadow:0 8px 24px rgba(0,0,0,.10); z-index:200; overflow:hidden; }
  .custom-select.open .custom-select-menu{ display:block; }
  .custom-select-opt{ padding:10px 16px; font-size:13px; cursor:pointer; color:var(--text-dark); white-space:nowrap; }
  .custom-select-opt:hover{ background:var(--bg); }
  .custom-select-opt.selected{ color:var(--navy); font-weight:600; }

  /* ===== FILTER TABS + TOOLBAR ===== */
  .filter-row{ display:flex; align-items:center; justify-content:space-between; padding:12px 40px 0; flex-wrap:wrap; gap:16px; }
  .filter-tabs{ display:flex; gap:6px; background:var(--bg); padding:4px; border-radius:10px; }
  .filter-tab{ padding:9px 18px; border-radius:8px; font-size:13px; font-weight:600; cursor:pointer; color:var(--text-muted); }
  .filter-tab.active{ background:var(--navy); color:var(--white); }
  .search-box{ padding:10px 16px; border:1.5px solid var(--border-soft); border-radius:8px; font-size:13px; width:220px; }

  .section-header{ display:flex; align-items:center; gap:10px; padding:24px 40px 4px; }
  .section-header h3{ font-size:20px; font-weight:700; margin:0; letter-spacing:.3px; }
  .count-badge{ background:var(--navy); color:var(--white); font-size:12px; font-weight:700; padding:2px 10px; border-radius:20px; }

  /* ===== DEAL DETAIL PAGE ===== */
  .dd-back{ padding:20px 40px 0; font-size:13px; color:var(--text-muted); cursor:pointer; }
  .dd-back:hover{ color:var(--navy); }
  .dd-hero-card{ display:flex; flex-wrap:wrap; background:var(--white); margin:16px 40px 0; border-radius:20px; border:1px solid var(--border-soft); overflow:hidden; position:relative; }
  .dd-hero-copy{ flex:1.6; min-width:320px; padding:36px; }
  .dd-meta{ font-size:12.5px; color:var(--text-muted); letter-spacing:.5px; text-transform:uppercase; margin-bottom:10px; }
  .dd-hero-top-row{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap; margin-bottom:10px; }
  .dd-hero-top-row .dd-meta{ margin-bottom:0; }
  .dd-title{ font-size:26px; font-weight:700; color:var(--text-dark); margin:0 0 14px; text-transform:uppercase; letter-spacing:.3px; }
  .dd-desc{ font-size:14px; color:var(--text-muted); max-width:640px; line-height:1.6; margin-bottom:14px; }
  .dd-offered{ font-size:12.5px; color:var(--text-muted); margin-bottom:24px; }
  .dd-stats-row{ display:flex; flex-wrap:wrap; align-items:flex-start; padding-bottom:24px; border-bottom:1px solid rgba(1,31,37,0.12); margin-bottom:24px; }
  .dd-stat{ margin-right:40px; margin-bottom:12px; }
  .dd-meta-badge-row{ display:flex; align-items:center; gap:12px; }
  .dd-status-badge{ background:#dcfce7; color:#15803d; font-size:11px; font-weight:700; padding:5px 14px; border-radius:999px; white-space:nowrap; height:fit-content; }
  .dd-cta-row{ display:flex; flex-shrink:0; }
  .dd-btn-outline{ background:var(--white); color:var(--navy); border:1.5px solid var(--navy); padding:11px 24px; border-radius:8px; font-size:14px; font-weight:700; cursor:pointer; margin-left:14px; }
  .dd-btn-outline:hover{ background:var(--bg); }
  .dd-hero-photo{ flex:1; min-width:280px; min-height:320px; background-size:cover; background-position:center; position:relative; }
  .dd-hero-photo::after{ content:''; position:absolute; inset:0; background:linear-gradient(rgba(1,31,37,0.10),rgba(1,31,37,0.32)); }
  .dd-hero-chevron{ width:38px; height:38px; background:var(--navy); transform:rotate(45deg); margin:-19px auto 0; border-radius:6px; position:relative; z-index:2; }

  .dd-tabs{ display:flex; margin:32px 40px 0; border-bottom:1.5px solid var(--border-soft); }
  .dd-tab{ padding:12px 24px; font-size:14px; font-weight:600; color:var(--text-muted); cursor:pointer; border-bottom:2.5px solid transparent; margin-bottom:-1.5px; }
  .dd-tab.active{ color:var(--navy); border-bottom-color:var(--navy); }
  .dd-tab-content{ padding:28px 40px 8px; }

  .dd-two-col{ display:flex; flex-wrap:wrap; gap:24px; }
  .dd-main-col{ flex:2; min-width:320px; background:var(--white); border:1px solid var(--border-soft); border-radius:14px; padding:32px 36px; }
  .dd-side-col{ flex:1; min-width:260px; }

  .dd-section-title{ font-size:16px; font-weight:700; color:var(--text-dark); margin:28px 0 12px; text-transform:uppercase; letter-spacing:.4px; }
  .dd-section-title:first-child{ margin-top:0; }
  .dd-body-text{ font-size:13.5px; color:var(--text-muted); line-height:1.65; margin-bottom:12px; }
  .dd-bullet-list{ margin:0; padding-left:20px; }
  .dd-bullet-list li{ font-size:13.5px; color:var(--text-muted); line-height:1.6; margin-bottom:10px; }
  .dd-bullet-list strong{ color:var(--text-dark); }

  .dd-faq-item{ border-bottom:1px solid var(--border-soft); padding:14px 0; cursor:pointer; }
  .dd-faq-q{ font-size:13.5px; font-weight:600; color:var(--text-dark); display:flex; justify-content:space-between; }
  .dd-faq-toggle{ color:var(--green); font-weight:700; }
  .dd-faq-a{ display:none; font-size:13px; color:var(--text-muted); margin-top:10px; line-height:1.5; }
  .dd-faq-item.open .dd-faq-a{ display:block; }

  .dd-download-btn{ background:var(--navy); color:var(--white); border:none; padding:10px 18px; border-radius:8px; font-size:12.5px; font-weight:700; cursor:pointer; }

  .dd-investor-hub{ background:var(--white); border:1px solid var(--border-soft); border-radius:14px; margin-bottom:20px; overflow:hidden; }
  .dd-hub-header{ padding:18px 20px 16px; border-bottom:1px solid var(--border-soft); }
  .dd-hub-header-label{ display:block; font-size:11px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:var(--green); margin-bottom:4px; }
  .dd-hub-header-sub{ font-size:12px; color:var(--text-muted); }
  .dd-hub-row{ display:flex; align-items:center; gap:14px; padding:15px 20px; cursor:pointer; transition:background .15s ease; }
  .dd-hub-row:hover{ background:rgba(0,82,99,0.07); }
  .dd-hub-row-icon{ width:34px; height:34px; border-radius:8px; background:rgba(0,82,99,0.09); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--green); }
  .dd-hub-row-icon svg{ width:16px; height:16px; }
  .dd-hub-row-body{ flex:1; }
  .dd-hub-row-title{ font-size:13px; font-weight:700; color:var(--navy); margin-bottom:2px; display:flex; align-items:center; gap:8px; }
  .dd-hub-row-desc{ font-size:11.5px; color:var(--text-muted); }
  .dd-hub-row-chevron{ width:16px; height:16px; color:#b0b8bc; flex-shrink:0; transition:transform .2s ease; }
  .dd-hub-row-launch{ width:14px; height:14px; color:#b0b8bc; flex-shrink:0; transition:color .15s; }
  .dd-hub-row:hover .dd-hub-row-launch{ color:var(--green); }
  .dd-hub-badge{ background:var(--green-light); color:var(--navy); font-size:10px; font-weight:800; padding:1px 6px; border-radius:999px; line-height:1.6; }
  .dd-hub-divider{ height:1px; background:var(--border-soft); margin:0 20px; }
  .dd-hub-announcements{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
  .dd-hub-announcements.open{ max-height:264px; overflow-y:auto; }
  #dd-hub-dataroom.open{ max-height:420px; }
  .dd-dr-level-header{ display:flex; align-items:center; justify-content:space-between; padding:7px 20px; background:#f8f9fb; border-bottom:1px solid #f0f0f0; border-top:1px solid #f0f0f0; }
  .dd-dr-level-label{ font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.7px; color:var(--text-muted); }
  .dd-dr-badge{ font-size:9.5px; font-weight:700; padding:2px 8px; border-radius:999px; }
  .dd-dr-badge-open{ background:#dcfce7; color:#15803d; }
  .dd-dr-badge-locked{ background:#f3f4f6; color:#9ca3af; }
  .dd-doc-l3.locked .dd-hub-ann-title{ color:var(--text-muted); }
  .dd-doc-l3.locked .dd-doc-file-icon{ color:#d8d8d8 !important; }
  .dd-doc-l3.locked .dd-l3-actions{ display:none; }
  .dd-doc-l3:not(.locked) .dd-l3-lock{ display:none; }
  .dd-l3-lock{ display:flex; align-items:center; color:#d1d5db; flex-shrink:0; }
  .dd-hub-ann-item{ display:flex; align-items:flex-start; gap:12px; padding:14px 20px; border-bottom:1px solid #f0f0f0; cursor:pointer; transition:background .12s ease; }
  .dd-hub-ann-item:hover{ background:rgba(0,0,0,0.025); }
  .dd-hub-ann-item:last-child{ border-bottom:none; }
  .dd-ann-thumb{ width:58px; height:58px; border-radius:8px; object-fit:cover; flex-shrink:0; }
  .dd-ann-text{ flex:1; min-width:0; }
  .dd-hub-doc-item{ align-items:center; gap:8px; cursor:default; padding:10px 20px; }
  .dd-hub-doc-item:hover{ background:none; }
  .dd-hub-ann-date{ font-size:10.5px; color:var(--green); font-weight:600; margin-bottom:3px; }
  .dd-hub-ann-title{ font-size:12.5px; font-weight:600; color:var(--text-dark); line-height:1.4; margin-bottom:4px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  .dd-ann-snippet{ font-size:11.5px; color:var(--text-muted); line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  .dd-doc-actions{ display:flex; gap:5px; flex-shrink:0; margin-left:auto; padding-left:8px; }
  .dd-doc-btn{ display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:6px; border:1.5px solid #d8d8d8; background:#f5f5f5; color:var(--text-muted); cursor:pointer; transition:background 0.15s,border-color 0.15s,color 0.15s; }
  .dd-doc-btn:hover{ background:#ececec; border-color:#bbb; color:var(--text-dark); }
  .dd-doc-btn-dl{ border-color:rgba(0,82,99,0.3); color:var(--green); }
  .dd-doc-btn-dl:hover{ background:rgba(0,82,99,0.07); border-color:var(--green); color:var(--green); }

  /* Doc preview modal */
  .dd-doc-modal{ position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:2100; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.22s ease; }
  .dd-doc-modal.visible{ opacity:1; pointer-events:auto; }
  .dd-doc-modal-box{ background:white; border-radius:14px; width:min(900px,96vw); height:90vh; display:flex; flex-direction:column; box-shadow:0 24px 80px rgba(0,0,0,0.5); overflow:hidden; }
  .dd-doc-modal-header{ display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid #e8e8e8; gap:12px; }
  .dd-doc-modal-title{ font-size:13px; font-weight:600; color:var(--text-dark); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .dd-doc-modal-close{ background:none; border:none; font-size:18px; color:var(--text-muted); cursor:pointer; line-height:1; flex-shrink:0; padding:2px 6px; border-radius:4px; }
  .dd-doc-modal-close:hover{ color:var(--text-dark); background:#f2f2f2; }
  .dd-doc-modal-body{ flex:1; overflow:hidden; padding:0; background:#f4f4f4; }
  .dd-doc-preview-page{ background:white; width:100%; max-width:460px; border-radius:6px; padding:32px 36px; box-shadow:0 2px 12px rgba(0,0,0,0.1); position:relative; overflow:hidden; }
  .dd-doc-preview-logo{ display:flex; align-items:center; gap:8px; margin-bottom:28px; }
  .dd-doc-preview-lines{ display:flex; flex-direction:column; gap:8px; }
  .dd-doc-preview-heading{ height:14px; border-radius:3px; background:#111; width:55%; margin-bottom:6px; }
  .dd-doc-preview-subheading{ height:11px; border-radius:3px; background:#333; width:38%; margin-bottom:6px; }
  .dd-doc-preview-line{ height:9px; border-radius:3px; background:#e0e0e0; }
  .dd-doc-preview-watermark{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:52px; font-weight:900; color:rgba(0,0,0,0.04); letter-spacing:4px; pointer-events:none; transform:rotate(-30deg); }
  .dd-doc-modal-footer{ display:flex; align-items:center; justify-content:space-between; padding:14px 20px; border-top:1px solid #e8e8e8; gap:12px; }
  .dd-doc-modal-note{ font-size:11.5px; color:var(--text-muted); }
  .dd-doc-modal-dl{ display:flex; align-items:center; gap:6px; background:var(--navy); color:white; border:none; border-radius:8px; padding:9px 16px; font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; }
  .dd-doc-modal-dl:hover{ background:var(--navy-soft); }
  .dd-hub-row.open .dd-hub-row-chevron{ transform:rotate(90deg); }

  /* Announcement blog-post modal */
  .dd-ann-modal{ position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:2200; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.22s ease; }
  .dd-ann-modal.visible{ opacity:1; pointer-events:auto; }
  .dd-ann-modal-box{ background:white; border-radius:14px; width:min(1360px,97vw); height:85vh; position:relative; display:flex; flex-direction:column; box-shadow:0 24px 80px rgba(0,0,0,0.4); overflow:hidden; }
  .dd-ann-topbar{ display:flex; align-items:center; gap:14px; padding:16px 24px; border-bottom:1px solid #efefef; flex-shrink:0; }
  .dd-ann-topbar-title{ font-size:15px; font-weight:700; color:var(--text-dark); }
  .dd-ann-topbar-count{ font-size:12px; font-weight:600; color:var(--text-muted); background:#f2f2f2; padding:2px 10px; border-radius:20px; }
  .dd-ann-modal-topbar{ display:flex; align-items:center; justify-content:space-between; padding:14px 20px; border-bottom:1px solid #efefef; }
  .dd-ann-modal-source{ font-size:11px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--text-dark); }
  .dd-ann-modal-close{ position:absolute; top:14px; right:14px; background:rgba(255,255,255,0.9); border:none; font-size:16px; color:var(--text-muted); cursor:pointer; line-height:1; padding:5px 8px; border-radius:6px; z-index:10; }
  .dd-ann-modal-close:hover{ color:var(--text-dark); background:#f2f2f2; }
  .dd-ann-modal-body{ flex:1; overflow-y:auto; padding:0; }
  .dd-ann-modal-img{ width:100%; height:190px; object-fit:cover; display:block; flex-shrink:0; }
  .dd-ann-modal-text{ padding:24px 28px 28px; }
  .dd-ann-modal-tag{ display:inline-block; background:rgba(0,82,99,0.09); color:var(--green); font-size:11px; font-weight:700; padding:3px 10px; border-radius:999px; margin:16px 24px 10px; }
  .dd-ann-modal-date{ font-size:12px; color:var(--text-muted); margin:0 24px 8px; display:block; }
  .dd-ann-modal-title{ font-size:19px; font-weight:800; color:var(--navy); line-height:1.3; margin:0 24px 16px; display:block; }
  .dd-ann-modal-content{ font-size:14px; color:#333; line-height:1.75; margin:0 24px 28px; display:block; }
  .dd-ann-modal-content p{ margin:0 0 14px; }
  .dd-ann-modal-content p:last-child{ margin-bottom:0; }
  .dd-ann-nav{ display:flex; align-items:center; justify-content:space-between; padding:12px 20px; border-top:1px solid #efefef; flex-shrink:0; }
  .dd-ann-nav-btn{ background:none; border:1.5px solid var(--border-soft); border-radius:8px; padding:7px 14px; font-size:12.5px; font-weight:600; color:var(--navy); cursor:pointer; transition:background 0.15s; }
  .dd-ann-nav-btn:hover:not([disabled]){ background:#f5f5f5; }
  .dd-ann-nav-btn[disabled]{ color:#ccc; border-color:#ebebeb; cursor:default; }
  .dd-ann-nav-counter{ font-size:12px; color:var(--text-muted); }

  /* DATA ROOM MODAL */
  .dd-dr-modal{ position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:2200; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.22s ease; }
  .dd-dr-modal.visible{ opacity:1; pointer-events:auto; }
  .dd-dr-modal-box{ background:white; border-radius:14px; width:min(1360px,97vw); height:85vh; position:relative; display:flex; flex-direction:column; box-shadow:0 24px 80px rgba(0,0,0,0.4); overflow:hidden; }
  .dd-dr-topbar{ display:flex; align-items:center; gap:14px; padding:16px 24px; border-bottom:1px solid #efefef; flex-shrink:0; }
  .dd-dr-topbar-title{ font-size:15px; font-weight:700; color:var(--text-dark); }
  .dd-dr-topbar-count{ font-size:12px; font-weight:600; color:var(--text-muted); background:#f2f2f2; padding:2px 10px; border-radius:20px; }
  .dd-dr-close{ margin-left:auto; background:none; border:none; font-size:16px; color:var(--text-muted); cursor:pointer; padding:5px 8px; border-radius:6px; }
  .dd-dr-close:hover{ color:var(--text-dark); background:#f2f2f2; }
  .dd-dr-split{ display:flex; flex:1; overflow:hidden; }
  .dd-dr-sidebar{ width:360px; flex-shrink:0; border-right:1px solid #efefef; overflow-y:auto; background:#fafafa; }
  .dd-dr-main{ flex:1; display:flex; flex-direction:column; min-width:0; overflow:hidden; }

  /* File tree */
  .dr-level-hdr{ font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:var(--text-muted); padding:16px 16px 8px; }
  .dr-item{ display:flex; align-items:center; gap:8px; padding:9px 16px; cursor:pointer; font-size:13px; color:var(--text-dark); transition:background .12s; border-left:3px solid transparent; }
  .dr-item:hover{ background:#f0f7f8; }
  .dr-file.active{ background:#e8f5f7; border-left-color:var(--green); font-weight:600; }
  .dr-folder{ color:var(--text-dark); }
  .dr-item-icon{ width:14px; height:14px; flex-shrink:0; }
  .dr-file .dr-item-icon{ color:#808080; }
  .dr-folder-icon{ color:#005263; }
  .dr-chevron{ width:10px; height:10px; flex-shrink:0; color:#b0b8bc; transition:transform .15s; }
  .dr-item-name{ flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .dr-folder-name{ font-weight:600; color:var(--text-dark); }
  .dr-item-size{ font-size:11px; color:var(--text-muted); white-space:nowrap; flex-shrink:0; }
  .dr-folder-count{ font-size:11px; color:var(--text-muted); white-space:nowrap; flex-shrink:0; }
  .dr-folder-children{ border-left:1px dashed #e0e8ea; margin-left:24px; }

  /* Right preview panel */
  .dr-preview-placeholder{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:40px; }
  .dr-preview-content{ display:flex; flex-direction:column; height:100%; }
  .dr-preview-header{ display:flex; align-items:center; gap:14px; padding:20px 28px; border-bottom:1px solid #efefef; flex-shrink:0; }
  .dr-preview-meta{ flex:1; min-width:0; }
  .dr-preview-filename{ font-size:14px; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
  .dr-preview-size{ font-size:12px; color:var(--text-muted); }
  .dr-preview-btns{ display:flex; gap:8px; flex-shrink:0; }
  .dr-preview-btn{ display:flex; align-items:center; gap:6px; background:none; border:1.5px solid var(--border-soft); border-radius:8px; padding:7px 14px; font-size:12.5px; font-weight:600; color:var(--navy); cursor:pointer; font-family:inherit; transition:background .15s; }
  .dr-preview-btn:hover{ background:#f5f5f5; }
  .dr-preview-frame{ flex:1; overflow:hidden; position:relative; }
  .dr-file-bar{ align-items:center; gap:10px; padding:0 20px; height:44px; border-bottom:1px solid #efefef; flex-shrink:0; background:var(--white); }
  .dr-file-bar-name{ flex:1; min-width:0; font-size:13px; font-weight:600; color:var(--text-dark); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .dr-file-bar-size{ font-size:11.5px; color:var(--text-muted); white-space:nowrap; flex-shrink:0; }
  .dr-file-bar-btn{ display:flex; align-items:center; gap:6px; background:none; border:1.5px solid var(--border-soft); border-radius:8px; padding:5px 12px; font-size:12px; font-weight:600; color:var(--navy); cursor:pointer; font-family:inherit; white-space:nowrap; transition:background .15s; flex-shrink:0; }
  .dr-file-bar-btn:hover{ background:#f5f5f5; }
  .dr-no-preview{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; }

  .dd-ann-split{ display:flex; flex:1; overflow:hidden; }
  .dd-ann-sidebar{ width:360px; flex-shrink:0; border-right:1px solid #efefef; display:flex; flex-direction:column; overflow:hidden; background:#fafafa; }
  .dd-ann-sidebar-header{ padding:18px 20px 14px; border-bottom:1px solid #efefef; flex-shrink:0; }
  .dd-ann-sidebar-heading{ font-size:13.5px; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
  .dd-ann-sidebar-count{ font-size:11.5px; color:var(--text-muted); }
  .dd-ann-sidebar-filters{ display:flex; gap:6px; padding:10px 14px; border-bottom:1px solid #efefef; flex-shrink:0; }
  .dd-ann-filter-pill{ background:none; border:1.5px solid var(--border-soft); border-radius:20px; padding:4px 12px; font-size:11.5px; font-weight:600; color:var(--text-muted); cursor:pointer; transition:all .15s; font-family:inherit; }
  .dd-ann-filter-pill:hover{ border-color:var(--green); color:var(--green); }
  .dd-ann-filter-pill.active{ background:var(--navy); border-color:var(--navy); color:var(--white); }
  .dd-ann-empty{ padding:32px 16px; text-align:center; font-size:13px; color:var(--text-muted); }
  .dd-ann-sidebar-list{ flex:1; overflow-y:auto; }
  .dd-ann-sidebar-item{ display:flex; align-items:flex-start; gap:12px; padding:14px 16px; cursor:pointer; border-left:3px solid transparent; border-bottom:1px solid #f0f0f0; transition:background .15s,border-color .15s; }
  .dd-ann-sidebar-item:hover{ background:#f0f7f8; }
  .dd-ann-sidebar-item.active{ background:#e8f5f7; border-left-color:var(--green); }
  .dd-ann-si-thumb{ width:46px; height:46px; border-radius:8px; object-fit:cover; flex-shrink:0; }
  .dd-ann-si-text{ flex:1; min-width:0; }
  .dd-ann-si-tag{ font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.4px; color:var(--green); margin-bottom:3px; }
  .dd-ann-si-title{ font-size:12.5px; font-weight:600; color:var(--text-dark); line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:4px; }
  .dd-ann-si-date{ font-size:11px; color:var(--text-muted); }
  .dd-ann-main{ flex:1; display:flex; flex-direction:column; min-width:0; overflow:hidden; }
  .dd-ann-main-scroll{ flex:1; overflow-y:auto; }

  .dd-announcements-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:14px; overflow:hidden; margin-bottom:20px; }
  .dd-announcements-card .dd-ann-row{ padding:10px 20px; }
  .dd-announcements-card .dd-ann-divider{ margin:0 20px; }
  .dd-ann-row{ display:flex; align-items:center; gap:12px; padding:10px 0; }
  .dd-ann-meta{ display:flex; flex-direction:column; gap:2px; flex-shrink:0; min-width:80px; }
  .dd-ann-date{ font-size:11.5px; color:var(--text-muted); }
  .dd-ann-time{ font-size:11px; color:#b0b8bc; }
  .dd-ann-link{ flex:1; min-width:0; font-size:12.5px; font-weight:600; color:var(--green); text-decoration:none; line-height:1.4; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .dd-ann-link:hover{ text-decoration:underline; }
  .dd-ann-size{ font-size:11.5px; color:var(--text-muted); flex-shrink:0; }
  .dd-ann-divider{ height:1px; background:var(--border-soft); }
  .dd-video-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:14px; padding:16px; margin-bottom:14px; }
  .dd-video-thumb{ height:220px; background:var(--navy); border-radius:8px; background-size:cover; background-position:center; display:flex; align-items:flex-end; padding:8px; margin-bottom:10px; position:relative; cursor:pointer; }
  .dd-video-thumb::after{ content:''; position:absolute; inset:0; border-radius:8px; background:linear-gradient(transparent 30%, rgba(1,31,37,0.6)); }
  .dd-video-thumb:hover .dd-video-play-btn{ transform:translate(-50%,-50%) scale(1.1); }
  .dd-video-expand{ position:absolute; top:10px; right:10px; z-index:2; background:rgba(0,0,0,0.45); border:1.5px solid rgba(255,255,255,0.4); color:white; border-radius:6px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:13px; backdrop-filter:blur(4px); }
  .dd-video-expand:hover{ background:rgba(0,0,0,0.7); }
  .dd-video-play-btn{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2; width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,0.2); backdrop-filter:blur(6px); border:2px solid rgba(255,255,255,0.7); display:flex; align-items:center; justify-content:center; color:white; font-size:18px; padding-left:3px; transition:transform 0.15s ease; pointer-events:none; }
  .dd-video-duration{ position:relative; z-index:1; font-size:11px; font-weight:700; color:rgba(255,255,255,0.9); background:rgba(0,0,0,0.4); padding:2px 7px; border-radius:4px; }
  .dd-video-date{ font-size:11px; color:var(--green); font-weight:600; margin-bottom:4px; }
  .dd-video-title{ font-size:13px; font-weight:700; color:var(--text-dark); margin-bottom:4px; }
  .dd-video-desc{ font-size:12px; color:var(--text-muted); line-height:1.4; }
  .dd-video-modal{ position:fixed; inset:0; background:rgba(0,0,0,0.82); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.25s ease; }
  .dd-video-modal.visible{ opacity:1; pointer-events:auto; }
  .dd-video-modal-box{ position:relative; width:min(880px,92vw); aspect-ratio:16/9; border-radius:12px; overflow:hidden; box-shadow:0 24px 80px rgba(0,0,0,0.6); }
  .dd-video-modal-box iframe{ width:100%; height:100%; border:none; }
  .dd-video-modal-close{ position:absolute; top:-42px; right:0; background:none; border:none; color:white; font-size:24px; cursor:pointer; opacity:0.75; line-height:1; }
  .dd-video-modal-close:hover{ opacity:1; }

  .dd-metrics-grid{ display:flex; flex-wrap:wrap; }
  .dd-metrics-grid > div{ width:calc(33.333% - 14px); margin-right:20px; margin-bottom:20px; }
  .dd-metrics-grid > div:nth-child(3n){ margin-right:0; }
  .dd-asof{ font-size:11.5px; color:var(--text-muted); font-style:italic; margin-bottom:8px; }
  .dd-empty-state{ padding:32px; text-align:center; color:var(--text-muted); font-size:13px; border:1.5px dashed var(--border-soft); border-radius:12px; }

  .dd-issuer-card{ margin-bottom:8px; }
  .dd-issuer-card-top{ display:flex; align-items:center; gap:16px; margin-bottom:16px; }
  .dd-issuer-logo{ width:52px; height:52px; border-radius:12px; background:var(--navy); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .dd-issuer-card-name{ font-size:15px; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
  .dd-issuer-card-tagline{ font-size:12.5px; color:var(--text-muted); }
  .dd-issuer-card-desc{ font-size:13px; color:var(--text-muted); line-height:1.65; margin:0 0 20px; }
  .dd-issuer-cred-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:20px; }
  .dd-issuer-cred-card{ background:var(--bg); border:1px solid var(--border-soft); border-radius:12px; padding:14px 12px; text-align:center; }
  .dd-issuer-cred-icon{ color:var(--navy); margin-bottom:8px; display:flex; align-items:center; justify-content:center; }
  .dd-issuer-cred-label{ font-size:10.5px; text-transform:uppercase; letter-spacing:.5px; font-weight:600; color:var(--text-muted); margin-bottom:4px; }
  .dd-issuer-cred-value{ font-size:13px; font-weight:700; color:var(--text-dark); }
  .dd-issuer-website-btn{ display:inline-flex; align-items:center; gap:6px; background:var(--navy); color:var(--white); border:none; border-radius:8px; padding:9px 18px; font-size:13px; font-weight:600; cursor:pointer; text-decoration:none; transition:opacity .15s; }
  .dd-issuer-website-btn:hover{ opacity:.85; }

  /* Redemption detail screen */
  .rd-back-link{ font-size:13px;color:var(--text-muted);cursor:pointer;margin-bottom:20px;display:inline-block; }
  .rd-back-link:hover{ color:var(--navy); }
  .rd-txn-box{ background:var(--white);border:1px solid var(--border-soft);border-radius:14px;padding:20px 24px;margin-bottom:16px; }
  .rd-txn-label{ font-size:11px;text-transform:uppercase;letter-spacing:.5px;font-weight:700;color:var(--text-muted);margin-bottom:6px; }
  .rd-txn-desc{ font-size:13.5px;color:var(--text-dark);line-height:1.6; }
  .rd-task-box{ background:var(--bg);border:1px solid var(--border-soft);border-radius:14px;padding:20px 24px;margin-bottom:16px; }
  .rd-task-title{ font-size:13px;font-weight:700;color:var(--text-dark);margin-bottom:12px; }
  .rd-warning-banner{ background:#fef3c7;border:1px solid #f59e0b;border-radius:10px;padding:12px 16px;font-size:13px;color:#92400e;display:flex;align-items:center;justify-content:space-between;margin-bottom:12px; }
  .rd-warning-link{ font-weight:700;cursor:pointer;text-decoration:underline;color:#92400e; }
  .rd-bank-row{ display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid var(--border-soft);font-size:13px; }
  .rd-bank-row:last-child{ border-bottom:none; }
  .rd-bank-label{ color:var(--text-muted); }
  .rd-bank-value{ font-weight:600;color:var(--text-dark); }
  .rd-action-row{ display:flex;gap:12px;margin-top:20px;flex-wrap:wrap; }
  .rd-btn-primary{ background:var(--navy);color:white;border:none;border-radius:8px;padding:10px 24px;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit; }
  .rd-btn-primary:hover{ background:var(--navy-soft); }
  .rd-btn-success{ background:#059669;color:white;border:none;border-radius:8px;padding:10px 24px;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit; }
  .rd-btn-success:hover{ opacity:.88; }
  .rd-btn-danger{ background:#dc2626;color:white;border:none;border-radius:8px;padding:10px 24px;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit; }
  .rd-btn-danger:hover{ opacity:.88; }
  .rd-btn-secondary{ background:white;color:var(--text-dark);border:1px solid var(--border-soft);border-radius:8px;padding:10px 24px;font-size:13px;font-weight:600;cursor:pointer;font-family:inherit; }
  .rd-btn-secondary:hover{ border-color:var(--navy);color:var(--navy); }
  .rd-confirm-inline{ background:#f9fafb;border:1px solid var(--border-soft);border-radius:10px;padding:14px 16px;font-size:13px;color:var(--text-dark);margin-top:12px; }
  .rd-confirm-inline-title{ font-weight:700;margin-bottom:10px; }
  .rd-confirm-inline-btns{ display:flex;gap:10px; }

  .dd-team-grid{ display:flex; flex-wrap:wrap; }
  .dd-team-card{ width:calc(33.333% - 14px); margin-right:20px; text-align:center; }
  .dd-team-card:nth-child(3n){ margin-right:0; }
  .dd-team-avatar{ width:64px; height:64px; border-radius:50%; background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; margin:0 auto 10px; }
  .dd-team-name{ font-size:13.5px; font-weight:700; color:var(--text-dark); }
  .dd-team-role{ font-size:12px; color:var(--text-muted); }

  .dd-contact-card{ background:var(--navy); color:var(--white); border-radius:14px; padding:22px; }
  .dd-contact-label{ font-size:11.5px; color:var(--green-light); font-weight:700; letter-spacing:.3px; margin-bottom:8px; }
  .dd-contact-title{ font-size:16px; font-weight:700; }
  .dd-contact-card .dd-btn-outline{ background:transparent; color:var(--white); border-color:rgba(255,255,255,0.4); margin-left:0; }
  .dd-contact-card .dd-btn-outline:hover{ background:rgba(255,255,255,0.1); }

  .dd-doc-note{ font-size:12.5px; color:var(--text-muted); margin-bottom:14px; line-height:1.5; }
  .dd-doc-item{ display:flex; justify-content:space-between; align-items:center; padding:14px 18px; background:var(--white); border:1px solid var(--border-soft); border-radius:10px; margin-bottom:10px; font-size:13.5px; font-weight:600; color:var(--text-dark); }
  .dd-doc-icon{ color:var(--green); }

  /* ===== PLATFORM FOOTER ===== */
  .platform-footer{
    background:
      linear-gradient(rgba(1,31,37,0.65), rgba(1,31,37,0.82)),
      url('images/img-2.jpeg');
    background-size:cover; background-position:center;
    color:rgba(255,255,255,0.7); padding:36px 40px 24px; margin-top:8px;
  }
  .pf-top{ display:flex; flex-wrap:wrap; justify-content:space-between; padding-bottom:28px; }
  .pf-logo{ display:flex; align-items:center; margin-bottom:20px; }
  .pf-columns{ display:flex; flex-wrap:wrap; }
  .pf-col{ margin-right:56px; min-width:130px; }
  .pf-col-title{ color:var(--white); font-weight:700; font-size:13px; margin-bottom:14px; }
  .pf-col a{ display:block; color:rgba(255,255,255,0.65); text-decoration:none; font-size:13.5px; margin-bottom:10px; cursor:pointer; }
  .pf-col a:hover{ color:var(--green-light); }
  .pf-social{ display:flex; }
  .pf-social-icon{ width:32px; height:32px; border:1px solid rgba(255,255,255,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-right:10px; cursor:pointer; }
  .pf-social-icon svg{ width:15px; height:15px; color:rgba(255,255,255,0.8); }
  .pf-social-icon:hover{ border-color:var(--green-light); }
  .pf-reg-line{ font-size:12px; color:rgba(255,255,255,0.55); padding-top:20px; padding-bottom:20px; border-top:1px solid rgba(255,255,255,0.12); }
  .pf-disclaimer-block{ padding-top:4px; }
  .pf-disclaimer-title{ font-size:13px; font-weight:700; color:rgba(255,255,255,0.85); margin-bottom:8px; }
  .pf-disclaimer{ font-size:11.5px; line-height:1.6; color:rgba(255,255,255,0.45); }

  /* Neon spinning border — Place Bid button */

  /* ===== DEAL CARDS (rounded, modern) ===== */
  .deals-grid{ display:flex; flex-wrap:wrap; padding:16px 40px 48px; }
  .deal-card{ width:calc(33.333% - 15px); margin-right:22px; margin-bottom:22px; }
  .deal-card:nth-child(3n){ margin-right:0; }
  .deal-card{ border:1px solid var(--border-soft); border-radius:20px; overflow:hidden; background:var(--white); transition:box-shadow .18s ease, transform .18s ease; }
  .deal-card:hover{ box-shadow:0 12px 28px rgba(1,31,37,0.10); transform:translateY(-2px); }
  .deal-card-header{ height:110px; position:relative; }
  .deal-tag{ position:absolute; top:14px; left:14px; background:rgba(255,255,255,0.92); color:var(--text-dark); padding:5px 14px; border-radius:20px; font-size:11.5px; font-weight:700; letter-spacing:.3px; }
  .deal-body{ padding:20px; }
  .deal-meta{ font-size:12px; color:var(--text-muted); margin-bottom:4px; }
  .deal-title{ font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:6px; text-transform:uppercase; letter-spacing:.3px; }
  .deal-desc{ font-size:13px; color:var(--text-muted); margin-bottom:16px; line-height:1.4; }
  .deal-stats{ display:flex; flex-wrap:wrap; margin-bottom:16px; }
  .deal-stats > div{ width:calc(50% - 7px); margin-bottom:10px; }
  .deal-stats > div:nth-child(odd){ margin-right:14px; }
  .deal-stat-label{ font-size:11px; color:var(--green); font-weight:600; margin-bottom:2px; }
  .deal-stat-value{ font-size:13.5px; font-weight:700; color:var(--text-dark); }
  .deal-offered{ display:flex; align-items:center; gap:6px; font-size:11.5px; color:var(--text-muted); margin-bottom:12px; }
  .deal-progress-bg{ height:6px; background:var(--border-soft); border-radius:10px; overflow:hidden; margin-bottom:6px; }
  .deal-progress-fill{ height:100%; background:var(--green); border-radius:10px; }
  .deal-progress-label{ font-size:11.5px; font-weight:700; color:var(--text-dark); }
  .deal-disclaimer{ font-size:11px; color:var(--text-muted); font-style:italic; line-height:1.4; margin-bottom:14px; }
  .deal-status-badge{ position:absolute; top:14px; right:14px; font-size:11.5px; font-weight:700; padding:5px 14px; border-radius:20px; }
  .deal-status-upcoming{ background:#fef3c7; color:#92400e; }
  .deal-status-closed{ background:var(--border-soft); color:var(--text-muted); }
  .deal-status-active{ background:#dcfce7; color:#15803d; }
  .deal-card-closed{ opacity:0.88; }
  .deal-card-closed .deal-card-header{ filter:grayscale(35%); }

  /* ===== ENTITY NOTICE BANNER ===== */
  .entity-notice{ display:flex; align-items:center; gap:12px; width:100%; padding:11px 40px; border-bottom:1px solid; box-sizing:border-box; font-size:13.5px; }
  .entity-notice--not-created{ background:#fefce8; border-bottom-color:#fde68a; }
  .entity-notice--incomplete{ background:#eff6ff; border-bottom-color:#bfdbfe; }
  .entity-notice--under-review{ background:#f5f3ff; border-bottom-color:#ddd6fe; }
  .entity-notice-pill{ flex-shrink:0; font-size:10.5px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; padding:3px 9px; border-radius:4px; }
  .entity-notice--not-created .entity-notice-pill{ background:#fde68a; color:#92400e; }
  .entity-notice--incomplete .entity-notice-pill{ background:#bfdbfe; color:#1e40af; }
  .entity-notice--under-review .entity-notice-pill{ background:#ddd6fe; color:#5b21b6; }
  .entity-notice-text{ flex:1; color:#374151; line-height:1.4; }
  .entity-notice-link{ font-weight:600; cursor:pointer; text-decoration:none; margin-left:4px; }
  .entity-notice--not-created .entity-notice-link{ color:#d97706; }
  .entity-notice--incomplete .entity-notice-link{ color:#2563eb; }
  .entity-notice--under-review .entity-notice-link{ color:#7c3aed; }
  .entity-notice-link:hover{ text-decoration:underline; }
  .entity-notice-dismiss{ flex-shrink:0; background:none; border:none; font-size:18px; line-height:1; color:#9ca3af; cursor:pointer; padding:0 0 0 8px; }
  .entity-notice-dismiss:hover{ color:#374151; }
  .profile-row--none{ opacity:0.8; }
  .p-badge-none{ background:#f3f4f6; color:#6b7280; font-size:11px; font-weight:600; padding:3px 10px; border-radius:20px; }
  .p-badge-review{ background:#f5f3ff; color:#7c3aed; font-size:11px; font-weight:600; padding:3px 10px; border-radius:20px; }

  /* ===== FILE UPLOAD ZONE ===== */
  .iss-file-upload{ border:2px dashed #d1d5db; border-radius:14px; min-height:220px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:border-color .2s,background .2s; background:#fafafa; overflow:hidden; user-select:none; }
  .iss-file-upload:hover,.iss-file-upload.drag-over{ border-color:var(--green); background:#f0fdfc; }
  .iss-file-upload.has-file{ border-color:var(--green); border-style:solid; background:#f0fdfc; }
  .iss-file-upload-inner{ padding:36px 24px; width:100%; text-align:center; pointer-events:none; }
  .iss-file-upload-icon{ margin-bottom:14px; }
  .iss-file-upload-label{ font-size:15px; font-weight:700; color:var(--text-dark); }
  .iss-file-upload-or{ font-size:12px; color:var(--text-muted); margin:10px 0; letter-spacing:.4px; text-transform:uppercase; }
  .iss-file-browse-btn{ pointer-events:all; background:var(--navy); color:white; border:none; padding:9px 24px; border-radius:7px; font-size:13px; font-weight:600; cursor:pointer; font-family:inherit; }
  .iss-file-browse-btn:hover{ background:var(--navy-soft); }
  .iss-file-upload-sub{ font-size:12px; color:var(--text-muted); margin-top:12px; }
  .iss-file-upload-name{ font-size:14px; font-weight:700; color:var(--navy); margin-bottom:4px; word-break:break-all; }
  .iss-file-success-check{ width:52px; height:52px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
  /* ===== REVIEW STEP ===== */
  .cag-review-section{ border:1px solid var(--border-soft); border-radius:10px; margin-bottom:14px; overflow:hidden; }
  .cag-review-section-title{ font-size:11px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--text-muted); padding:10px 16px; background:var(--bg); border-bottom:1px solid var(--border-soft); }
  .cag-review-row{ display:flex; gap:8px; padding:9px 16px; border-bottom:1px solid var(--border-soft); font-size:13px; }
  .cag-review-row:last-child{ border-bottom:none; }
  .cag-review-key{ color:var(--text-muted); width:160px; flex-shrink:0; }
  .cag-review-val{ color:var(--text-dark); font-weight:500; flex:1; word-break:break-all; }

  /* ===== MY PORTFOLIO PAGE ===== */
  .port-header-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
  .port-header-row .page-title{ margin-bottom:0; }
  .port-entity-select-wrap{ display:flex; align-items:center; gap:10px; }
  .port-entity-label{ font-size:13px; color:var(--text-muted); font-weight:600; white-space:nowrap; }
  .port-entity-select{ border:1px solid var(--border-soft); border-radius:10px; padding:9px 14px; font-size:13.5px; font-weight:600; color:var(--text-dark); background:var(--white); cursor:pointer; min-width:240px; outline:none; }
  .port-entity-select:focus{ border-color:var(--green); }

  .port-tab-row{ display:flex; gap:0; border-bottom:2px solid var(--border-soft); margin-bottom:28px; }
  .port-tab{ padding:11px 24px; font-size:14px; font-weight:600; cursor:pointer; color:var(--text-muted); border-bottom:2px solid transparent; margin-bottom:-2px; transition:color .15s,border-color .15s; }
  .port-tab.active{ color:var(--navy); border-bottom-color:var(--navy); }
  .txn-type-badge{ display:inline-block; padding:3px 10px; border-radius:20px; font-size:12px; font-weight:600; }
  .txn-type-investment{ background:#e8f0fe; color:#1a56db; }
  .txn-type-distribution{ background:#e8f5e9; color:#2e7d32; }
  .txn-type-redemption{ background:#ede9fe; color:#5b21b6; }
  .port-status-badge{ display:inline-block; padding:3px 10px; border-radius:20px; font-size:12px; font-weight:600; }
  .port-status-active{ background:#e8f5e9; color:#2e7d32; }
  .port-status-upcoming{ background:#fff8e1; color:#b45309; }

  .port-summary-row{ display:flex; gap:16px; margin-bottom:28px; }
  .port-stat-card{ flex:1; background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:22px 24px; }
  .port-stat-label{ font-size:11px; color:var(--text-muted); font-weight:700; text-transform:uppercase; letter-spacing:.5px; margin-bottom:10px; }
  .port-stat-value{ font-size:22px; font-weight:800; color:var(--text-dark); }
  .port-stat-positive{ color:#15803d; }
  .port-stat-negative{ color:#dc2626; }

  .port-table-wrap{ background:var(--white); border:1px solid var(--border-soft); border-radius:16px; overflow:hidden; margin-bottom:28px; }
  .port-table{ width:100%; border-collapse:collapse; }
  .port-table thead th{ font-size:11px; font-weight:700; color:rgba(255,255,255,0.85); text-transform:uppercase; letter-spacing:.5px; padding:13px 18px; text-align:left; border-bottom:none; background:var(--navy); white-space:nowrap; }
  .port-table thead th:first-child{ border-radius:0; }
  .port-table tbody td{ padding:15px 18px; font-size:13.5px; color:var(--text-dark); border-bottom:1px solid #f0f0f0; vertical-align:middle; }
  .port-table tbody tr:last-child td{ border-bottom:none; }
  .port-table tbody tr:hover{ background:#f5fbfb; }
  .port-cell-muted{ color:var(--text-muted) !important; font-size:13px !important; }
  .port-deal-cell{ display:flex; align-items:center; gap:12px; }
  .port-deal-thumb{ width:42px; height:42px; border-radius:8px; object-fit:cover; flex-shrink:0; }
  .port-deal-name{ font-size:13.5px; font-weight:600; color:var(--text-dark); max-width:220px; line-height:1.35; }
  .port-return-pos{ color:#15803d; font-weight:700; }
  .port-return-neg{ color:#dc2626; font-weight:700; }
  .port-view-btn{ background:none; border:1px solid var(--border-soft); border-radius:8px; padding:6px 14px; font-size:13px; color:var(--green); font-weight:600; cursor:pointer; white-space:nowrap; }
  .port-view-btn:hover{ background:var(--bg); border-color:var(--green); }
  .port-empty{ text-align:center; color:var(--text-muted); padding:40px 18px !important; font-size:14px; }
  .port-table .deal-status-badge{ position:static; display:inline-block; }

  .port-charts-row{ display:flex; gap:16px; margin-bottom:24px; }
  .port-chart-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:22px 24px; }
  .port-chart-line{ flex:2; min-width:0; }
  .port-chart-donut{ flex:1; min-width:0; }
  .port-chart-title{ font-size:15px; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
  .port-chart-subtitle{ font-size:12px; color:var(--text-muted); margin-bottom:18px; }
  .port-chart-wrap{ position:relative; height:220px; }

  .port-filter-bar{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:14px; flex-wrap:wrap; }
  .port-filter-left{ display:flex; align-items:center; gap:8px; }
  .port-filter-right{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
  .port-search{ border:1px solid var(--border-soft); border-radius:8px; padding:8px 14px; font-size:13px; color:var(--text-dark); background:var(--white); outline:none; min-width:210px; font-family:inherit; transition:border-color .15s; }
  .port-search::placeholder{ color:var(--text-muted); }
  .port-search:hover{ border-color:#c0c0c0; }
  .port-search:focus{ border-color:var(--green); box-shadow:0 0 0 3px rgba(0,82,99,0.08); }
  .port-filter-select{ appearance:none; -webkit-appearance:none; background:var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23808080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center; border:1px solid var(--border-soft); border-radius:8px; padding:8px 36px 8px 14px; font-size:13px; font-weight:500; color:var(--text-dark); cursor:pointer; min-width:160px; outline:none; transition:border-color .15s; font-family:inherit; }
  .port-filter-select:hover{ border-color:#c0c0c0; }
  .port-filter-select:focus{ border-color:var(--green); box-shadow:0 0 0 3px rgba(0,82,99,0.08); }

  .port-sw-btn{ background:var(--white); border:1px solid var(--border-soft); border-radius:6px; padding:7px 14px; font-size:12.5px; font-weight:600; color:var(--text-muted); cursor:pointer; transition:all .15s; }
  .port-sw-btn.active{ background:var(--navy); color:var(--white); border-color:var(--navy); }
  .port-sw-btn:hover:not(.active){ border-color:var(--green); color:var(--green); }

  /* Grouped view header rows */
  .port-group-header{ background:#edf7f8; cursor:pointer; user-select:none; }
  .port-group-header:hover{ background:#e0f2f4; }
  .port-group-header td{ padding:12px 18px !important; border-bottom:1px solid #d8eef0 !important; }
  .port-group-chevron{ width:14px; height:14px; color:#b0b8bc; flex-shrink:0; transition:transform .2s ease; vertical-align:middle; margin-right:8px; }
  .port-group-header.open .port-group-chevron{ transform:rotate(90deg); }
  .port-group-name{ font-size:13px; font-weight:700; color:var(--navy); margin-right:10px; }
  .port-group-meta{ font-size:11.5px; color:var(--text-muted); font-weight:500; }
  .port-group-row td{ background:#fafcfc; }
  .port-deal-indented{ padding-left:18px; border-left:2px solid #d0eff4; }

  /* ===== ISSUER PORTAL ===== */
  .iss-content{ padding:28px 40px; }
  .iss-page-header{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:24px; }
  .iss-page-title{ font-size:24px; font-weight:800; color:var(--text-dark); margin:0 0 4px; }
  .iss-page-sub{ font-size:13.5px; color:var(--text-muted); }
  .iss-btn-primary{ background:var(--navy); color:var(--white); border:none; border-radius:8px; padding:10px 20px; font-size:13px; font-weight:700; cursor:pointer; font-family:inherit; white-space:nowrap; }
  .iss-btn-primary:hover{ background:var(--navy-soft); }
  .iss-btn-primary:disabled{ opacity:0.45; cursor:default; }
  .iss-btn-secondary{ background:var(--white); color:var(--navy); border:1.5px solid var(--navy); border-radius:8px; padding:10px 20px; font-size:13px; font-weight:700; cursor:pointer; font-family:inherit; white-space:nowrap; }
  .iss-btn-secondary:hover{ background:var(--bg); }
  .iss-group-tabs{ display:flex; gap:0; border-bottom:1.5px solid var(--border-soft); margin-bottom:20px; overflow-x:auto; }
  .iss-group-tabs::-webkit-scrollbar{ height:0; }
  .iss-group-tab{ padding:10px 18px; font-size:13.5px; font-weight:500; color:var(--text-muted); cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-1.5px; transition:color 0.15s, border-color 0.15s; white-space:nowrap; user-select:none; }
  .iss-group-tab:hover{ color:var(--text-dark); }
  .iss-group-tab.active{ color:var(--navy); font-weight:700; border-bottom-color:var(--navy); }
  .iss-group-tab-count{ display:inline-block; background:var(--bg); color:var(--text-muted); font-size:11px; font-weight:600; border-radius:20px; padding:1px 7px; margin-left:5px; }
  .iss-group-tab.active .iss-group-tab-count{ background:rgba(0,82,99,0.1); color:var(--navy); }
  .iss-stat-row{ display:flex; gap:16px; margin-bottom:28px; }
  .iss-two-col{ display:flex; gap:16px; margin-bottom:28px; }
  .iss-activity-card{ flex:1.4; background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:22px 24px; }
  .iss-quick-actions{ flex:1; background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:22px 24px; }
  .iss-card-title{ font-size:15px; font-weight:700; color:var(--text-dark); margin-bottom:16px; }
  .iss-activity-item{ display:flex; align-items:flex-start; gap:12px; padding:10px 0; border-bottom:1px solid #f5f5f5; }
  .iss-activity-item:last-child{ border-bottom:none; }
  .iss-activity-icon{ width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; }
  .iss-activity-text{ flex:1; font-size:13px; color:var(--text-dark); line-height:1.45; }
  .iss-activity-time{ font-size:11px; color:var(--text-muted); margin-top:2px; }
  .iss-quick-btn{ display:block; width:100%; text-align:left; background:var(--bg); border:1px solid var(--border-soft); border-radius:10px; padding:12px 16px; font-size:13px; font-weight:600; color:var(--text-dark); cursor:pointer; margin-bottom:10px; font-family:inherit; transition:border-color .15s; }
  .iss-quick-btn:hover{ border-color:var(--green); color:var(--green); }
  .iss-quick-btn:last-child{ margin-bottom:0; }
  .iss-table-wrap{ background:var(--white); border:1px solid var(--border-soft); border-radius:16px; overflow-x:auto; overflow-y:hidden; margin-bottom:28px; }
  .iss-table{ width:max-content; min-width:100%; border-collapse:collapse; }
  .iss-table thead th{ font-size:11px; font-weight:700; color:rgba(255,255,255,0.85); text-transform:uppercase; letter-spacing:.5px; padding:13px 18px; text-align:left; background:var(--navy); white-space:nowrap; border-bottom:none; }
  .iss-table tbody td{ padding:14px 18px; font-size:13.5px; color:var(--text-dark); border-bottom:1px solid #f0f0f0; vertical-align:middle; white-space:nowrap; }
  .iss-table tbody tr:last-child td{ border-bottom:none; }
  .iss-table tbody tr:hover{ background:#fafcfc; }
  .iss-deal-thumb{ width:36px; height:36px; border-radius:6px; object-fit:cover; vertical-align:middle; margin-right:10px; }
  .iss-deal-name{ font-size:13px; font-weight:600; color:var(--text-dark); }
  .iss-muted{ color:var(--text-muted); font-size:13px; }
  .iss-funded-bar{ height:4px; background:#eeeeee; border-radius:4px; overflow:hidden; margin-top:4px; width:80px; }
  .iss-funded-fill{ height:100%; background:var(--green-light); border-radius:4px; }
  .iss-funded-pct{ font-size:12px; font-weight:700; color:var(--text-dark); }
  .iss-status-verified{ background:#dcfce7; color:#15803d; font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; white-space:nowrap; }
  .iss-status-pending{ background:#fef3c7; color:#92400e; font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; white-space:nowrap; }
  .iss-status-eoi{ background:rgba(34,216,229,0.15); color:var(--navy-soft); font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; white-space:nowrap; }
  .iss-empty{ text-align:center; color:var(--text-muted); padding:40px; font-size:14px; }
  .iss-deal-hero{ display:flex; background:var(--navy); border-radius:16px; overflow:hidden; margin-bottom:24px; }
  .iss-deal-hero-content{ flex:1.5; padding:28px 32px; }
  .iss-deal-hero-img{ width:260px; flex-shrink:0; }
  .iss-deal-hero-img img{ width:100%; height:100%; object-fit:cover; display:block; }
  .iss-deal-hero-title{ font-size:22px; font-weight:800; color:var(--white); text-transform:uppercase; margin:10px 0 8px; line-height:1.2; }
  .iss-deal-hero-desc{ font-size:13.5px; color:rgba(255,255,255,0.7); line-height:1.5; margin-bottom:20px; }
  .iss-deal-hero-stats{ display:flex; gap:28px; flex-wrap:wrap; }
  .iss-deal-hero-stat-label{ font-size:10.5px; color:rgba(255,255,255,0.55); text-transform:uppercase; letter-spacing:.4px; margin-bottom:3px; }
  .iss-deal-hero-stat-value{ font-size:15px; font-weight:700; color:var(--white); }
  .iss-detail-cols{ display:flex; gap:16px; }
  .iss-detail-main{ flex:1.6; min-width:0; }
  .iss-detail-side{ flex:1; min-width:0; }
  .iss-card{ background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:22px 24px; margin-bottom:16px; }
  .iss-card-doc-item{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; border-bottom:1px solid #f5f5f5; }
  .iss-card-doc-item:last-child{ border-bottom:none; }
  .iss-card-doc-name{ font-size:13px; font-weight:600; color:var(--text-dark); }
  .iss-card-doc-size{ font-size:11.5px; color:var(--text-muted); margin-top:2px; }
  .iss-back-link{ display:inline-flex; align-items:center; gap:6px; font-size:13px; color:var(--text-muted); cursor:pointer; margin-bottom:20px; font-weight:500; }
  .iss-back-link:hover{ color:var(--navy); }
  .auth-portal-badge{ display:inline-block; background:rgba(34,216,229,0.15); color:var(--navy-soft); font-size:11px; font-weight:700; padding:4px 12px; border-radius:20px; margin-bottom:16px; letter-spacing:.3px; }
  .iss-portal-switch{ text-align:center; margin-top:20px; font-size:12.5px; color:var(--text-muted); }
  .iss-portal-switch a{ color:var(--green); text-decoration:none; font-weight:600; }
  .iss-actions-wrap{ position:relative; }
  .iss-actions-dropdown{ display:none; position:absolute; top:calc(100% + 6px); right:0; background:var(--white); border:1px solid var(--border-soft); border-radius:10px; box-shadow:0 4px 20px rgba(0,0,0,0.1); min-width:160px; z-index:100; overflow:hidden; }
  .iss-actions-dropdown.open{ display:block; }
  .iss-actions-item{ padding:11px 16px; font-size:13px; cursor:pointer; color:var(--text-dark); font-weight:500; white-space:nowrap; }
  .iss-actions-item:hover{ background:var(--bg); }
  .iss-status-draft{ display:inline-block; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; background:rgba(107,114,128,0.12); color:#4b5563; white-space:nowrap; }
  .iss-status-pending-approval{ display:inline-block; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; background:rgba(234,179,8,0.15); color:#92400e; white-space:nowrap; }

  /* Create Asset Modal */
  .iss-modal-overlay{ position:fixed; inset:0; background:rgba(1,31,37,0.55); z-index:600; display:none; align-items:center; justify-content:center; }
  .iss-modal-overlay.open{ display:flex; }
  .iss-modal-box{ background:var(--white); border-radius:20px; width:770px; max-width:95vw; max-height:90vh; display:flex; flex-direction:column; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,0.3); }
  .iss-modal-header{ padding:20px 24px; flex-shrink:0; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--border-soft); }
  .iss-modal-title{ font-size:17px; font-weight:700; color:var(--text-dark); }
  .iss-modal-sub{ display:none; }
  .iss-modal-close{ background:none; border:1px solid var(--border-soft); border-radius:8px; width:32px; height:32px; cursor:pointer; font-size:15px; color:var(--text-muted); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .iss-modal-close:hover{ background:var(--bg); color:var(--text-dark); }
  .iss-modal-stepper{ display:flex; align-items:flex-start; justify-content:center; padding:18px 32px; flex-shrink:0; border-bottom:1px solid var(--border-soft); }
  .iss-modal-step{ display:flex; flex-direction:column; align-items:center; flex-shrink:0; }
  .iss-modal-step-num{ width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700; background:#e5e7eb; color:#9ca3af; flex-shrink:0; transition:background .2s,color .2s; }
  .iss-modal-step.active .iss-modal-step-num{ background:var(--navy); color:white; }
  .iss-modal-step.done .iss-modal-step-num{ background:var(--navy); color:white; }
  .iss-modal-step-label{ font-size:11.5px; font-weight:600; color:var(--text-muted); white-space:nowrap; margin-top:8px; text-align:center; }
  .iss-modal-step.active .iss-modal-step-label{ color:var(--text-dark); font-weight:700; }
  .iss-modal-step.done .iss-modal-step-label{ color:var(--text-dark); }
  .iss-modal-step-line{ flex:0 0 88px; border-top:2px dashed #d1d5db; align-self:flex-start; margin-top:20px; transition:border-color .2s; }
  .iss-modal-step.done + .iss-modal-step-line{ border-top-color:var(--navy); }
  .iss-modal-body{ flex:1; min-height:0; overflow-y:auto; padding:22px 28px; }
  .iss-modal-footer{ padding:16px 28px; border-top:1px solid var(--border-soft); display:flex; justify-content:space-between; align-items:center; flex-shrink:0; }
  .iss-modal-btn-primary{ background:var(--navy); color:white; border:none; border-radius:8px; padding:10px 22px; font-size:13px; font-weight:700; cursor:pointer; font-family:inherit; }
  .iss-modal-btn-primary:hover{ background:var(--navy-soft); }
  .iss-modal-btn-secondary{ background:var(--white); color:var(--text-dark); border:1px solid var(--border-soft); border-radius:8px; padding:10px 22px; font-size:13px; font-weight:600; cursor:pointer; font-family:inherit; }
  .iss-modal-btn-secondary:hover{ border-color:var(--navy); color:var(--navy); }
  .iss-field{ margin-bottom:18px; }
  .iss-field label{ display:block; font-size:12px; font-weight:600; color:var(--text-dark); margin-bottom:6px; }
  .iss-field input[type=text],.iss-field input[type=number],.iss-field input[type=date],.iss-field select,.iss-field textarea{ width:100%; border:1px solid var(--border-soft); border-radius:8px; padding:10px 14px; font-size:13.5px; font-family:inherit; color:var(--text-dark); outline:none; box-sizing:border-box; background:white; }
  .iss-field input:focus,.iss-field select:focus,.iss-field textarea:focus{ border-color:var(--navy); }
  .iss-field textarea{ resize:vertical; min-height:90px; }
  .iss-field-row{ display:flex; gap:16px; }
  .iss-field-row .iss-field{ flex:1; min-width:0; }
  .edm-section-head{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--text-muted); padding:10px 0 6px; border-bottom:1px solid var(--border-soft); margin-bottom:16px; margin-top:8px; }
  .ca-section-label{ font-size:13px; color:var(--text-muted); margin-bottom:16px; line-height:1.5; }
  .iss-check-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
  .iss-check-item{ display:flex; align-items:flex-start; gap:10px; padding:13px 14px; border:1px solid var(--border-soft); border-radius:10px; cursor:pointer; transition:border-color .15s; }
  .iss-check-item:hover{ border-color:var(--navy); }
  .iss-check-item input[type=checkbox]{ margin-top:2px; flex-shrink:0; accent-color:var(--navy); width:15px; height:15px; }
  .iss-check-item-label{ font-size:13px; font-weight:600; color:var(--text-dark); }
  .iss-check-item-sub{ font-size:11.5px; color:var(--text-muted); margin-top:2px; line-height:1.4; }
  .ca-radio-group{ display:flex; flex-direction:column; gap:8px; }
  .iss-radio-item{ display:flex; align-items:flex-start; gap:12px; padding:13px 14px; border:1px solid var(--border-soft); border-radius:10px; cursor:pointer; transition:border-color .15s; }
  .iss-radio-item:hover{ border-color:var(--navy); }
  .iss-radio-item input[type=radio]{ margin-top:2px; flex-shrink:0; accent-color:var(--navy); }
  .iss-country-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:12px; }
  .iss-country-item{ display:flex; align-items:center; gap:8px; padding:9px 12px; border:1px solid var(--border-soft); border-radius:8px; cursor:pointer; font-size:13px; color:var(--text-dark); font-weight:500; transition:border-color .15s; }
  .iss-country-item:hover{ border-color:var(--navy); }
  .iss-country-item input[type=checkbox]{ accent-color:var(--navy); }

  @media (max-width: 640px){ .hero{ display:none; } .auth{ flex-basis:100%; } }
  @media (max-width: 720px){ .step-label{ display:none; } .stepper-wrap{ padding:20px 16px 16px; } .field-row{ flex-direction:column; gap:16px; } }

  /* ===== DOCUSIGN MOCK (NDA) ===== */
  .ds-overlay{ position:fixed; inset:0; z-index:3100; display:flex; flex-direction:column; }
  .ds-header{ background:#26262E; display:flex; align-items:center; justify-content:space-between; padding:0 20px; height:58px; flex-shrink:0; gap:16px; }
  .ds-logo{ display:flex; align-items:center; gap:10px; }
  .ds-logo-text{ color:white; font-size:15px; font-weight:700; letter-spacing:0.01em; }
  .ds-header-title{ color:rgba(255,255,255,0.85); font-size:13.5px; font-weight:400; flex:1; text-align:center; }
  .ds-header-right{ display:flex; align-items:center; gap:10px; }
  .ds-other-actions{ background:none; border:1px solid rgba(255,255,255,0.3); border-radius:4px; color:rgba(255,255,255,0.8); font-size:12.5px; font-weight:500; padding:6px 12px; cursor:pointer; font-family:inherit; transition:border-color .15s,color .15s; }
  .ds-other-actions:hover{ border-color:rgba(255,255,255,0.65); color:white; }
  .ds-finish-btn{ background:#FFB500; border:none; border-radius:4px; color:#1a1a1a; font-size:13.5px; font-weight:700; padding:8px 24px; cursor:pointer; font-family:inherit; transition:background .15s; }
  .ds-finish-btn:disabled{ background:#4a4a52; color:#888; cursor:not-allowed; }
  .ds-finish-btn:not(:disabled):hover{ background:#e6a300; }
  .ds-doc-area{ background:#d8d8d8; flex:1; overflow-y:auto; display:flex; justify-content:center; padding:36px 20px 72px; }
  .ds-doc-card{ background:white; width:min(740px,100%); box-shadow:0 4px 24px rgba(0,0,0,0.22); padding:64px 72px; }
  .ds-doc-letterhead{ text-align:center; margin-bottom:40px; padding-bottom:28px; border-bottom:2px solid #26262E; }
  .ds-doc-company{ font-size:13px; font-weight:600; color:#555; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:8px; }
  .ds-doc-type{ font-size:22px; font-weight:800; color:#26262E; letter-spacing:0.03em; }
  .ds-doc-body{ font-size:13.5px; color:#2a2a2a; line-height:1.8; }
  .ds-doc-body p{ margin:0 0 18px; }
  .ds-sig-block{ margin-top:52px; padding-top:36px; border-top:1px solid #ddd; }
  .ds-sig-row{ display:flex; gap:28px; align-items:flex-end; }
  .ds-sig-col{ flex:1; }
  .ds-sig-col-wide{ flex:1.6; }
  .ds-sig-label{ font-size:10.5px; font-weight:700; color:#888; text-transform:uppercase; letter-spacing:0.07em; margin-bottom:8px; }
  .ds-sig-field{ border:2px dashed #FFB500; border-radius:4px; background:#FFFBEE; min-height:64px; display:flex; align-items:center; justify-content:center; cursor:pointer; margin-bottom:4px; transition:background .15s,border-color .15s; }
  .ds-sig-field:hover:not(.signed){ background:#FFF5D0; }
  .ds-sig-field.signed{ background:#FFFBEE; border-style:solid; cursor:default; }
  .ds-sig-prompt{ font-size:13px; color:#c08000; font-weight:500; }
  .ds-sig-name{ font-family:'Dancing Script','Segoe Script',cursive; font-size:34px; color:#111; line-height:1; padding:4px 16px; }
  .ds-sig-text-val{ font-size:14px; color:#1a1a1a; padding:10px 0 8px; font-weight:500; }
  .ds-sig-underline{ height:1px; background:#bbb; }

  /* ===== REGISTER INTEREST MODAL ===== */
  .roi-modal-overlay{ position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:3000; display:flex; align-items:center; justify-content:center; }
  .roi-modal-box{ background:white; border-radius:16px; width:min(480px,94vw); box-shadow:0 24px 80px rgba(0,0,0,0.3); overflow:hidden; }
  .roi-modal-header{ padding:24px 28px 20px; border-bottom:1px solid var(--border-soft); }
  .roi-modal-title{ font-size:18px; font-weight:800; color:var(--text-dark); margin-bottom:6px; }
  .roi-modal-deal{ font-size:12.5px; color:var(--text-muted); }
  .roi-modal-body{ padding:24px 28px; }
  .roi-field-label{ font-size:12px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.5px; margin-bottom:10px; }
  .roi-amount-row{ display:flex; gap:10px; margin-bottom:20px; }
  .roi-currency-badge{ background:var(--bg); border:1px solid var(--border-soft); border-radius:8px; padding:10px 14px; font-size:13px; font-weight:700; color:var(--text-dark); flex-shrink:0; }
  .roi-amount-input{ flex:1; border:1px solid var(--border-soft); border-radius:8px; padding:10px 14px; font-size:14px; font-weight:600; color:var(--text-dark); font-family:inherit; outline:none; transition:border-color .15s; }
  .roi-amount-input:focus{ border-color:var(--green); box-shadow:0 0 0 3px rgba(0,82,99,0.08); }
  .roi-disclaimer{ display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:var(--text-muted); line-height:1.55; cursor:pointer; }
  .roi-disclaimer input{ margin-top:3px; flex-shrink:0; accent-color:var(--green); width:15px; height:15px; }
  .roi-modal-footer{ display:flex; justify-content:flex-end; gap:10px; padding:16px 28px 24px; border-top:1px solid #f0f0f0; }
  .roi-cancel-btn{ background:none; border:1.5px solid var(--border-soft); border-radius:8px; padding:10px 18px; font-size:13px; font-weight:600; color:var(--text-muted); cursor:pointer; font-family:inherit; }
  .roi-cancel-btn:hover{ border-color:#c0c0c0; color:var(--text-dark); }
  .roi-submit-btn{ background:var(--navy); border:none; border-radius:8px; padding:10px 20px; font-size:13px; font-weight:700; color:white; cursor:pointer; font-family:inherit; transition:background .15s; }
  .roi-submit-btn:hover{ background:#023040; }

