
    #scroll-bar {
      position: fixed; top: 0; left: 0; z-index: 9999;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, #1565C0, #D94040, #E5A020);
      transition: width .1s linear; pointer-events: none;
    }

    :root {
      --g900: #0A2558;
      --g800: #0D3380;
      --g700: #1565C0;
      --g600: #1976D2;
      --g200: #BBDEFB;
      --g100: #DDEEFF;
      --g50:  #F0F7FF;
      --gold:       #E5A020;
      --gold-light: #F0BA45;
      --gold-pale:  #FEF9ED;
      --gold-dark:  #B87A10;
      --white: #FFFFFF;
      --ink:   #111827;
      --gray-700: #374151;
      --gray-600: #4B5563;
      --gray-500: #6B7280;
      --gray-400: #9CA3AF;
      --gray-300: #D1D5DB;
      --gray-200: #E5E7EB;
      --gray-100: #F3F4F6;
      --gray-50:  #F9FAFB;
      --sh-sm: 0 1px 3px rgba(0,0,0,.06);
      --sh-md: 0 4px 20px rgba(0,0,0,.09);
      --sh-lg: 0 12px 48px rgba(0,0,0,.13);
      --r: 10px; --rl: 18px; --rx: 26px; --t: .3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--ink); background: var(--white);
      line-height: 1.6; overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: rgba(21,101,192,.15); color: var(--g900); }
    :focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; }
    .wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

    .label {
      display: inline-block; font-size: 12px; font-weight: 700;
      letter-spacing: .6px; text-transform: uppercase;
      color: var(--gray-700);
      border-left: 3px solid var(--g700); padding-left: 10px; line-height: 1.4;
    }
    .h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--ink); line-height: 1.25; margin-top: 10px; letter-spacing: -.3px; }
    .body-lg { font-size: 15.5px; color: var(--gray-500); line-height: 1.78; margin-top: 14px; }
    .center { text-align: center; }

    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 12px 24px; border-radius: 8px;
      font-size: 15px; font-weight: 500;
      border: 2px solid transparent;
      transition: all var(--t); white-space: nowrap;
    }
    .btn-primary { background: var(--g700); color: var(--white); border-color: var(--g700); border-radius: 6px; }
    .btn-primary:hover { background: var(--g800); border-color: var(--g800); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,48,128,.3); }
    .btn-sm { padding: 10px 22px; font-size: 13.5px; }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    .js .rise { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
    .js .rise.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

    .navbar {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-100); transition: box-shadow var(--t);
    }
    .navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
    .navbar.scrolled::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--g700), var(--gold), var(--g700));
      opacity: .6;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { flex-shrink: 0; min-width: 0; }
    .nav-logo img { height: 42px; width: auto; flex-shrink: 0; }
    .nav-links { display: flex; align-items: center; gap: 0; }
    .nav-item { position: relative; }
    .nav-link {
      display: flex; align-items: center; gap: 4px;
      padding: 9px 14px; font-size: 13.5px; font-weight: 500;
      color: #4B5563; border-radius: 7px; transition: all var(--t); white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--g700); background: var(--g50); }
    @media (max-width: 1280px) {
      .nav-link { padding: 7px 9px; font-size: 12.5px; }
    }
    .nav-chev { width: 14px; height: 14px; transition: transform var(--t); flex-shrink: 0; }
    .nav-item:hover .nav-chev { transform: rotate(180deg); }
    .dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px); background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; padding: 8px; min-width: 200px; box-shadow: 0 8px 32px rgba(0,0,0,.12); opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t); z-index: 100; }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .dropdown a { display: block; padding: 8px 14px; font-size: 13px; color: var(--gray-700); border-radius: 6px; transition: background var(--t), color var(--t); }
    .dropdown a:hover { background: var(--g50); color: var(--g700); }
    .dropdown::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
    .nav-item.hover-open .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .nav-link.active { font-weight: 600; }
    .nav-right { display: flex; flex-shrink: 0; align-items: center; gap: 16px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border: none; background: none; border-radius: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--t); }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    .ann-bar { background: var(--g900); color: rgba(255,255,255,.8); font-size: 12px; text-align: center; padding: 9px 24px; }
    .ann-bar strong { color: var(--gold); }
    .ann-bar a { color: var(--gold); }
    .ann-bar a:hover { text-decoration: underline; }

    .breadcrumb-strip { background: var(--g50); border-bottom: 1px solid var(--g100); padding: 12px 0; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
    .breadcrumb a { color: var(--g700); font-weight: 500; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

    .sec-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
    .sec-header .label { margin-bottom: 8px; }
    .sec-header .h2 { font-size: clamp(24px, 3.2vw, 36px); }
    .sec-header .body-lg { max-width: 520px; margin: 14px auto 0; text-align: center; }

    #investment-redemption { background: var(--white); padding: 80px 0; }
    .transaction-wrap { max-width: 980px; margin: 0 auto; }
    .transaction-intro { max-width: 760px; margin: 14px auto 42px; text-align: center; }
    .transaction-table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: 18px; box-shadow: var(--sh-sm); }
    .transaction-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 13px; }
    .transaction-table th { padding: 17px 20px; background: var(--g900); color: var(--white); text-align: left; font-size: 12px; font-weight: 700; }
    .transaction-table th:not(:first-child) { text-align: center; }
    .transaction-table td { padding: 17px 20px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); line-height: 1.5; vertical-align: top; }
    .transaction-table td:first-child { width: 22%; color: var(--g900); font-weight: 700; }
    .transaction-table tbody tr:nth-child(even) { background: var(--gray-50); }
    .transaction-table tbody tr:last-child td { border-bottom: none; }
    .transaction-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 24px; }
    .transaction-card { padding: 26px; border: 1px solid var(--gray-200); border-radius: 16px; background: var(--white); transition: all var(--t); }
    .transaction-card:hover { border-color: var(--g200); box-shadow: var(--sh-md); transform: translateY(-3px); }
    .transaction-icon { width: 44px; height: 44px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--g700); background: var(--g50); border: 1px solid var(--g100); }
    .transaction-icon svg { width: 21px; height: 21px; }
    .transaction-title { margin-bottom: 8px; color: var(--g900); font-size: 15px; font-weight: 700; }
    .transaction-desc { color: var(--gray-500); font-size: 13px; line-height: 1.7; }
    .scroll-hint { display: none; margin: 10px 2px 8px; color: var(--gray-400); font-size: 11px; font-weight: 500; text-align: right; }

    .footer { background: var(--g900); color: rgba(255,255,255,.75); padding: 64px 0 0; }
    .footer-top {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
    .footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 240px; }
    .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color var(--t); }
    .footer-col ul a:hover { color: #fff; }
    .footer-address { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
    .footer-contact-link { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 10px; transition: color var(--t); }
    .footer-contact-link svg { width: 15px; height: 15px; flex-shrink: 0; }
    .footer-contact-link:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { color: rgba(255,255,255,.3); transition: color var(--t); }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
    .legal { background: rgba(0,0,0,.25); padding: 16px 0; font-size: 11.5px; color: rgba(255,255,255,.35); text-align: center; line-height: 1.6; }

    .dropdown.dropdown-wide { min-width: 250px; }

    .mobile-nav {
      display: grid;
      grid-template-rows: 0fr;
      background: var(--white);
      border-top: 1px solid transparent;
      box-shadow: none;
      text-align: left;
      overflow: hidden;
      transition: grid-template-rows .35s cubic-bezier(.22,.61,.36,1),
                  box-shadow .35s ease,
                  border-color .35s ease;
    }
    .mobile-nav.open {
      grid-template-rows: 1fr;
      border-top-color: var(--gray-100);
      box-shadow: 0 14px 36px rgba(0,0,0,.10);
      max-height: 85vh;
    }
    .mobile-nav-inner {
      min-height: 0;
      overflow: hidden;
      padding: 0 24px;
      text-align: left;
    }
    .mobile-nav.open .mobile-nav-inner {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 12px 24px 28px;
    }
    .m-nav-link {
      display: flex; align-items: center; justify-content: flex-start;
      text-align: left;
      padding: 12px 0; font-size: 15px; font-weight: 500;
      color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
      transition: color var(--t), padding-left var(--t);
    }
    .m-nav-link:hover, .m-nav-link.active { color: var(--g700); font-weight: 600; padding-left: 4px; }
    .mobile-nav .m-nav-link::before { display: none; }
    .m-nav-item { border-bottom: 1px solid var(--gray-100); text-align: left; }
    .m-nav-header {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; text-align: left; cursor: pointer;
    }
    .m-nav-header .m-nav-link { border-bottom: none; flex-grow: 1; text-align: left; justify-content: flex-start; }
    .m-chev-btn {
      width: 40px; height: 40px; border: none; background: transparent;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-400); cursor: pointer; border-radius: 6px;
      transition: all var(--t); flex-shrink: 0;
    }
    .m-chev-btn:hover { background: var(--g50); color: var(--g700); }
    .m-nav-chev { width: 14px; height: 14px; transition: transform var(--t); }
    .m-nav-item.open .m-nav-chev { transform: rotate(180deg); color: var(--g700); }
    .m-submenu {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 12px;
      margin-bottom: 0;
      background: var(--gray-50);
      border-radius: 8px;
      text-align: left;
      transition: max-height .35s cubic-bezier(.22,.61,.36,1),
                  opacity .25s ease,
                  padding .35s ease,
                  margin .35s ease;
    }
    .m-nav-item.open .m-submenu {
      max-height: 480px;
      opacity: 1;
      padding: 6px 12px 12px 14px;
      margin-bottom: 10px;
    }
    .m-submenu a {
      display: flex; align-items: center; justify-content: flex-start;
      text-align: left; gap: 8px;
      padding: 9px 0; font-size: 13.5px; color: var(--gray-600);
      border-bottom: 1px solid rgba(0,0,0,.04);
      transition: all var(--t);
    }
    .m-submenu a:last-child { border-bottom: none; }
    .m-submenu a::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--g200); flex-shrink: 0; transition: background var(--t);
    }
    .m-submenu a:hover { color: var(--g700); padding-left: 4px; }
    .m-submenu a:hover::before { background: var(--gold); }

    @media (max-width: 900px) {
      .nav-links, .nav-right .btn-sm { display: none; }
      .hamburger { display: flex; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .wrap, .container { padding-left: 20px; padding-right: 20px; }
      .nav-right .btn-sm { display: none !important; }
      #investment-redemption { padding-top: 64px; padding-bottom: 64px; }
      .sec-header { margin-bottom: 36px; }
      .transaction-cards { grid-template-columns: 1fr; }
      .transaction-table-wrap { -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
      .scroll-hint { display: block; }
    }
    @media (max-width: 480px) {
      .wrap, .container { padding-left: 16px; padding-right: 16px; }
      .sec-header { margin-bottom: 30px; }
      .scroll-hint { margin-top: 8px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (hover: none) {
      .transaction-card:hover { transform: none; }
    }
      a[href="about.html#investment-committee"] { display: none !important; }

.ip0{color:var(--gold) !important}
.ip1{margin-top:24px !important}