    :root {
      --bg: #eef3f1;
      --bg-2: #e2ebe8;
      --surface: rgba(255, 255, 255, 0.78);
      --surface-solid: #ffffff;
      --surface-soft: rgba(255, 255, 255, 0.52);
      --ink: #10231f;
      --ink-muted: #596b66;
      --ink-soft: #788783;
      --line: rgba(16, 35, 31, 0.12);
      --line-strong: rgba(16, 35, 31, 0.2);
      --brand: #153f38;
      --brand-2: #0f6358;
      --brand-3: #39a796;
      --gold: #b58a38;
      --gold-soft: #f4dfb7;
      --danger: #9d3b35;
      --ok: #17785f;
      --warn: #9f6a17;
      --shadow: 0 24px 70px rgba(15, 43, 38, 0.14);
      --shadow-soft: 0 14px 40px rgba(15, 43, 38, 0.1);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --max: 1180px;
      --focus: 0 0 0 4px rgba(57, 167, 150, 0.28);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
      background:
        radial-gradient(circle at top left, rgba(57, 167, 150, 0.2), transparent 34rem),
        radial-gradient(circle at 72% 8%, rgba(181, 138, 56, 0.18), transparent 30rem),
        linear-gradient(135deg, #f8fbfa 0%, #edf4f2 48%, #dfe9e6 100%);
      min-height: 100vh;
    }

    body.modal-open { overflow: hidden; }

    a { color: inherit; text-decoration: none; }

    button, input, textarea, select {
      font: inherit;
    }

    button { cursor: pointer; }

    :focus-visible {
      outline: none;
      box-shadow: var(--focus);
      border-radius: 12px;
    }

    .skip-link {
      position: fixed;
      left: 16px;
      top: 12px;
      transform: translateY(-150%);
      z-index: 1000;
      background: var(--brand);
      color: white;
      padding: 10px 14px;
      border-radius: 999px;
      transition: transform 0.2s ease;
    }

    .skip-link:focus { transform: translateY(0); }

    .page-shell { overflow: hidden; }

    .top-status {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.66);
      backdrop-filter: blur(18px);
    }

    .status-inner,
    .nav-inner,
    .section,
    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin-inline: auto;
    }

    .site-footer .brand-logo {
      width: 42px;
      height: 42px;
    }

    .status-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 9px 0;
      font-size: 0.82rem;
      color: var(--ink-muted);
    }

    .status-left,
    .status-right {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--ok);
      box-shadow: 0 0 0 0 rgba(23, 120, 95, 0.35);
      animation: pulse 2.4s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(23, 120, 95, 0.35); }
      70% { box-shadow: 0 0 0 9px rgba(23, 120, 95, 0); }
      100% { box-shadow: 0 0 0 0 rgba(23, 120, 95, 0); }
    }

    .divider-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(16, 35, 31, 0.28);
    }

    header.site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(16, 35, 31, 0.08);
      background: rgba(242, 247, 245, 0.76);
      backdrop-filter: blur(22px);
    }

    .nav-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 760;
      letter-spacing: -0.03em;
      min-width: max-content;
    }

    .brand-logo {
      width: 46px;
      height: 46px;
      object-fit: cover;
      border-radius: 15px;
      box-shadow: 0 14px 32px rgba(6, 18, 16, 0.18);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(21, 63, 56, 0.18);
      border-radius: 15px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.34)),
        radial-gradient(circle at 64% 24%, rgba(181, 138, 56, 0.32), transparent 45%),
        rgba(21, 63, 56, 0.08);
      box-shadow: 0 16px 32px rgba(16, 35, 31, 0.12);
    }

    .brand-mark svg { width: 28px; height: 28px; }

    .brand-text {
      display: grid;
      line-height: 1.05;
    }

    .brand-text small {
      color: var(--ink-muted);
      font-weight: 650;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    nav.primary-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.46);
      border-radius: 999px;
    }

    nav.primary-nav a {
      color: var(--ink-muted);
      font-weight: 680;
      font-size: 0.9rem;
      padding: 9px 13px;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    nav.primary-nav a:hover {
      color: var(--brand);
      background: rgba(21, 63, 56, 0.07);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 16px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 760;
      letter-spacing: -0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: translateY(0); }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 18px 34px rgba(21, 63, 56, 0.22);
    }

    .btn-primary:hover { background: #0d302a; }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.7);
      border-color: var(--line);
      color: var(--brand);
    }

    .btn-secondary:hover {
      border-color: rgba(21, 63, 56, 0.26);
      background: rgba(255, 255, 255, 0.92);
    }

    .btn-gold {
      background: #f4e4c3;
      color: #583c0e;
      border-color: rgba(181, 138, 56, 0.22);
    }

    .mobile-menu-btn { display: none; }

    main { position: relative; }

    .hero {
      width: min(1280px, calc(100% - 40px));
      margin: 0 auto;
      padding: 76px 0 38px;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 40px;
      align-items: center;
      min-height: calc(100vh - 118px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(21, 63, 56, 0.14);
      background: rgba(255, 255, 255, 0.64);
      color: var(--brand-2);
      font-size: 0.84rem;
      font-weight: 780;
      box-shadow: 0 10px 26px rgba(16, 35, 31, 0.07);
    }

    .eyebrow svg { width: 17px; height: 17px; }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      margin: 22px 0 18px;
      font-size: clamp(3.1rem, 7vw, 6.7rem);
      line-height: 0.88;
      letter-spacing: -0.08em;
      color: #09201b;
    }

    h1 .soft {
      display: block;
      color: rgba(9, 32, 27, 0.56);
    }

    .lead {
      max-width: 66ch;
      color: var(--ink-muted);
      font-size: clamp(1.05rem, 2vw, 1.26rem);
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 720px;
    }

    .trust-card {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.58);
      border-radius: 18px;
      padding: 13px 14px;
      box-shadow: 0 12px 32px rgba(16, 35, 31, 0.06);
    }

    .trust-card strong {
      display: block;
      font-size: 0.95rem;
      color: var(--brand);
      margin-bottom: 2px;
    }

    .trust-card span {
      color: var(--ink-muted);
      font-size: 0.84rem;
    }

    .hero-visual {
      position: relative;
      min-height: 660px;
      display: grid;
      place-items: center;
    }

    .orbit {
      position: absolute;
      inset: 5% 4%;
      border: 1px solid rgba(21, 63, 56, 0.12);
      border-radius: 50%;
      transform: rotate(-12deg);
    }

    .orbit.two {
      inset: 13% 1% 16% 9%;
      transform: rotate(21deg);
      border-color: rgba(181, 138, 56, 0.22);
    }

    .console {
      position: relative;
      width: min(100%, 560px);
      border: 1px solid rgba(16, 35, 31, 0.14);
      border-radius: 36px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
        radial-gradient(circle at 84% 18%, rgba(57, 167, 150, 0.17), transparent 38%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .console-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.45);
    }

    .window-dots { display: flex; gap: 7px; }
    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(16, 35, 31, 0.18);
    }
    .window-dots span:nth-child(2) { background: rgba(181, 138, 56, 0.48); }
    .window-dots span:nth-child(3) { background: rgba(23, 120, 95, 0.46); }

    .console-label {
      font-size: 0.82rem;
      color: var(--ink-muted);
      font-weight: 760;
    }

    .console-body { padding: 22px; }

    .identity-card {
      border: 1px solid rgba(21, 63, 56, 0.14);
      border-radius: 28px;
      padding: 20px;
      background: #0f2f29;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .identity-card::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244, 223, 183, 0.34), transparent 68%);
      top: -80px;
      right: -70px;
    }

    .id-head {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
      margin-bottom: 26px;
    }

    .id-head small {
      display: block;
      color: rgba(255,255,255,0.64);
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 780;
    }

    .id-head strong {
      display: block;
      font-size: 1.45rem;
      letter-spacing: -0.04em;
    }

    .assurance {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      color: #f9eacb;
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 0.78rem;
      font-weight: 760;
      white-space: nowrap;
    }

    .identity-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .id-attribute {
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 12px;
    }

    .id-attribute span {
      display: block;
      color: rgba(255,255,255,0.58);
      font-size: 0.76rem;
      margin-bottom: 4px;
    }

    .id-attribute strong {
      font-size: 0.94rem;
    }

    .console-panel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 14px;
    }

    .mini-panel {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.7);
      border-radius: 22px;
      padding: 16px;
      min-height: 142px;
    }

    .mini-panel h3 {
      margin-bottom: 8px;
      font-size: 0.95rem;
      letter-spacing: -0.02em;
    }

    .mini-panel p {
      margin: 0;
      color: var(--ink-muted);
      font-size: 0.85rem;
    }

    .flow-line {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
    }

    .flow-line span {
      height: 7px;
      border-radius: 999px;
      background: rgba(21, 63, 56, 0.12);
      flex: 1;
      overflow: hidden;
    }

    .flow-line span::after {
      content: "";
      display: block;
      height: 100%;
      width: 72%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--brand-2), var(--brand-3));
    }

    .audit-list {
      list-style: none;
      padding: 0;
      margin: 12px 0 0;
      display: grid;
      gap: 8px;
    }

    .audit-list li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--ink-muted);
      font-size: 0.8rem;
    }

    .floating-card {
      position: absolute;
      z-index: 2;
      width: 210px;
      padding: 14px;
      border: 1px solid rgba(16, 35, 31, 0.12);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 18px 45px rgba(16, 35, 31, 0.14);
      backdrop-filter: blur(18px);
    }

    .floating-card strong { display: block; font-size: 0.9rem; }
    .floating-card span { display: block; color: var(--ink-muted); font-size: 0.78rem; margin-top: 4px; }

    .floating-card.one { left: 0; top: 78px; }
    .floating-card.two { right: 2px; bottom: 88px; }

    .section {
      padding: 80px 0;
    }

    .section.compact { padding-top: 36px; }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
      gap: 32px;
      align-items: end;
      margin-bottom: 30px;
    }

    .kicker {
      color: var(--brand-2);
      font-weight: 820;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.76rem;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
      margin-bottom: 0;
    }

    .section-head p {
      color: var(--ink-muted);
      font-size: 1.02rem;
      margin-bottom: 0;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .metric {
      padding: 22px;
      border-radius: 24px;
      background: rgba(255,255,255,0.64);
      border: 1px solid var(--line);
      box-shadow: 0 12px 32px rgba(16, 35, 31, 0.06);
    }

    .metric strong {
      display: block;
      font-size: 2.2rem;
      line-height: 1;
      letter-spacing: -0.06em;
      color: var(--brand);
      margin-bottom: 8px;
    }

    .metric span {
      display: block;
      color: var(--ink-muted);
      font-weight: 680;
      font-size: 0.9rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .feature-card {
      position: relative;
      min-height: 286px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      background: rgba(255, 255, 255, 0.62);
      box-shadow: 0 14px 38px rgba(16, 35, 31, 0.07);
      overflow: hidden;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(57, 167, 150, 0.15), transparent 42%);
      pointer-events: none;
    }

    .feature-card.gold::before {
      background: radial-gradient(circle at top right, rgba(181, 138, 56, 0.22), transparent 43%);
    }

    .icon-box {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(21, 63, 56, 0.08);
      border: 1px solid rgba(21, 63, 56, 0.12);
      color: var(--brand);
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .icon-box svg { width: 23px; height: 23px; }

    .feature-card h3 {
      font-size: 1.22rem;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .feature-card p {
      color: var(--ink-muted);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      position: relative;
      z-index: 1;
    }

    .tag {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 6px 10px;
      color: var(--ink-muted);
      background: rgba(255,255,255,0.58);
      font-size: 0.78rem;
      font-weight: 720;
    }

    .split-showcase {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 18px;
      align-items: stretch;
    }

    .dark-panel {
      background:
        radial-gradient(circle at 20% 0%, rgba(57, 167, 150, 0.22), transparent 38%),
        linear-gradient(145deg, #102b26, #071a17);
      color: white;
      border-radius: var(--radius-xl);
      padding: 32px;
      min-height: 560px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .dark-panel h2 { color: white; margin-bottom: 18px; }
    .dark-panel p { color: rgba(255,255,255,0.68); }

    .credential-stack {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .credential {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 15px;
    }

    .credential strong { display: block; }
    .credential span { color: rgba(255,255,255,0.56); font-size: 0.84rem; }

    .credential-badge {
      min-width: max-content;
      border-radius: 999px;
      background: rgba(244, 223, 183, 0.12);
      border: 1px solid rgba(244, 223, 183, 0.22);
      color: #f8e4b9;
      padding: 7px 10px;
      font-size: 0.76rem;
      font-weight: 780;
    }

    .light-panel {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.66);
      border-radius: var(--radius-xl);
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }

    .workflow-grid {
      display: grid;
      gap: 12px;
    }

    .workflow-item {
      display: grid;
      grid-template-columns: 54px 1fr auto;
      gap: 14px;
      align-items: center;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.72);
      border-radius: 22px;
      padding: 16px;
    }

    .step-no {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(21, 63, 56, 0.08);
      color: var(--brand);
      font-weight: 850;
    }

    .workflow-item h3 { margin: 0 0 2px; font-size: 1rem; }
    .workflow-item p { margin: 0; color: var(--ink-muted); font-size: 0.88rem; }

    .status-pill {
      border-radius: 999px;
      padding: 7px 10px;
      background: rgba(23, 120, 95, 0.09);
      color: var(--ok);
      font-size: 0.76rem;
      font-weight: 790;
      white-space: nowrap;
    }

    .status-pill.warn {
      background: rgba(159, 106, 23, 0.1);
      color: var(--warn);
    }

    .data-table-wrap {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: rgba(255,255,255,0.7);
      box-shadow: var(--shadow-soft);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 740px;
    }

    th, td {
      text-align: left;
      padding: 17px 18px;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }

    th {
      color: var(--brand);
      background: rgba(21, 63, 56, 0.05);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    td { color: var(--ink-muted); }
    td strong { color: var(--ink); display: block; margin-bottom: 2px; }
    tr:last-child td { border-bottom: 0; }

    .table-scroll { overflow-x: auto; }

    .portal-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .portal-card {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.62);
      border-radius: 24px;
      padding: 22px;
      min-height: 260px;
      box-shadow: 0 12px 32px rgba(16, 35, 31, 0.06);
    }

    .portal-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1.06rem;
      letter-spacing: -0.02em;
    }

    .portal-card p {
      color: var(--ink-muted);
      margin-bottom: 18px;
      font-size: 0.93rem;
    }

    .portal-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
      color: var(--ink-muted);
      font-size: 0.86rem;
    }

    .portal-card li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .portal-card li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand-3);
      margin-top: 8px;
      flex: 0 0 auto;
    }

    .compliance-band {
      border-radius: 36px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.56)),
        radial-gradient(circle at 10% 0%, rgba(57,167,150,0.2), transparent 36%),
        radial-gradient(circle at 90% 20%, rgba(181,138,56,0.18), transparent 32%);
      border: 1px solid var(--line);
      padding: 30px;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 22px;
      align-items: center;
    }

    .compliance-buttons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .legal-btn {
      text-align: left;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.7);
      color: var(--ink);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .legal-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(21, 63, 56, 0.26);
      background: rgba(255,255,255,0.94);
    }

    .legal-btn strong { display: block; margin-bottom: 4px; }
    .legal-btn span { color: var(--ink-muted); font-size: 0.86rem; }

    .request-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 18px;
      border-radius: 36px;
      padding: 26px;
      background: #0f2f29;
      color: white;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .request-panel::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      top: -180px;
      right: -120px;
      background: radial-gradient(circle, rgba(181, 138, 56, 0.32), transparent 67%);
    }

    .request-copy,
    .access-form {
      position: relative;
      z-index: 1;
    }

    .request-copy h2 { color: white; margin-bottom: 18px; }
    .request-copy p { color: rgba(255,255,255,0.68); max-width: 60ch; }

    .request-points {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 11px;
    }

    .request-points li {
      display: flex;
      gap: 10px;
      color: rgba(255,255,255,0.72);
    }

    .request-points li::before {
      content: "✓";
      color: #f4dfb7;
      font-weight: 900;
    }

    .access-form {
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.08);
      border-radius: 28px;
      padding: 20px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }

    label {
      color: rgba(255,255,255,0.7);
      font-size: 0.82rem;
      font-weight: 720;
    }

    input, textarea, select {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.1);
      color: white;
      border-radius: 15px;
      padding: 12px 13px;
      outline: none;
    }

    input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.38); }
    select option { color: #10231f; }

    textarea { resize: vertical; min-height: 104px; }

    .form-note {
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
      margin: 12px 0 16px;
    }

    footer.site-footer {
      margin-top: 70px;
      padding: 44px 0;
      background: rgba(9, 32, 27, 0.94);
      color: white;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.6);
      max-width: 62ch;
      margin: 12px 0 0;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .footer-links button {
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.78);
      border-radius: 999px;
      padding: 9px 12px;
    }

    .footer-meta {
      grid-column: 1 / -1;
      color: rgba(255,255,255,0.42);
      font-size: 0.82rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 18px;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(6, 18, 16, 0.58);
      backdrop-filter: blur(14px);
    }

    .modal-backdrop.is-open { display: flex; }

    .modal {
      width: min(920px, 100%);
      max-height: min(84vh, 940px);
      overflow: hidden;
      border-radius: 30px;
      background: #fbfdfc;
      color: var(--ink);
      box-shadow: 0 34px 90px rgba(0,0,0,0.28);
      border: 1px solid rgba(255,255,255,0.42);
      display: grid;
      grid-template-rows: auto 1fr;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      padding: 24px 26px;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at top right, rgba(57,167,150,0.12), transparent 42%),
        rgba(255,255,255,0.9);
    }

    .modal-header h2 {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      margin: 0 0 6px;
    }

    .modal-header p {
      margin: 0;
      color: var(--ink-muted);
    }

    .modal-close {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.72);
      color: var(--ink);
      font-size: 1.3rem;
      line-height: 1;
      flex: 0 0 auto;
    }

    .modal-body {
      padding: 26px;
      overflow: auto;
    }

    .legal-section {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.68);
      border-radius: 20px;
      padding: 18px;
      margin-bottom: 14px;
    }

    .legal-section h3 {
      margin: 0 0 8px;
      letter-spacing: -0.02em;
    }

    .legal-section p,
    .legal-section li {
      color: var(--ink-muted);
    }

    .legal-section p:last-child,
    .legal-section ul:last-child,
    .legal-section ol:last-child { margin-bottom: 0; }

    .legal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .placeholder-note {
      border-left: 4px solid var(--gold);
      background: rgba(244, 223, 183, 0.35);
      padding: 13px 14px;
      border-radius: 14px;
      color: #664814;
      font-weight: 680;
    }

    .muted { color: var(--ink-muted); }

    @media (max-width: 1080px) {
      nav.primary-nav { display: none; }
      .mobile-menu-btn { display: inline-flex; }
      .hero { grid-template-columns: 1fr; padding-top: 52px; }
      .hero-visual { min-height: 560px; }
      .section-head,
      .split-showcase,
      .compliance-band,
      .request-panel { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .portal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 740px) {
      .status-inner { align-items: flex-start; }
      .status-right { display: none; }
      .nav-inner { min-height: 68px; }
      .brand-text span { font-size: 0.9rem; }
      .brand-text small { font-size: 0.65rem; }
      .nav-actions .btn-secondary { display: none; }
      .hero, .section, .status-inner, .nav-inner, .footer-inner { width: min(100% - 26px, var(--max)); }
      .hero { min-height: auto; padding: 42px 0 24px; }
      h1 { font-size: clamp(3.2rem, 16vw, 5.4rem); }
      .trust-row, .metrics, .feature-grid, .portal-grid, .console-panel-grid, .legal-grid, .form-grid, .compliance-buttons { grid-template-columns: 1fr; }
      .hero-visual { min-height: auto; padding: 30px 0 8px; }
      .floating-card, .orbit { display: none; }
      .console { border-radius: 26px; }
      .identity-grid { grid-template-columns: 1fr; }
      .section { padding: 56px 0; }
      .workflow-item { grid-template-columns: 44px 1fr; }
      .workflow-item .status-pill { grid-column: 2; width: max-content; }
      .dark-panel, .light-panel, .compliance-band, .request-panel { border-radius: 26px; padding: 22px; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-links { justify-content: flex-start; }
      .modal-backdrop { padding: 10px; }
      .modal { border-radius: 22px; max-height: 90vh; }
      .modal-header, .modal-body { padding: 18px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }