/* Privance — base styles (extracted from the original single-page build) */
    :root {
      --ink: #0E1726;
      --ink-2: #16223A;
      --ink-3: #1F2D49;
      --paper: #F4F5F7;
      --paper-2: #FFFFFF;
      --gold: #C9A227;
      --gold-deep: #A9871A;
      --bronze: #A8703C;
      --platinum: #9AA7B4;
      --text: #16202E;
      --text-inv: #EEF1F6;
      --muted: #5B6675;
      --muted-inv: #9AA7B8;
      --line: #E2E5EA;
      --line-dark: rgba(255, 255, 255, .10);
      --radius: 14px;
      --maxw: 1140px;
      --display: 'Space Grotesk', system-ui, sans-serif;
      --body: 'IBM Plex Sans', system-ui, sans-serif;
      --mono: 'IBM Plex Mono', ui-monospace, monospace;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--body);
      color: var(--text);
      background: var(--paper);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      max-width: 100%;
      display: block
    }

    .wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 24px
    }

    .eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 500;
      display: inline-block;
      margin-bottom: 18px;
    }

    .eyebrow.on-dark {
      color: var(--gold)
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--display);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -.02em;
      color: var(--text)
    }

    h2 {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px
    }

    h3 {
      font-size: 21px;
      letter-spacing: -.01em
    }

    p {
      color: var(--muted)
    }

    .section {
      padding: 96px 0
    }

    .section-head {
      max-width: 660px;
      margin-bottom: 48px
    }

    .section-head p {
      font-size: 17px
    }

    /* buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--body);
      font-weight: 600;
      font-size: 15px;
      padding: 13px 22px;
      border-radius: 10px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    }

    .btn-gold {
      background: var(--gold);
      color: #1a1405;
      border-color: var(--gold)
    }

    .btn-gold:hover {
      background: var(--gold-deep);
      border-color: var(--gold-deep);
      transform: translateY(-1px)
    }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      border-color: var(--line)
    }

    .btn-ghost:hover {
      border-color: var(--text);
      transform: translateY(-1px)
    }

    .btn-ghost.on-dark {
      color: var(--text-inv);
      border-color: var(--line-dark)
    }

    .btn-ghost.on-dark:hover {
      border-color: rgba(255, 255, 255, .55)
    }

    .btn-lg {
      padding: 16px 30px;
      font-size: 16px
    }

    /* header */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(14, 23, 38, .82);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line-dark);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--display);
      font-weight: 600;
      font-size: 20px;
      letter-spacing: -.01em;
      color: var(--text-inv)
    }

    .brand .mark {
      width: 28px;
      height: 28px;
      flex: none
    }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center
    }

    .nav-links a {
      font-size: 14.5px;
      color: var(--muted-inv);
      font-weight: 500;
      transition: color .15s
    }

    .nav-links a:hover {
      color: var(--text-inv)
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .menu-btn {
      display: none;
      background: none;
      border: 0;
      cursor: pointer;
      width: 40px;
      height: 40px
    }

    .menu-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-inv);
      margin: 5px auto;
      transition: .2s
    }

    /* hero */
    .hero {
      background:
        radial-gradient(1100px 520px at 78% -8%, rgba(201, 162, 39, .16), transparent 60%),
        radial-gradient(800px 400px at 8% 30%, rgba(154, 167, 180, .10), transparent 55%),
        var(--ink);
      color: var(--text-inv);
      padding: 84px 0 96px;
      overflow: hidden;
      border-bottom: 1px solid var(--line-dark)
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: center
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(34px, 5vw, 56px);
      font-weight: 700;
      line-height: 1.04;
      margin-bottom: 22px
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold)
    }

    .hero p.lede {
      font-size: 18px;
      color: var(--muted-inv);
      max-width: 540px;
      margin-bottom: 30px
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px
    }

    .proof {
      display: flex;
      flex-direction: column;
      gap: 11px;
      padding-top: 26px;
      border-top: 1px solid var(--line-dark)
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 14.5px;
      color: var(--muted-inv)
    }

    .proof-item svg {
      flex: none;
      color: var(--gold)
    }

    /* hero card stack */
    .hero-visual {
      position: relative
    }

    .graph-canvas {
      position: absolute;
      inset: -8% -4%;
      width: 108%;
      height: 116%;
      z-index: 0;
      display: block;
      pointer-events: none
    }

    .stack {
      position: relative;
      height: 420px;
      z-index: 2
    }

    .tcard {
      position: absolute;
      left: 0;
      right: 0;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid var(--line-dark);
      background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
      box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
    }

    .tcard .tlabel {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase
    }

    .tcard .tname {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      margin: 6px 0 2px
    }

    .tcard .tprice {
      font-family: var(--mono);
      font-size: 15px;
      color: var(--muted-inv)
    }

    .tcard .metal {
      height: 4px;
      width: 54px;
      border-radius: 4px;
      margin-bottom: 18px
    }

    .tcard-bronze {
      top: 0;
      transform: rotate(-5deg) translateX(8px);
      z-index: 1
    }

    .tcard-bronze .metal {
      background: var(--bronze)
    }

    .tcard-bronze .tlabel {
      color: var(--bronze)
    }

    .tcard-plat {
      top: 78px;
      transform: rotate(3deg) translateX(-4px);
      z-index: 2
    }

    .tcard-plat .metal {
      background: var(--platinum)
    }

    .tcard-plat .tlabel {
      color: var(--platinum)
    }

    .tcard-gold {
      top: 176px;
      transform: rotate(-1deg);
      z-index: 3;
      border-color: rgba(201, 162, 39, .5);
      background: linear-gradient(160deg, #26303f, #1b2336);
      box-shadow: 0 36px 70px -28px rgba(201, 162, 39, .32)
    }

    .tcard-gold .metal {
      background: var(--gold)
    }

    .tcard-gold .tlabel {
      color: var(--gold)
    }

    /* path / two-track */
    .path {
      background: var(--paper-2)
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .step {
      position: relative;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px 26px
    }

    .step .num {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: .14em;
      color: var(--gold-deep)
    }

    .step h3 {
      margin: 14px 0 10px
    }

    .step .who {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .06em;
      color: var(--text);
      background: #EDEFF3;
      display: inline-block;
      padding: 3px 9px;
      border-radius: 6px;
      margin-bottom: 12px
    }

    .step p {
      font-size: 15px
    }

    .step.gate {
      background: var(--ink);
      border-color: var(--ink)
    }

    .step.gate .num,
    .step.gate h3 {
      color: #fff
    }

    .step.gate .num {
      color: var(--gold)
    }

    .step.gate p {
      color: var(--muted-inv)
    }

    .step.gate .who {
      background: rgba(255, 255, 255, .08);
      color: var(--text-inv)
    }

    /* curriculum grid */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .feature {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: transform .15s, box-shadow .15s
    }

    .feature:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px -24px rgba(14, 23, 38, .35)
    }

    .ficon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: var(--gold);
      margin-bottom: 18px
    }

    .feature h3 {
      font-size: 18px;
      margin-bottom: 8px
    }

    .feature p {
      font-size: 14.5px
    }

    /* pricing */
    .pricing {
      background: var(--ink);
      color: var(--text-inv)
    }

    .pricing .section-head h2 {
      color: #fff
    }

    .pricing .section-head p {
      color: var(--muted-inv)
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: start
    }

    .plan {
      background: var(--ink-2);
      border: 1px solid var(--line-dark);
      border-radius: 18px;
      padding: 30px 26px;
      position: relative
    }

    .plan .metal {
      height: 4px;
      width: 48px;
      border-radius: 4px;
      margin-bottom: 20px
    }

    .plan-bronze .metal {
      background: var(--bronze)
    }

    .plan-gold .metal {
      background: var(--gold)
    }

    .plan-plat .metal {
      background: var(--platinum)
    }

    .plan .tier {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted-inv)
    }

    .plan .pname {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 600;
      color: #fff;
      margin: 4px 0 14px
    }

    .plan .price {
      font-family: var(--display);
      font-size: 38px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.02em
    }

    .plan .price span {
      font-size: 15px;
      font-family: var(--mono);
      color: var(--muted-inv);
      font-weight: 400
    }

    .plan .terms {
      font-family: var(--mono);
      font-size: 12.5px;
      color: var(--muted-inv);
      margin: 8px 0 22px
    }

    .plan ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 26px
    }

    .plan li {
      display: flex;
      gap: 10px;
      font-size: 14px;
      color: var(--text-inv);
      align-items: flex-start
    }

    .plan li svg {
      flex: none;
      margin-top: 3px;
      color: var(--gold)
    }

    .plan .btn {
      width: 100%;
      justify-content: center
    }

    .plan-gold {
      border-color: rgba(201, 162, 39, .55);
      background: linear-gradient(170deg, #222c3e, #18233a);
      box-shadow: 0 40px 80px -40px rgba(201, 162, 39, .4);
      transform: translateY(-10px)
    }

    .ribbon {
      position: absolute;
      top: -12px;
      right: 22px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: var(--gold);
      color: #1a1405;
      padding: 5px 12px;
      border-radius: 20px;
      font-weight: 600
    }

    .pay-note {
      text-align: center;
      margin-top: 28px;
      font-size: 13.5px;
      color: var(--muted-inv)
    }

    /* comparison table */
    .compare {
      overflow-x: auto
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 680px;
      font-size: 14px
    }

    th,
    td {
      text-align: left;
      padding: 14px 16px;
      border-bottom: 1px solid var(--line)
    }

    thead th {
      font-family: var(--display);
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      border-bottom: 2px solid var(--ink)
    }

    thead th.col-gold {
      color: var(--gold-deep)
    }

    tbody th {
      font-weight: 500;
      color: var(--text)
    }

    td {
      color: var(--muted)
    }

    td.yes {
      color: var(--text);
      font-weight: 500
    }

    .col-gold {
      background: rgba(201, 162, 39, .06)
    }

    /* mentors */
    .mentors {
      background: var(--paper-2)
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px
    }

    .mentor {
      display: flex;
      gap: 20px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px
    }

    .avatar {
      width: 64px;
      height: 64px;
      flex: none;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-family: var(--display);
      font-weight: 600;
      font-size: 24px;
      color: #fff;
      background: var(--ink)
    }

    .mentor .role {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .08em;
      color: var(--gold-deep);
      text-transform: uppercase
    }

    .mentor h3 {
      margin: 3px 0 8px
    }

    .mentor p {
      font-size: 14.5px
    }

    /* outcomes */
    .outcomes {
      background: var(--ink);
      color: var(--text-inv)
    }

    .outcomes .section-head h2 {
      color: #fff
    }

    .outcomes .section-head p {
      color: var(--muted-inv)
    }

    .out-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .out {
      border: 1px solid var(--line-dark);
      border-radius: 12px;
      padding: 24px;
      background: rgba(255, 255, 255, .02)
    }

    .out h3 {
      color: #fff;
      font-size: 17px;
      margin-bottom: 7px
    }

    .out p {
      font-size: 14px;
      color: var(--muted-inv)
    }

    /* faq */
    .faq-item {
      border-bottom: 1px solid var(--line)
    }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: 0;
      cursor: pointer;
      padding: 22px 0;
      font-family: var(--display);
      font-size: 18px;
      font-weight: 500;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px
    }

    .faq-q .ic {
      flex: none;
      width: 22px;
      height: 22px;
      position: relative;
      transition: transform .2s
    }

    .faq-q .ic::before,
    .faq-q .ic::after {
      content: "";
      position: absolute;
      background: var(--gold-deep);
      border-radius: 2px
    }

    .faq-q .ic::before {
      top: 10px;
      left: 2px;
      width: 18px;
      height: 2px
    }

    .faq-q .ic::after {
      top: 2px;
      left: 10px;
      width: 2px;
      height: 18px;
      transition: opacity .2s
    }

    .faq-item.open .faq-q .ic::after {
      opacity: 0
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease
    }

    .faq-a p {
      padding: 0 0 22px;
      font-size: 15.5px;
      max-width: 760px
    }

    /* final cta */
    .cta-final {
      background:
        radial-gradient(700px 360px at 50% 0%, rgba(201, 162, 39, .18), transparent 60%), var(--ink);
      color: var(--text-inv);
      text-align: center;
      border-top: 1px solid var(--line-dark)
    }

    .cta-final h2 {
      color: #fff;
      max-width: 620px;
      margin: 0 auto 14px
    }

    .cta-final p {
      color: var(--muted-inv);
      max-width: 520px;
      margin: 0 auto 28px;
      font-size: 17px
    }

    .cta-final .hero-cta {
      justify-content: center
    }

    /* footer */
    footer {
      background: #0A111E;
      color: var(--muted-inv);
      padding: 64px 0 36px
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px
    }

    footer .brand {
      margin-bottom: 14px
    }

    footer .tag {
      font-size: 14.5px;
      max-width: 300px
    }

    .foot-col h4 {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-inv);
      margin-bottom: 16px;
      font-weight: 500
    }

    .foot-col a {
      display: block;
      font-size: 14px;
      margin-bottom: 10px;
      transition: color .15s
    }

    .foot-col a:hover {
      color: var(--text-inv)
    }

    .foot-bot {
      border-top: 1px solid var(--line-dark);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px
    }

    /* reveal */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    /* responsive */
    @media(max-width:900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .stack {
        height: 380px;
        max-width: 360px;
        margin: 0 auto
      }

      .steps,
      .grid-3,
      .plans,
      .out-grid {
        grid-template-columns: 1fr
      }

      .grid-2 {
        grid-template-columns: 1fr
      }

      .plan-gold {
        transform: none
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }

      .nav-links {
        display: none
      }

      .nav-links.show {
        display: flex;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--ink);
        padding: 18px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--line-dark)
      }

      .menu-btn {
        display: block
      }

      .section {
        padding: 72px 0
      }
    }

    @media(max-width:560px) {
      .foot-grid {
        grid-template-columns: 1fr
      }

      .hero-cta .btn {
        flex: 1
      }
    }

    @media(prefers-reduced-motion:reduce) {
      * {
        scroll-behavior: auto !important
      }

      .reveal {
        transition: none;
        opacity: 1;
        transform: none
      }

      .feature:hover,
      .btn:hover {
        transform: none
      }
    }

    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 4px
    }
  