
    :root {
      --gold: #E8B94F;
      --gold-light: #F5D478;
      --gold-pale: #FFF8E1;
      --deep: #08090D;
      --surface: #0E1018;
      --surface2: #151822;
      --surface3: #1D2130;
      --border: rgba(232, 185, 79, 0.14);
      --text: #F0F2F8;
      --text-muted: #FFF;
      --cyan: #56E8E8;
      --violet: #A87DF2;
      --rose: #F07B91;
      --emerald: #5BD99A;
      --orange: #F59B5C;
      --blue: #6AABFF;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--deep);
      color: var(--text);
      font-family: "Plus Jakarta Sans";
      font-size: 15px;
      line-height: 1.75;
      overflow-x: hidden;
    }
    text{
        font-family: "Plus Jakarta Sans";
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: .5;
    }

    /* ── SIDEBAR NAV ── */
    .sidebar {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      width: 240px;
      background: var(--surface);
      border-right: 1px solid var(--border);
      overflow-y: auto;
      z-index: 100;
      padding: 28px 0 40px;
      display: flex;
      flex-direction: column;
    }

    .sidebar-logo {
      padding: 0 24px 28px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 20px;
    }

    .sidebar-logo .logo-badge {
      font-family: "Plus Jakarta Sans";
      font-size: 22px;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: .04em;
    }

    .sidebar-logo .logo-sub {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .nav-section {
      font-size: 14px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #00fdff;
      padding: 10px 24px 4px;
      font-weight: 600;
      text-decoration: underline;
    }

    .nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 24px;
      font-size: 14.5px;
      color: #fff;
      text-decoration: none;
      transition: all .2s;
      border-left: 2px solid transparent;
      cursor: pointer;
    }

    .nav-item:hover {
      color: var(--gold);
      border-left-color: var(--gold);
      background: rgba(212, 168, 67, .05);
    }

    .nav-item .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── MAIN ── */
    main {
      margin-left: 240px;
      position: relative;
      z-index: 1;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #08090D 0%, #0a0e17 40%, #0f1420 70%, #0b0f16 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 80px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 168, 67, .12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(91, 156, 246, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-size: 14px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: "Plus Jakarta Sans";
      font-size: clamp(48px, 6vw, 88px);
      font-weight: 900;
      line-height: 1.05;
      color: #fff;
      letter-spacing: -.02em;
      margin-bottom: 12px;
    }

    .hero-title span {
      color: var(--gold);
    }

    .hero-subtitle {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 48px;
      line-height: 1.6;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 600px;
    }

    .meta-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px;
    }

    .meta-card .mc-label {
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .meta-card .mc-value {
      font-size: 14px;
      font-weight: 600;
      color: var(--gold-light);
    }

    .hero-version-badge {
      position: absolute;
      top: 40px;
      right: 60px;
      background: rgba(212, 168, 67, .1);
      border: 1px solid rgba(212, 168, 67, .3);
      border-radius: 6px;
      padding: 8px 16px;
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      color: var(--gold);
    }

    /* ── SECTIONS ── */
    .section {
      padding: 80px 80px;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
    }

    .section:nth-child(even) {
      background: rgba(255, 255, 255, .015);
    }

    .section-tag {
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-tag::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
    }

    .section-title {
      font-family: "Plus Jakarta Sans";
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      color: #fff;
    }

    .section-lead {
      font-size: 20px;
      color: var(--text-muted);
      max-width: 680px;
      line-height: 1.7;
      margin-bottom: 48px;
    }

    /* Color schemes per section */
    .c-gold .section-tag {
      color: var(--gold);
    }

    .c-gold .section-tag::before {
      background: var(--gold);
    }

    .c-gold .section-title span {
      color: var(--gold);
    }

    .c-cyan .section-tag {
      color: var(--cyan);
    }

    .c-cyan .section-tag::before {
      background: var(--cyan);
    }

    .c-cyan .section-title span {
      color: var(--cyan);
    }

    .c-violet .section-tag {
      color: var(--violet);
    }

    .c-violet .section-tag::before {
      background: var(--violet);
    }

    .c-violet .section-title span {
      color: var(--violet);
    }

    .c-rose .section-tag {
      color: var(--rose);
    }

    .c-rose .section-tag::before {
      background: var(--rose);
    }

    .c-rose .section-title span {
      color: var(--rose);
    }

    .c-emerald .section-tag {
      color: var(--emerald);
    }

    .c-emerald .section-tag::before {
      background: var(--emerald);
    }

    .c-emerald .section-title span {
      color: var(--emerald);
    }

    .c-orange .section-tag {
      color: var(--orange);
    }

    .c-orange .section-tag::before {
      background: var(--orange);
    }

    .c-orange .section-title span {
      color: var(--orange);
    }

    .c-blue .section-tag {
      color: var(--blue);
    }

    .c-blue .section-tag::before {
      background: var(--blue);
    }

    .c-blue .section-title span {
      color: var(--blue);
    }

    /* ── CARDS GRID ── */
    .cards {
      display: grid;
      gap: 20px;
    }

    .cards-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .cards-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .cards-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      transition: transform .2s, border-color .2s;
    }

    .card:hover {
      transform: translateY(-2px);
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .2s;
      border-radius: inherit;
    }

    .card.gold {
      border-top: 2px solid var(--gold);
    }

    .card.gold::before {
      background: radial-gradient(circle at top left, rgba(212, 168, 67, .06), transparent 60%);
    }

    .card.gold:hover {
      border-color: var(--gold);
    }

    .card.gold:hover::before {
      opacity: 1;
    }

    .card.cyan {
      border-top: 2px solid var(--cyan);
    }

    .card.cyan:hover {
      border-color: var(--cyan);
    }

    .card.violet {
      border-top: 2px solid var(--violet);
    }

    .card.violet:hover {
      border-color: var(--violet);
    }

    .card.rose {
      border-top: 2px solid var(--rose);
    }

    .card.rose:hover {
      border-color: var(--rose);
    }

    .card.emerald {
      border-top: 2px solid var(--emerald);
    }

    .card.emerald:hover {
      border-color: var(--emerald);
    }

    .card.orange {
      border-top: 2px solid var(--orange);
    }

    .card.orange:hover {
      border-color: var(--orange);
    }

    .card.blue {
      border-top: 2px solid var(--blue);
    }

    .card.blue:hover {
      border-color: var(--blue);
    }

    .card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 16px;
    }

    .card-icon.gold {
      background: rgba(212, 168, 67, .15);
    }

    .card-icon.cyan {
      background: rgba(77, 217, 217, .15);
    }

    .card-icon.violet {
      background: rgba(155, 111, 230, .15);
    }

    .card-icon.rose {
      background: rgba(232, 111, 132, .15);
    }

    .card-icon.emerald {
      background: rgba(78, 204, 139, .15);
    }

    .card-icon.orange {
      background: rgba(240, 140, 75, .15);
    }

    .card-icon.blue {
      background: rgba(91, 156, 246, .15);
    }

    .card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--cyan);
    }

    .card-body {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── FLOW DIAGRAM ── */
    .flow-wrap {
      margin: 0 auto;
    }

    .flow-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: nowrap;
      margin-bottom: 0;
    }

    .flow-node {
      background: var(--surface2);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 16px 22px;
      text-align: center;
      min-width: 120px;
      position: relative;
      transition: all .2s;
    }

    .flow-node:hover {
      transform: scale(1.04);
    }

    .flow-node .fn-num {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      font-weight: 500;
      margin-bottom: 6px;
      letter-spacing: .05em;
    }

    .flow-node .fn-label {
      font-size: 12px;
      font-weight: 600;
      color: #fff;
    }

    .flow-node .fn-sub {
      font-size: 10px;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .fn-gold {
      border-color: rgba(212, 168, 67, .5);
    }

    .fn-gold .fn-num {
      color: var(--gold);
    }

    .fn-cyan {
      border-color: rgba(77, 217, 217, .5);
    }

    .fn-cyan .fn-num {
      color: var(--cyan);
    }

    .fn-violet {
      border-color: rgba(155, 111, 230, .5);
    }

    .fn-violet .fn-num {
      color: var(--violet);
    }

    .fn-rose {
      border-color: rgba(232, 111, 132, .5);
    }

    .fn-rose .fn-num {
      color: var(--rose);
    }

    .fn-emerald {
      border-color: rgba(78, 204, 139, .5);
    }

    .fn-emerald .fn-num {
      color: var(--emerald);
    }

    .fn-orange {
      border-color: rgba(240, 140, 75, .5);
    }

    .fn-orange .fn-num {
      color: var(--orange);
    }

    .fn-blue {
      border-color: rgba(91, 156, 246, .5);
    }

    .fn-blue .fn-num {
      color: var(--blue);
    }

    .flow-arrow {
      color: var(--text-muted);
      font-size: 18px;
      padding: 0 8px;
      flex-shrink: 0;
    }

    /* ── PRODUCTION FLOW SVG DIAGRAM ── */
    .flow-svg-wrap {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      overflow-x: auto;
    }

    /* ── TABLE ── */
    .data-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--surface2);
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      font-size: 13.5px;
    }

    .data-table thead tr {
      background: var(--surface3);
    }

    .data-table th {
      padding: 14px 20px;
      text-align: left;
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 600;
      border-bottom: 1px solid var(--border);
    }

    .data-table td {
      padding: 14px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      color: var(--text);
      vertical-align: top;
      font-size: 16px;
    }

    .data-table tr:last-child td {
      border-bottom: none;
    }

    .data-table tr:hover td {
      background: rgba(255, 255, 255, .02);
    }

    .data-table .badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
    }

    /* ── PILL BADGES ── */
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
    }

    .pill-gold {
      background: rgba(212, 168, 67, .15);
      color: var(--gold);
    }

    .pill-cyan {
      background: rgba(77, 217, 217, .15);
      color: var(--cyan);
    }

    .pill-violet {
      background: rgba(155, 111, 230, .15);
      color: var(--violet);
    }

    .pill-rose {
      background: rgba(232, 111, 132, .15);
      color: var(--rose);
    }

    .pill-emerald {
      background: rgba(78, 204, 139, .15);
      color: var(--emerald);
    }

    .pill-orange {
      background: rgba(240, 140, 75, .15);
      color: var(--orange);
    }

    .pill-blue {
      background: rgba(91, 156, 246, .15);
      color: var(--blue);
    }

    /* ── HIGHLIGHT BOX ── */
    .callout {
      border-radius: 12px;
      padding: 20px 24px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin: 24px 0;
      font-size: 13.5px;
    }

    .callout-icon {
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .callout.gold {
      background: rgba(212, 168, 67, .08);
      border-left: 3px solid var(--gold);
    }

    .callout.cyan {
      background: rgba(77, 217, 217, .08);
      border-left: 3px solid var(--cyan);
    }

    .callout.rose {
      background: rgba(232, 111, 132, .08);
      border-left: 3px solid var(--rose);
    }

    .callout.violet {
      background: rgba(155, 111, 230, .08);
      border-left: 3px solid var(--violet);
    }

    /* ── NUMBERED LIST ── */
    .step-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .step-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .step-num {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
      font-family: 'DM Mono', monospace;
    }

    .step-num.gold {
      background: rgba(212, 168, 67, .2);
      color: var(--gold);
    }

    .step-num.cyan {
      background: rgba(77, 217, 217, .2);
      color: var(--cyan);
    }

    .step-num.violet {
      background: rgba(155, 111, 230, .2);
      color: var(--violet);
    }

    .step-content .step-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--violet);
      margin-bottom: 3px;
    }

    .step-content .step-desc {
      font-size: 16px;
      color: var(--text-muted);
    }

    /* ── RBAC DIAGRAM ── */
    .rbac-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }

    .rbac-col {}

    .rbac-header {
      padding: 18px 16px;
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .03em;
    }

    .rbac-item {
      padding: 11px 14px;
      font-size: 16px;
      border-top: 1px solid rgba(255, 255, 255, .05);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .rbac-item::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .rbac-col:not(:last-child) {
      border-right: 1px solid var(--border);
    }

    .rbac-worker .rbac-header {
      background: rgba(77, 217, 217, .1);
      color: var(--cyan);
    }

    .rbac-worker .rbac-item::before {
      background: var(--cyan);
    }

    .rbac-staff .rbac-header {
      background: rgba(91, 156, 246, .1);
      color: var(--blue);
    }

    .rbac-staff .rbac-item::before {
      background: var(--blue);
    }

    .rbac-supervisor .rbac-header {
      background: rgba(155, 111, 230, .1);
      color: var(--violet);
    }

    .rbac-supervisor .rbac-item::before {
      background: var(--violet);
    }

    .rbac-admin .rbac-header {
      background: rgba(212, 168, 67, .1);
      color: var(--gold);
    }

    .rbac-admin .rbac-item::before {
      background: var(--gold);
    }

    /* ── WP CONCEPT ── */
    .wp-formula {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px;
      text-align: center;
      margin: 32px 0;
    }

    .wp-formula .wf-parts {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .wp-formula .wf-part {
      background: var(--surface3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 20px;
      text-align: center;
      min-width: 120px;
    }

    .wp-formula .wf-plus {
      font-size: 22px;
      color: var(--text-muted);
    }

    .wp-formula .wf-eq {
      font-size: 22px;
      color: var(--gold);
      font-weight: 700;
    }

    .wf-part .wf-label {
      font-size: 16px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .wf-part .wf-val {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
    }

    .wf-result {
      background: rgba(212, 168, 67, .1);
      border: 1.5px solid rgba(212, 168, 67, .4);
    }

    .wf-result .wf-val {
      color: var(--gold-light);
      font-size: 16px;
    }

    /* ── OBJECTIVES GRID ── */
    .obj-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .obj-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      position: relative;
    }

    .obj-card-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .obj-card-title .ot-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .obj-list {
      list-style: none;
    }

    .obj-list li {
      font-size: 15.5px;
      color: var(--text-muted);
      padding: 5px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .obj-list li:last-child {
      border-bottom: none;
    }

    .obj-list li::before {
      content: none;
    }

    /* ── REWORK FLOW ── */
    .rework-flow {
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: center;
    }

    .rf-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
    }

    .rf-node {
      background: var(--surface2);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 16px 28px;
      text-align: center;
      min-width: 140px;
      position: relative;
    }

    .rf-decision {
      background: var(--surface2);
      border: 1.5px solid var(--border);
      width: 140px;
      height: 80px;
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
    }

    .rf-down {
      text-align: center;
      color: var(--text-muted);
      font-size: 20px;
      padding: 4px 0;
    }

    .rf-label-row {
      display: flex;
      justify-content: center;
      gap: 40px;
      font-size: 11px;
      color: var(--text-muted);
      margin: -6px 0 4px;
      padding: 0 20px;
    }

    /* ── MASTER DATA TABLE ── */
    .md-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .md-item {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .md-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .md-content .md-name {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
    }

    .md-content .md-desc {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* ── BENEFIT STATS ── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .stat-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: center;
    }

    .stat-icon {
      font-size: 28px;
      margin-bottom: 12px;
    }

    .stat-title {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }

    .stat-desc {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ── CONCLUSION BANNER ── */
    .conclusion-banner {
      background: linear-gradient(135deg, rgba(212, 168, 67, .12) 0%, rgba(155, 111, 230, .08) 50%, rgba(77, 217, 217, .06) 100%);
      border: 1px solid rgba(212, 168, 67, .25);
      border-radius: 20px;
      padding: 52px 60px;
      position: relative;
      overflow: hidden;
    }

    .conclusion-banner::before {
      content: '◆';
      position: absolute;
      right: 48px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 160px;
      color: rgba(212, 168, 67, .04);
      font-family: "Plus Jakarta Sans";
    }

    .conclusion-banner .cb-label {
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 16px;
    }

    .conclusion-banner .cb-title {
      font-family: "Plus Jakarta Sans";
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .conclusion-banner .cb-body {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.7;
    }

    /* ── BREAK MONITORING ── */
    .break-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .break-col {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
    }

    .break-col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .break-tag {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 6px;
      font-size: 12px;
      margin: 4px;
    }

    /* ── DEPT ROW ── */
    .dept-flow {
      display: flex;
      gap: 0;
      align-items: center;
      justify-content: space-around;
      overflow-x: auto;
      padding: 8px 0;
    }

    .dept-block {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 18px 22px;
      text-align: center;
      min-width: 110px;
      flex-shrink: 0;
    }

    .dept-arrow {
      color: var(--cyan);
      padding: 0 6px;
      font-size: 36px;
      flex-shrink: 0;
    }

    /* ── FOOTER ── */
    footer {
      margin-left: 240px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 32px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
    }

    footer .footer-brand {
      font-family: "Plus Jakarta Sans";
      color: var(--gold);
      font-size: 16px;
      font-weight: 700;
    }

    /* DIVIDER */
    .divider {
      height: 1px;
      background: var(--border);
      margin: 36px 0;
    }

    /* Subsection heading */
    h3.sub-heading {
      font-family: "Plus Jakarta Sans";
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin: 36px 0 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    h3.sub-heading .sh-accent {
      width: 4px;
      height: 22px;
      border-radius: 2px;
    }

    /* Inline code */
    code {
      font-family: 'DM Mono', monospace;
      background: rgba(255, 255, 255, .07);
      padding: 2px 7px;
      border-radius: 4px;
      font-size: 12.5px;
      color: var(--gold-light);
    }

    /* scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--surface);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--surface3);
      border-radius: 3px;
    }

    @media (max-width: 1100px) {
      main {
        margin-left: 0;
      }

      footer {
        margin-left: 0;
      }

      .section {
        padding: 48px 24px;
      }

      .hero {
        padding: 60px 24px;
      }

      .cards-3,
      .cards-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-meta {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .obj-grid {
        grid-template-columns: 1fr;
      }

      .rbac-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ── MOBILE HAMBURGER TOGGLE ── */
    .mobile-menu-btn {
      display: none;
      position: fixed;
      top: 14px;
      left: 14px;
      z-index: 200;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--surface2);
      border: 1px solid var(--border);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--gold);
      font-size: 20px;
      -webkit-tap-highlight-color: transparent;
    }

    .sidebar-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 99;
      -webkit-tap-highlight-color: transparent;
    }

    @media (max-width: 1100px) {
      .mobile-menu-btn {
        display: flex;
      }

      .sidebar {
        display: flex;
        transform: translateX(-100%);
        transition: transform .3s ease;
        z-index: 150;
      }

      .sidebar.open {
        transform: translateX(0);
      }

      .sidebar-overlay.active {
        display: block;
      }
    }

    /* ── TABLET ≤ 768px ── */
    @media (max-width: 768px) {
      body {
        font-size: 14px;
      }

      .hero {
        padding: 70px 20px 40px;
      }

      .hero-title {
        font-size: clamp(32px, 8vw, 48px);
      }

      .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
      }

      .hero-version-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 20px;
        font-size: 11px;
        padding: 6px 12px;
      }

      .hero-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .hero-eyebrow {
        font-size: 11px;
        letter-spacing: .12em;
      }

      .section {
        padding: 40px 20px;
      }

      .section-title {
        font-size: clamp(22px, 5vw, 32px);
      }

      .section-lead {
        font-size: 20px;
        margin-bottom: 32px;
      }

      .cards-2,
      .cards-3,
      .cards-4 {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .card {
        padding: 20px;
        border-radius: 12px;
      }

      /* RBAC grid stacks to 2 cols on tablet */
      .rbac-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Stats row to 2 cols */
      .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      /* Objectives grid */
      .obj-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      /* Master data grid */
      .md-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      /* Break grid */
      .break-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      /* Tables: horizontal scroll */
      .data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 12px;
      }

      .data-table th,
      .data-table td {
        padding: 10px 14px;
        font-size: 12px;
        white-space: normal;
      }

      /* Flow diagrams: wrap & stack */
      .flow-row {
        flex-wrap: wrap;
        gap: 8px;
      }

      .flow-node {
        min-width: 100px;
        padding: 12px 14px;
      }

      .flow-node .fn-label {
        font-size: 11px;
      }

      .flow-node .fn-sub {
        font-size: 9px;
      }

      /* Flow SVG wrap */
      .flow-svg-wrap {
        padding: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      /* Department flow */
      .dept-flow {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }

      .dept-block {
        min-width: 90px;
        padding: 12px 14px;
      }

      .dept-arrow {
        font-size: 24px;
        padding: 0 4px;
      }

      /* Rework flow */
      .rf-row {
        flex-direction: column;
        gap: 8px;
      }

      .rf-node {
        padding: 14px 20px;
        min-width: auto;
        width: 100%;
        max-width: 280px;
      }

      .rf-decision {
        width: 120px;
        height: 68px;
      }

      .rf-label-row {
        gap: 20px;
      }

      /* WP formula */
      .wp-formula {
        padding: 20px;
      }

      .wp-formula .wf-parts {
        gap: 10px;
      }

      .wp-formula .wf-part {
        padding: 10px 14px;
        min-width: 100px;
      }

      /* Callout */
      .callout {
        padding: 14px 16px;
        font-size: 13px;
      }

      /* Conclusion */
      .conclusion-banner {
        padding: 32px 24px;
        border-radius: 14px;
      }

      .conclusion-banner .cb-title {
        font-size: 24px;
      }

      .conclusion-banner::before {
        font-size: 80px;
        right: 16px;
      }

      /* Footer */
      footer {
        padding: 24px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      /* Sub headings */
      h3.sub-heading {
        font-size: 17px;
        margin: 24px 0 12px;
      }

      /* Divider */
      .divider {
        margin: 24px 0;
      }
    }

    /* ── PHONE ≤ 480px ── */
    @media (max-width: 480px) {
      body {
        font-size: 13.5px;
        line-height: 1.65;
      }

      .hero {
        padding: 64px 16px 32px;
      }

      .hero-title {
        font-size: clamp(28px, 9vw, 40px);
      }

      .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
      }

      .hero-meta {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .meta-card {
        padding: 12px;
      }

      .meta-card .mc-label {
        font-size: 8px;
      }

      .meta-card .mc-value {
        font-size: 12px;
      }

      .section {
        padding: 32px 14px;
      }

      .section-tag {
        font-size: 9px;
      }

      .section-title {
        font-size: clamp(20px, 6vw, 28px);
      }

      .section-lead {
        font-size: 20px;
        margin-bottom: 24px;
        line-height: 1.65;
      }

      .card {
        padding: 16px;
      }

      .card-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 12px;
      }


      .card-body {
        font-size: 12.5px;
      }

      /* RBAC stacks fully */
      .rbac-grid {
        grid-template-columns: 1fr;
      }

      .rbac-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      /* Stats row to single col */
      .stats-row {
        grid-template-columns: 1fr;
      }

      .stat-card {
        padding: 16px;
      }

      /* Flow nodes shrink further */
      .flow-node {
        min-width: 80px;
        padding: 10px 10px;
        font-size: 11px;
      }

      .flow-arrow {
        font-size: 14px;
        padding: 0 4px;
      }

      /* Callout */
      .callout {
        flex-direction: column;
        gap: 8px;
        padding: 12px 14px;
        font-size: 12.5px;
      }

      /* Conclusion */
      .conclusion-banner {
        padding: 24px 16px;
      }

      .conclusion-banner .cb-title {
        font-size: 20px;
      }

      .conclusion-banner .cb-body {
        font-size: 13px;
      }

      .conclusion-banner::before {
        display: none;
      }

      /* Footer */
      footer {
        padding: 20px 14px;
        font-size: 11px;
      }

      /* Pills */
      .pill {
        font-size: 11px;
        padding: 4px 10px;
      }

      /* Step list */
      .step-item {
        gap: 12px;
      }

      .step-num {
        width: 26px;
        height: 26px;
        font-size: 11px;
      }

      .step-content .step-title {
        font-size: 13px;
      }

      .step-content .step-desc {
        font-size: 12.5px;
      }

      /* WP formula stacks */
      .wp-formula .wf-parts {
        flex-direction: column;
        gap: 8px;
      }

      .wp-formula .wf-part {
        width: 100%;
        min-width: auto;
      }

      .wp-formula .wf-plus,
      .wp-formula .wf-eq {
        font-size: 18px;
      }

      /* MD items */
      .md-item {
        padding: 14px;
        gap: 10px;
      }

      .md-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
      }

      .md-content .md-name {
        font-size: 13px;
      }

      .md-content .md-desc {
        font-size: 11px;
      }

      /* Break tags wrap */
      .break-col {
        padding: 16px;
      }

      .break-tag {
        font-size: 11px;
        padding: 4px 10px;
      }

      /* Object cards */
      .obj-card {
        padding: 16px;
      }

      .obj-card-title {
        font-size: 13px;
      }

      .obj-list li {
        font-size: 12px;
      }

      /* Dept flow stacks vertically */
      .dept-flow {
        flex-direction: column;
        align-items: center;
      }

      .dept-arrow {
        transform: rotate(90deg);
        font-size: 28px;
      }

      .dept-block {
        width: 100%;
        max-width: 200px;
      }
    }
