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

    :root {
      /* Pixel Unicorn design tokens */
      --pu-purple: #9700FF;
      --pu-purple-deep: #5B00A1;
      --pu-purple-border: #2D0054;
      --pu-cyan-pill: #D4FBFF;
      --pu-cyan-arrow: #37EAFE;
      --pu-cyan-soft: #8AF3FF;
      --pu-magenta: #FF00AA;
      --pu-magenta-soft: #FF8AD4;
      --pu-magenta-border: rgba(255, 0, 170, 0.4);
      --black: #11120F;
      --white: #FFFFFF;
      --mid: #9FA099;
      --light: #3a3b36;
      --accent: #9700FF;
      --sidebar-w: 260px;
      --font-display: 'Radio Canada Big', -apple-system, sans-serif;
      --font-serif: 'Radio Canada Big', -apple-system, sans-serif;
      --font-sans: 'Inter', -apple-system, sans-serif;
      --surface: #222320;
      --surface-elevated: #2a2b26;
      --border-subtle: rgba(255, 255, 255, 0.1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-sans);
      font-weight: 400;
      font-size: 17px;
      line-height: 1.75;
      display: flex;
      min-height: 100vh;
    }

    /* ── Sidebar ─────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0;
      width: var(--sidebar-w);
      height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 48px 32px 40px;
      border-right: 1px solid var(--border-subtle);
      background: var(--black);
      z-index: 100;
      overflow-y: auto;
    }

    .nav-logo {
      text-decoration: none;
      display: block;
      margin-bottom: 40px;
    }
    .nav-logo img {
      width: auto;
      height: 56px;
      max-width: 140px;
      object-fit: contain;
      object-position: left center;
      display: block;
      mix-blend-mode: normal;
      background: transparent;
      transition: opacity 0.2s;
    }
    .nav-logo:hover img { opacity: 0.6; }

    .nav-section {
      margin-bottom: 6px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--mid);
      font-weight: 500;
    }

    .nav-divider {
      border: none;
      border-top: 1px solid var(--border-subtle);
      margin: 16px 0;
    }

    nav a {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: var(--mid);
      text-decoration: none;
      padding: 5px 0;
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }
    nav a:hover, nav a.active { color: var(--white); }
    nav a.active { font-weight: 500; }

    .nav-footer {
      margin-top: auto;
      font-size: 11px;
      color: var(--mid);
      letter-spacing: 0.04em;
    }

    /* ── Main content ────────────────────────── */
    main {
      margin-left: var(--sidebar-w);
      flex: 1;
      max-width: 1120px;
      padding: 64px 56px 120px;
      color: var(--white);
    }

    /* ── Page sections (SPA style) ─────────────── */
    .page { display: none; }
    .page.active { display: block; animation: fadeIn 0.3s ease both; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    /* ── About page ─────────────────────────── */
    .about-headshot {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 28px;
      display: block;
      background: var(--light);
    }
    .about-headshot-placeholder {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--light);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--mid);
      letter-spacing: 0.06em;
      text-align: center;
      text-transform: uppercase;
    }

    .about-name {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 64px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      font-weight: 400;
      margin-bottom: 8px;
      color: var(--white);
    }

    .about-title {
      font-size: 14px;
      color: var(--mid);
      margin-bottom: 32px;
      letter-spacing: 0.02em;
    }

    #page-about {
      --about-gap-primary: 56px;
      --about-gap-secondary: 40px;
      --about-gap-major: calc(var(--about-gap-primary) + var(--about-gap-secondary));
    }

    .about-links { display: flex; align-items: center; gap: 16px; margin-bottom: var(--about-gap-secondary); }
    .about-links-resume {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 500;
      font-family: var(--font-sans);
      color: var(--white);
      background: linear-gradient(90deg, var(--pu-purple) 0%, var(--pu-purple-deep) 100%);
      border: 1px solid var(--pu-purple-border);
      text-decoration: none;
      padding: 9px 20px;
      border-radius: 100px;
      letter-spacing: -0.02em;
      transition: opacity 0.2s, transform 0.2s;
    }
    .about-links-resume:hover { opacity: 0.85; transform: translateY(-1px); }
    .about-links-resume svg { flex-shrink: 0; }
    .about-links-linkedin {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 100px;
      background: var(--surface-elevated);
      border: none;
      box-shadow: none;
      outline: none;
      color: var(--white);
      text-decoration: none;
      transition: opacity 0.2s, background 0.2s;
      flex-shrink: 0;
    }
    .about-links-linkedin:hover,
    .about-links-linkedin:focus,
    .about-links-linkedin:focus-visible {
      opacity: 0.85;
      background: var(--light);
      border: none;
      box-shadow: none;
      outline: none;
    }

    .about-tagline {
      font-family: var(--font-sans);
      font-size: clamp(20px, 2.5vw, 28px);
      line-height: 1.35;
      color: var(--mid);
      margin-bottom: 56px;
      max-width: 520px;
      font-weight: 300;
      letter-spacing: -0.02em;
    }

    .about-intro {
      font-size: 17px;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 0;
      max-width: 600px;
    }

    .about-intro p {
      font-weight: 300;
    }

    .about-intro p + p {
      margin-top: 16px;
    }

    /* about two-col hero */
    .about-hero {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 72px;
      margin-bottom: 56px;
      align-items: start;
    }
    .about-left .about-intro { margin-bottom: 0; }
    .about-left .about-name { font-size: clamp(26px, 3.2vw, 40px); }

    .about-work-edu {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .about-work-col { }

    .pub-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }
    .pub-card {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 0;
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .pub-card:hover {
      box-shadow: 0 4px 20px rgba(30,80,160,0.09), 0 1px 4px rgba(0,0,0,0.05);
      transform: translateY(-1px);
    }
    .pub-thumb {
      width: 110px;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--light);
      border-radius: 8px 0 0 8px;
    }
    .pub-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .pub-title {
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
      color: var(--white);
      background: var(--surface-elevated)fff;
      border: 1px solid var(--border-subtle);
      border-left: none;
      border-radius: 0 8px 8px 0;
      padding: 14px 16px;
      display: flex;
      align-items: center;
    }
    .pub-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--pu-cyan-soft);
      text-decoration: none;
      letter-spacing: -0.02em;
      transition: color 0.2s;
    }
    .pub-more-btn:hover { color: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: var(--about-gap-secondary, 40px);
      margin-bottom: 0;
      background: var(--black);
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.12);
      overflow: hidden;
    }
    .about-grid > div {
      padding: 28px 32px;
      border-right: 1px solid var(--border-subtle);
    }
    .about-grid > div { border-color: var(--border-subtle); }
    .about-grid > div:last-child {
      border-right: none;
    }
    @media (max-width: 760px) {
      .about-hero { grid-template-columns: 1fr; gap: 36px; }
    }

    .about-section-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--mid);
      font-weight: 500;
      margin-bottom: 16px;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 100px;
      border: 1px solid var(--border-subtle);
      background: var(--light);
      color: #e8e8e6;
      letter-spacing: -0.02em;
    }
    #page-about .tag-list--skills .tag {
      background: rgba(151, 0, 255, 0.28);
      border-color: rgba(183, 102, 255, 0.65);
      color: #E8CCFF;
    }
    #page-about .tag-list--tools .tag {
      background: rgba(55, 234, 254, 0.2);
      border-color: rgba(138, 243, 255, 0.55);
      color: var(--pu-cyan-soft);
    }
    #page-about .tag-list--known .tag {
      background: rgba(255, 0, 170, 0.22);
      border-color: rgba(255, 138, 212, 0.55);
      color: var(--pu-magenta-soft);
    }

    .work-list, .edu-list { list-style: none; }
    .work-item { margin-bottom: 24px; }
    .work-role { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 2px; letter-spacing: -0.02em; }
    .work-meta { font-size: 13px; color: var(--mid); letter-spacing: -0.01em; }

    .edu-ixdf-details { display: block; }
    .edu-ixdf-more-summary {
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    .edu-ixdf-more-summary::-webkit-details-marker { display: none; }
    .edu-ixdf-more-summary::marker { content: ""; }
    .edu-ixdf-preview .work-role { margin-bottom: 2px; }
    .edu-ixdf-more-trigger {
      color: var(--mid);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }
    .edu-ixdf-more-summary:hover .edu-ixdf-more-trigger { color: var(--white); }
    .edu-ixdf-less-trigger {
      display: none;
      color: var(--mid);
      font-weight: 500;
    }
    .edu-ixdf-details[open] .edu-ixdf-preview .work-role:not(.edu-ixdf-less-trigger) { display: none; }
    .edu-ixdf-details[open] .edu-ixdf-less-trigger { display: block; }
    .edu-ixdf-more-list {
      margin: 8px 0 0;
      padding: 0;
    }
    .edu-ixdf-more-list .work-item {
      margin-bottom: 8px;
    }
    .edu-ixdf-more-list .work-item:last-child {
      margin-bottom: 0;
    }

    hr.section-divider {
      border: none;
      border-top: 1px solid var(--border-subtle);
      margin: 56px 0;
    }

    /* ── Work / case study pages ──────────────── */
    .page-title {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      font-weight: 400;
      margin-bottom: 32px;
    }

    .page-intro {
      font-size: 15px;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 48px;
      max-width: 640px;
    }
    .page-intro strong { color: var(--white); font-weight: 600;
    }
    .page-intro + .page-intro { margin-bottom: 48px; margin-top: -32px; }

    .project-card {
      border: 1px solid var(--border-subtle);
      border-radius: 4px;
      padding: 40px;
      margin-bottom: 32px;
    }

    .project-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--mid);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .project-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 24px;
      line-height: 1.3;
    }

    .psb { /* problem / solution / outcome block */
      margin-bottom: 20px;
    }
    .psb-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
      color: var(--mid);
      margin-bottom: 4px;
    }
    .psb-text { font-size: 14px; line-height: 1.7; }

    .process-list {
      list-style: none;
      margin-top: 20px;
      border-top: 1px solid var(--border-subtle);
      padding-top: 20px;
    }
    .process-list li.timeline-heading {
      font-weight: 500;
      padding-left: 0;
      margin-bottom: 8px;
      margin-top: 8px;
      color: var(--white);
    }
    .process-list li.timeline-heading::before { content: none; }

    .process-list li {      font-size: 14px;
      line-height: 1.7;
      padding: 10px 0;
      padding-left: 16px;
      margin-bottom: 8px;
      position: relative;
      color: #252830;
    }
    .process-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--mid);
      font-size: 12px;
    }

    .process-list li.no-bullet {
      padding-left: 0;
    }
    .process-list li.no-bullet::before { content: none; }

    .bullet-list {
      list-style: disc;
      padding-left: 20px;
      margin: 8px 0 16px;
    }
    .bullet-list li {
      font-size: 14px;
      line-height: 1.7;
      color: #252830;
      padding: 3px 0;
      margin-bottom: 4px;
      position: static;
    }
    .bullet-list li::before { content: none; }

    .quote-block {
      position: relative;
      padding: 32px 36px 28px;
      margin: 36px 0;
      background: var(--surface-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      box-shadow: 0 4px 24px rgba(30,80,160,0.07), 0 1px 4px rgba(0,0,0,0.04);
    }
    .quote-block::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 72px;
      line-height: 1;
      color: var(--light);
      position: absolute;
      top: 12px;
      left: 28px;
    }
    .quote-block p {
      font-family: var(--font-sans);
      font-style: normal;
      font-size: 15px;
      line-height: 1.75;
      color: var(--mid);
      margin-bottom: 0;
      padding-left: 28px;
    }
    .quote-block p strong { color: var(--white); font-weight: 600; }
    .quote-block cite {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--mid);
      font-style: normal;
    }
    .quote-block .rec-author {
      font-size: 12px;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 16px;
      padding-left: 28px;
    }
    .quote-block .rec-author strong { color: rgba(255, 255, 255, 0.88); font-weight: 600; }

    /* recommendations */
        .rec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: start;
    }
    .rec-card {
      background: var(--black);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 28px;
      box-shadow: none;
      display: flex;
      flex-direction: column;
    }
    .rec-quote-icon {
      font-family: var(--font-display);
      font-size: 52px;
      line-height: 1;
      color: var(--mid);
      opacity: 0.35;
      margin-bottom: 12px;
      margin-top: -8px;
    }
    .rec-text {
      font-size: 14px;
      line-height: 1.75;
      color: var(--mid);
      flex: 1;
      margin-bottom: 20px;
    }
    .rec-text strong { font-weight: 600; color: var(--white); }
    .rec-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border-subtle);
      padding-top: 16px;
    }
    .rec-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--black);
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      letter-spacing: 0.04em;
    }
    .rec-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
    }
    .rec-role {
      font-size: 12px;
      color: var(--mid);
      margin-top: 3px;
    }

    /* talks & courses (page-talks) */
    .talks-section-title {
      font-family: var(--font-display);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 400;
      color: var(--mid);
      margin: 0 0 20px;
    }
    .talks-section-title:not(:first-of-type) {
      margin-top: 48px;
    }
    .talks-video-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }
    .talk-card {
      background: var(--black);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: none;
      display: flex;
      flex-direction: column;
    }
    .talk-video {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: var(--black);
    }
    .talk-video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .talk-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .talks-footnote {
      font-size: 13px;
      line-height: 1.7;
      color: var(--mid);
      margin: 8px 0 0;
      max-width: 640px;
    }
    .talks-footnote strong {
      color: var(--white);
      font-weight: 600;
    }
    .talks-gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .talks-gallery-item {
      margin: 0;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      background: var(--black);
      box-shadow: none;
    }
    .talks-gallery-item img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      cursor: zoom-in;
      transition: opacity 0.2s;
      filter: grayscale(100%);
    }
    .talks-gallery-item img:hover {
      opacity: 0.88;
    }
    .talks-gallery-item figcaption {
      padding: 12px 14px;
      font-size: 12px;
      line-height: 1.5;
      color: var(--mid);
    }
    .talks-gallery-item figcaption em {
      font-style: italic;
      color: var(--mid);
    }

    /* award-style cards (shared) */
        .award-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: start;
      margin-bottom: 20px;
    }
    .award-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }
    .award-card {
      background: var(--black);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 24px;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .award-card--featured {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: stretch;
      gap: 0;
      padding: 0;
      overflow: hidden;
      text-decoration: none;
      cursor: pointer;
      transition: box-shadow 0.2s;
    }
    .award-card--featured:hover {
      box-shadow: 0 8px 40px rgba(30,80,160,0.13), 0 2px 8px rgba(0,0,0,0.07);
    }
    .award-featured-body {
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }
    .award-featured-thumb {
      width: 280px;
      min-height: 220px;
      flex-shrink: 0;
      background: var(--black);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--white);
      padding: 24px;
      text-align: center;
    }
    .award-featured-thumb-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 600;
      opacity: 0.6;
    }
    .award-featured-thumb-cta {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .award-stat-card {
      background: var(--black);
      border: 1px solid var(--black);
      border-radius: 8px;
      padding: 72px 24px 24px;
      box-shadow: 0 4px 24px rgba(30,80,160,0.07), 0 1px 4px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      gap: 10px;
      aspect-ratio: 1;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      position: relative;
    }
    .award-stat-card .award-card-org {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.75);
      border-radius: 100px;
      padding: 2px 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: none;
    }
    .award-stat-card .award-card-stat {
      color: var(--white);
    }
    .award-stat-card .award-card-name {
      color: var(--white);
    }
    .award-stat-card .award-card-desc {
      color: rgba(255,255,255,0.55);
      text-align: left;
    }
    .award-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .award-card-org {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 500;
      color: var(--mid);
    }
    .award-card-year {
      font-size: 11px;
      font-weight: 500;
      color: #E8CCFF;
      background: rgba(151, 0, 255, 0.28);
      border: 1px solid rgba(183, 102, 255, 0.65);
      border-radius: 100px;
      padding: 2px 10px;
      letter-spacing: 0.04em;
    }
    .award-card-stat {
      font-size: 48px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .award-card-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }
    .award-card-desc {
      font-size: 13px;
      line-height: 1.7;
      color: var(--mid);
      margin: 0;
    }

    #page-talks .talk-card,
    #page-talks .award-card,
    #page-talks .talks-gallery-item {
      background: var(--black);
      box-shadow: none;
    }
    #page-talks .award-card-year {
      color: #E8CCFF;
      background: rgba(151, 0, 255, 0.28);
      border: 1px solid rgba(183, 102, 255, 0.65);
    }

    /* ── Mobile ──────────────────────────────── */
    .mobile-topbar {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 56px;
      background: var(--black);
      border-bottom: 1px solid var(--border-subtle);
      z-index: 150;
    }
    .hamburger {
      display: none;
      position: fixed;
      top: 16px; left: 16px;
      z-index: 200;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: 0.2s;
    }

    /* ── Global image safety ─────────────────── */
    img { max-width: 100%; height: auto; }
    .about-hero-visual__photo { max-width: none; }


    /* ── About hero visual (therealpixelunicorn.com) ── */
    .about-layout,
    .about-col-right {
      overflow: visible;
    }

    .about-hero-visual {
      --hero-panel-top: 28px;
      --hero-panel-h: 300px;
      /* 2×2 grid — TR/BR reference; TL/BL mirror (left 2% ↔ right 2%) */
      --badge-y-upper: calc(var(--hero-panel-top) + var(--hero-panel-h) * 0.52 - 4px);
      --badge-y-lower: 39px;
      --badge-edge: 2%;
      position: relative;
      width: 100%;
      height: calc(var(--hero-panel-top) + var(--hero-panel-h));
      min-height: calc(var(--hero-panel-top) + var(--hero-panel-h));
      margin: 0;
      padding: 0;
      overflow: visible;
    }

    .about-hero-visual__panel {
      position: absolute;
      left: 0;
      right: 0;
      top: var(--hero-panel-top);
      height: var(--hero-panel-h);
      background: var(--pu-purple);
      border-radius: 16px;
      z-index: 0;
    }

    /* Elementor: margin -90px -143px 0 -200px + width fill — no violet gap on the right */
    .about-hero-visual__photo {
      position: absolute;
      left: 35%;
      bottom: 0;
      z-index: 2;
      display: block;
      width: auto;
      height: calc(var(--hero-panel-h) + 128px);
      min-width: 118%;
      max-width: none;
      margin: 0;
      transform: translateX(-43%);
      transform-origin: center bottom;
      object-fit: contain;
      object-position: 62% 100%;
      pointer-events: none;
      user-select: none;
      filter: grayscale(100%);
    }

    /* Badge anchors: TL / TR / BL / BR on purple panel (never on face) */
    .about-hero-visual__badge {
      position: absolute;
      z-index: 4;
      pointer-events: none;
      max-width: 48%;
    }

    .about-hero-visual__badge--tl,
    .about-hero-visual__badge--bl {
      left: var(--badge-edge);
      right: auto;
      display: flex;
      justify-content: flex-start;
    }

    .about-hero-visual__badge--tr,
    .about-hero-visual__badge--br {
      right: var(--badge-edge);
      left: auto;
      display: flex;
      justify-content: flex-end;
    }

    .about-hero-visual__badge--tl,
    .about-hero-visual__badge--tr {
      top: var(--badge-y-upper);
      bottom: auto;
    }

    .about-hero-visual__badge--bl,
    .about-hero-visual__badge--br {
      bottom: var(--badge-y-lower);
      top: auto;
    }

    /* Pill + arrow on corner (ref: vertex points toward Joi) */
    .about-hero-visual__tag {
      position: relative;
      display: inline-block;
      padding-top: 11px;
    }

    .about-hero-visual__pill {
      display: inline-block;
      background: var(--pu-cyan-pill);
      border: 1px solid var(--pu-purple-border);
      border-radius: 100px;
      padding: 4px 16px;
      font-family: var(--font-sans);
      font-size: 13px;
      font-weight: 500;
      line-height: 1.45;
      color: #000;
      letter-spacing: -0.2px;
      white-space: nowrap;
    }

    .about-hero-visual__arrow {
      position: absolute;
      top: 0;
      display: block;
      width: 18px;
      height: 18px;
      color: var(--pu-cyan-arrow);
      line-height: 0;
      pointer-events: none;
    }

    .about-hero-visual__arrow svg {
      display: block;
      width: 18px;
      height: 18px;
      fill: currentColor;
      transform-origin: 50% 50%;
    }

    /* Left tags: arrow on top-right vertex → up-inward toward Joi */
    .about-hero-visual__tag--left .about-hero-visual__arrow {
      right: 0;
      left: auto;
    }

    .about-hero-visual__tag--left .about-hero-visual__arrow svg {
      transform: rotate(5deg);
      margin-left: 12px;
    }

    /* Right tags: arrow on top-left vertex */
    .about-hero-visual__tag--right .about-hero-visual__arrow {
      left: 0;
      right: auto;
    }

    .about-hero-visual__tag--right .about-hero-visual__arrow svg {
      transform: rotate(270deg);
      margin-left: -15px;
      margin-top: 2px;
    }

    @media (max-width: 900px) {
      .about-hero-visual {
        --hero-panel-top: 48px;
        --hero-panel-h: 260px;
        --badge-y-lower: 32px;
        --badge-y-upper: calc(var(--hero-panel-top) + var(--hero-panel-h) * 0.52 - 4px);
      }
      .about-hero-visual__photo {
        height: calc(var(--hero-panel-h) + 140px);
        min-width: 108%;
        transform: translateX(-47%);
        object-position: 54% 100%;
      }
      .about-hero-visual__badge { max-width: 52%; }
    }

    @media (max-width: 520px) {
      .about-hero-visual {
        --hero-panel-top: 48px;
        --hero-panel-h: 220px;
      }
      .about-hero-visual__badge { display: none; }
      .about-hero-visual__photo {
        height: calc(var(--hero-panel-h) + 120px);
        min-width: 105%;
        transform: translateX(-48%);
      }
    }

    /* ── Tablet (≤900px) ─────────────────────── */
    @media (max-width: 900px) {
      .mobile-topbar { display: block; }
      /* Lightbox: hide arrows, use swipe instead */
      .lightbox-arrow { display: none; }
      /* Collapse nav to hamburger on tablet portrait */
      nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding-top: 88px;
      }
      nav.open { transform: translateX(0); box-shadow: 4px 0 40px rgba(0,0,0,0.1); }
      .hamburger { display: flex; }
      main { margin-left: 0 !important; padding: 72px 32px 100px; overflow-x: hidden; }

      /* About */
      .about-layout {
        grid-template-columns: 1.1fr 0.88fr !important;
        gap: 32px;
        align-items: start;
      }
      .about-col-right { width: 100%; }
      .about-photo { width: 100% !important; }
      .about-hero-visual { width: 100% !important; }

      /* Cards & grids */
      .al-ai-grid { grid-template-columns: 1fr 1fr; }
      .tm-psb-row { grid-template-columns: 1fr !important; }
      .tm-psb-cell { border-right: none !important; border-bottom: 1px solid var(--border-subtle); }
      .tm-psb-cell:last-child { border-bottom: none; }
      #page-ux-design-sample .ux-meta-with-logo {
        grid-template-columns: 1fr !important;
        gap: 20px;
      }
      #page-ux-design-sample .ux-app-logo-wrap {
        width: min(150px, 42vw) !important;
        max-width: 150px;
        height: auto !important;
        max-height: none !important;
        justify-self: center;
      }
      #page-ux-design-sample .ux-meta-row {
        grid-template-columns: 1fr !important;
        width: 100%;
      }
      #page-ux-design-sample .ux-meta-cell {
        border-right: none !important;
        border-top: 1px solid var(--border-subtle);
      }
      #page-ux-design-sample .ux-meta-cell:first-child { border-top: none; }
      .ux-meta-row { grid-template-columns: 1fr 1fr !important; }
      .rec-grid { grid-template-columns: 1fr; }
      .award-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
      .award-card { height: 100%; box-sizing: border-box; }
      .award-stat-row { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
      .award-stat-card { aspect-ratio: auto; padding: 80px 20px 28px; min-height: 240px; justify-content: flex-start; }
      .ai-adoption-grid { grid-template-columns: 1fr 1fr !important; }

      /* UX design sample inline grids */
      #page-ux-design-sample div[style*="grid-template-columns:1fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
      }
      #page-ux-design-sample div[style*="grid-template-columns:1fr 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
      }
      #completed-designs-grid { grid-template-columns: repeat(6, 1fr) !important; }

      /* Publications: vertical stack in narrow edu column */
      .pub-card { flex-direction: column; }
      .pub-thumb { width: 100%; height: 120px; flex-shrink: 0; border-radius: 8px 8px 0 0; }
      .pub-title { border-left: 1px solid var(--border-subtle); border-top: none; border-radius: 0 0 8px 8px; font-size: 11px; padding: 12px 14px; }

    }

    /* ── Tablet landscape (901–1200px) ──────────── */
    @media (min-width: 901px) and (max-width: 1200px) {
      .award-stat-card { aspect-ratio: auto; padding: 80px 20px 28px; min-height: 240px; justify-content: flex-start; }
      .award-grid { align-items: stretch; }
      .award-card { height: 100%; box-sizing: border-box; }
    }

    /* ── Mobile (≤600px) ─────────────────────── */
    @media (max-width: 600px) {
      nav { transform: translateX(-100%); transition: transform 0.3s ease; }
      nav.open { transform: translateX(0); box-shadow: 4px 0 40px rgba(0,0,0,0.1); }
      .hamburger { display: flex; }
      main { margin-left: 0 !important; padding: 80px 18px 80px; overflow-x: hidden; }
      .tm-raci-col { display: contents !important; }
      .tm-raci-img-wrap { grid-column: 1; grid-row: 2; }
      .tm-collab-note { grid-column: 2; grid-row: 1 / span 2; align-self: center; margin-top: 52px; }

      /* Typography */
      .page-title { font-size: 26px; }
      .page-intro { font-size: 14px; line-height: 1.7; }
      .tm-visual-label { font-size: 11px; }

      /* About */
      .about-layout { grid-template-columns: 1fr !important; gap: 4px; margin-bottom: 96px; }
      .about-intro { margin-bottom: 0; }
      .about-intro p { margin-bottom: 0; }
      .about-work-edu { grid-template-columns: 1fr !important; gap: 24px; }
      .about-col-right { width: 100%; min-width: 0; }
      .about-photo { width: 100% !important; max-width: 100% !important; }
      .about-tagline { font-size: clamp(16px, 5vw, 22px) !important; margin-bottom: 24px; }
      .about-grid { grid-template-columns: 1fr !important; }
      .al-framework-grid__pillars { grid-column: span 1 !important; }
      .about-grid--horizontal > div { border-right: none !important; border-bottom: 1px solid var(--border-subtle); padding-bottom: 20px; margin-bottom: 4px; }
      .about-grid--horizontal > div:last-child { border-bottom: none; }

      /* Publications: reset to horizontal on mobile */
      .pub-grid { gap: 10px; width: 100%; }
      .pub-card { flex-direction: row; width: 100%; box-sizing: border-box; min-height: 72px; }
      .pub-thumb { width: 80px; height: 72px; flex-shrink: 0; border-radius: 8px 0 0 8px; }
      .pub-title { border-left: none; border-top: 1px solid var(--border-subtle); border-radius: 0 8px 8px 0; }
      .pub-title { font-size: 11px; padding: 10px 12px; flex: 1; align-self: stretch; display: flex; align-items: center; }
      .pub-more-btn { font-size: 12px; padding: 8px 18px; }

      /* Cards & grids */
      .al-ai-grid { grid-template-columns: 1fr !important; }
      #page-agile-leadership .al-ai-item { padding: 16px; }
      .al-ai-card { padding: 20px; }
      #page-ux-design-sample .ux-meta-row { grid-template-columns: 1fr !important; }
      #page-ux-design-sample .ux-meta-cell { border-right: none !important; border-top: 1px solid var(--border-subtle); }
      #page-ux-design-sample .ux-meta-cell:first-child { border-top: none; }
      .ux-meta-row { grid-template-columns: 1fr !important; }
      .rec-grid { grid-template-columns: 1fr !important; }
      .award-grid { grid-template-columns: 1fr !important; }
      .talks-video-grid { grid-template-columns: 1fr !important; }
      .talks-gallery-grid { grid-template-columns: 1fr !important; }
      .award-stat-row { grid-template-columns: 1fr !important; }
      .award-stat-card { aspect-ratio: auto; padding-top: 48px; }
      .award-card--featured { flex-direction: column !important; }
      .award-featured-thumb { width: 100% !important; min-height: 220px; }

      /* Team management */
      .tm-psb-row { grid-template-columns: 1fr !important; }
      .tm-psb-cell { border-right: none !important; border-bottom: 1px solid var(--border-subtle); }
      .tm-psb-cell:last-child { border-bottom: none; }
      .tm-project-header { flex-direction: column; gap: 8px; }
      .tm-steps { margin-bottom: 24px; }

      /* UX design sample — flywheel */
      .ux-flywheel {
        grid-template-columns: 1fr 110px 1fr !important;
        grid-template-rows: auto 110px auto !important;
        gap: 10px 14px !important;
        max-width: 100% !important;
      }
      .ux-flywheel-center { width: 110px !important; height: 110px !important; }
      .ux-flywheel-center svg { width: 110px !important; height: 110px !important; }
      .ux-fw-top, .ux-fw-right, .ux-fw-bottom, .ux-fw-left { max-width: none !important; }
      .ux-fw-title { font-size: 11px !important; }
      .ux-fw-desc  { font-size: 11px !important; }

      /* UX design sample — collapse all inline grids to 1-col except completed designs */
      #page-ux-design-sample div[style*="display:grid"]:not(#completed-designs-grid) {
        grid-template-columns: 1fr !important;
      }
      #page-ux-design-sample #completed-designs-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
      }
      #page-ux-design-sample #completed-designs-grid .ux-screen-img {
        width: 100%;
        height: auto;
        display: block;
      }
      #page-ux-design-sample .ux-principles-grid {
        grid-template-columns: 1fr !important;
      }

      /* Lightbox */
      .lightbox-arrow { display: none; }
      .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 0 !important;
        line-height: 0 !important;
        opacity: 1;
        background: #252830;
        color: #ffffff;
        border: 2px solid rgba(255,255,255,0.4);
        width: 36px;
        height: 36px;
        box-sizing: border-box;
        border-radius: 100px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
      }
    }

    /* ── Lightbox ────────────────────────────── */
    .lightbox-trigger {
      cursor: zoom-in;
      display: block;
    }
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 32px;
    }
    .lightbox-overlay.open {
      display: flex;
    }
    .lightbox-overlay img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
      cursor: zoom-out;
    }
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 28px;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
      opacity: 0.8;
      transition: opacity 0.2s;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.12);
      border: none;
      color: #fff;
      font-size: 48px;
      line-height: 1;
      width: 56px;
      height: 72px;
      cursor: pointer;
      border-radius: 4px;
      opacity: 0.75;
      transition: opacity 0.2s, background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lightbox-arrow:hover { opacity: 1; background: rgba(255,255,255,0.22); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
    .lightbox-arrow.hidden { display: none; }

    /* ── Team Management Redesign ─────────────────────── */
    .tm-project { margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border-subtle); }
    .tm-project:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }


    .tm-project-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 36px; }
    .tm-project-num {
      font-family: var(--font-sans); font-size: 13px; line-height: 1;
      color: var(--mid); letter-spacing: 0.12em; flex-shrink: 0; font-style: normal;
      text-transform: uppercase; font-weight: 500;
      user-select: none; padding-top: 6px;
    }
    .tm-project-header h2 { margin-bottom: 0 !important; }

    /* PSB 3-panel — dark theme, accent top border per column */
    .tm-psb-row {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border-subtle); border-radius: 8px;
      overflow: hidden; margin-bottom: 48px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.12);
    }
    .tm-psb-cell {
      padding: 28px 24px;
      border-right: 1px solid var(--border-subtle);
      background: var(--black);
    }
    .tm-psb-cell:last-child { border-right: none; }
    .tm-psb-label {
      display: inline-block; font-size: 10px; text-transform: uppercase;
      letter-spacing: 0.12em; font-weight: 600; margin-bottom: 14px;
      padding: 4px 10px; border-radius: 100px;
      color: var(--white);
      background: var(--light);
      border: 1px solid var(--border-subtle);
    }
    .tm-psb-cell--problem .tm-psb-label {
      background: rgba(255, 0, 170, 0.22);
      border-color: rgba(255, 138, 212, 0.55);
      color: var(--pu-magenta-soft);
    }
    .tm-psb-cell--solution .tm-psb-label {
      background: rgba(55, 234, 254, 0.2);
      border-color: rgba(138, 243, 255, 0.55);
      color: var(--pu-cyan-soft);
    }
    .tm-psb-cell--outcome .tm-psb-label {
      background: rgba(151, 0, 255, 0.28);
      border-color: rgba(183, 102, 255, 0.65);
      color: #E8CCFF;
    }
    .tm-psb-cell p {
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.72);
    }
    .tm-psb-cell ul {
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.72);
      margin: 8px 0 0 16px;
      padding: 0;
    }
    .tm-psb-cell ul li { margin-bottom: 6px; }
    .tm-psb-cell ul li strong { color: var(--white); font-weight: 600; }
    .tm-psb-cell p strong { color: var(--white); font-weight: 600; }
    .al-ai-card {
      background: var(--black);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 32px;
      margin-top: 48px;
      margin-bottom: 48px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.12);
    }
    .al-ai-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 10px; letter-spacing: 0; }
    .al-ai-card-intro { font-size: 13px; line-height: 1.75; color: var(--mid); margin-bottom: 0; padding-bottom: 24px; }
    .al-ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
    .al-ai-item { padding-top: 0; }
    .al-ai-item-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 8px; text-align: left; }
    .al-ai-item-desc { font-size: 13px; line-height: 1.75; color: var(--mid); margin: 0; }
    #page-ai-driven-design .al-ai-item-title { text-align: center; }
    #page-ai-driven-design .al-ai-item-desc { text-align: center; }
    #page-ux-design-sample .al-ai-item-title { text-align: center; }
    #page-ux-design-sample #user-flow-card .al-ai-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }
    #page-ux-design-sample #user-flow-card .al-ai-item-title,
    #page-ux-design-sample #user-flow-card .al-ai-item-desc {
      text-align: center;
      width: 100%;
    }
    #page-ux-design-sample .ux-flow-step-icon {
      display: block;
      width: 58px;
      height: 58px;
      margin: 0 auto 14px;
      flex-shrink: 0;
      image-rendering: pixelated;
      image-rendering: crisp-edges;
    }
    @media (max-width: 900px) {
      #page-ux-design-sample #user-flow-card .al-ai-grid {
        grid-template-columns: 1fr !important;
      }
      #page-ux-design-sample #user-flow-card .al-ai-item {
        align-items: center;
      }
    }

    /* ── AI-driven design ─────────────────────────────── */
    #page-ai-driven-design .page-intro strong { color: var(--white); font-weight: 600; }
    #page-ai-driven-design .project-title { color: var(--white); }
    #page-ai-driven-design .tm-visual-label { color: rgba(255, 255, 255, 0.55); }
    #page-ai-driven-design .tm-step-content p { color: rgba(255, 255, 255, 0.72); }
    #page-ai-driven-design .tm-step-content p strong { color: var(--white); font-weight: 600; }
    #page-ai-driven-design .tm-step-n {
      background: var(--light);
      border: 1px solid var(--border-subtle);
      color: var(--white);
    }
    #page-ai-driven-design .tm-project {
      padding-bottom: 56px;
      margin-bottom: 56px;
    }
    #page-ai-driven-design .tm-project:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    #page-ai-driven-design .tm-steps .tm-step:last-child {
      border-bottom: none;
    }

    /* ── UX metrics ─────────────────────────────────── */
    #page-ux-metrics .page-intro strong { color: var(--white); font-weight: 600; }
    #page-ux-metrics .page-intro a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    #page-ux-metrics .page-intro a:hover { color: var(--white); }
    #page-ux-metrics .project-title { color: var(--white); }
    #page-ux-metrics .tm-visual-label { color: rgba(255, 255, 255, 0.55); }
    #page-ux-metrics .tm-step-content p { color: rgba(255, 255, 255, 0.72); }
    #page-ux-metrics .tm-step-content > strong { color: var(--white); font-weight: 600; }
    #page-ux-metrics .tm-step-n {
      background: var(--light);
      border: 1px solid var(--border-subtle);
      color: var(--white);
    }
    #page-ux-metrics .tm-project {
      padding-bottom: 56px;
      margin-bottom: 56px;
    }
    #page-ux-metrics .tm-project:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    #page-ux-metrics .tm-steps .tm-step:last-child { border-bottom: none; }
    #page-ux-metrics .ux-metrics-intro { margin-top: 0; margin-bottom: 32px; }
    #page-ux-metrics .ux-metrics-grid { margin-bottom: 40px; }
    #page-ux-metrics .tag-list--skills .tag {
      background: rgba(151, 0, 255, 0.28);
      border-color: rgba(183, 102, 255, 0.65);
      color: #E8CCFF;
    }
    #page-ux-metrics .tag-list--tools .tag {
      background: rgba(55, 234, 254, 0.2);
      border-color: rgba(138, 243, 255, 0.55);
      color: var(--pu-cyan-soft);
    }
    #page-ux-metrics .tag-list--known .tag {
      background: rgba(255, 0, 170, 0.22);
      border-color: rgba(255, 138, 212, 0.55);
      color: var(--pu-magenta-soft);
    }
    #page-ux-metrics .ux-metric-formula {
      font-family: var(--font-sans);
      font-size: 13px;
      color: rgba(255, 255, 255, 0.9);
      background: var(--black);
      border: 1px solid var(--border-subtle);
      border-radius: 6px;
      padding: 10px 14px;
      margin: 12px 0;
    }

    .ai-adoption-card { background: var(--black); border-radius: 8px; padding: 40px 32px; margin-top: 48px; margin-bottom: 48px; }
    .ai-adoption-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: #ffffff; margin-bottom: 32px; }
    .ai-adoption-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .ai-adoption-item { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
    .ai-adoption-item-title { font-size: 13px; font-weight: 600; color: #ffffff; margin-bottom: 8px; }
    .ai-adoption-item-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.55); margin: 0; }
    .ai-adoption-icon { display: block; width: 220px; height: 220px; object-fit: contain; margin: -48px auto -40px; filter: invert(1); }

    /* Section label */
    .tm-visual-label {
      font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--mid); font-weight: 500; margin-bottom: 14px; display: block;
    }

    .tm-raci-col { display: flex; flex-direction: column; gap: 12px; align-self: center; }
    .tm-collab-note { background: var(--surface-elevated); border-left:3px solid var(--pu-purple); border-radius:6px; padding:14px 16px; }

    /* Process steps timeline */
    .tm-steps { display: flex; flex-direction: column; margin-bottom: 40px; }
    .tm-step {
      display: flex; gap: 24px; align-items: flex-start;
      padding: 18px 0; border-top: 1px solid var(--border-subtle);
    }
    .tm-step:last-child { border-bottom: 1px solid var(--border-subtle); }
    .tm-step-n {
      font-family: var(--font-sans); font-size: 12px; color: var(--white);
      background: var(--black); border-radius: 100px;
      min-width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
      font-weight: 500; flex-shrink: 0; margin-top: 1px; font-style: normal;
    }
    .tm-step-check {
      font-size: 14px; color: var(--white);
      background: var(--black); border-radius: 100px;
      min-width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px; line-height: 1;
    }
    .tm-step-content > strong { display: block; font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
    .tm-step-content p strong { color: var(--white); font-weight: 600; }
    .tm-step-content p { font-size: 14px; line-height: 1.7; color: var(--mid); }
    .tm-step-content p + p { margin-top: 12px; }
    .tm-step-list { font-size: 15px; line-height: 1.75; color: var(--mid); margin: 8px 0 0 16px; padding: 0; }
    .tm-step-list li { margin-bottom: 6px; }

    /* Flow chart — all light, numbered nodes, no color fills */
    .tm-flow { margin-bottom: 48px; }
    .tm-flow-track {
      display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch;
    }
    .tm-flow-node {
      flex: 1; min-width: 100px;
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 8px;
      padding: 18px 12px;
      border: 1px solid var(--border-subtle); border-radius: 8px;
      background: var(--surface-elevated); text-align: center;
    }
    .tm-flow-node-num {
      font-family: var(--font-sans); font-style: normal;
      font-size: 11px; font-weight: 600; color: var(--mid); line-height: 1;
      text-transform: uppercase; letter-spacing: 0.08em;
    }
    .tm-flow-node-label {
      font-size: 12px; font-weight: 500; color: var(--white);
      line-height: 1.35;
    }
  
    /* ── Team Management ─────────────────────────────── */
    #page-team-management .page-intro strong { color: var(--white); font-weight: 600; }
    #page-team-management .project-title { color: var(--white); }
    #page-team-management .tm-leader-section {
      margin: 48px 0 56px;
    }
    #page-team-management .tm-leader-header {
      margin-bottom: 12px;
    }
    #page-team-management .tm-leader-intro {
      font-size: 13px;
      line-height: 1.75;
      color: var(--mid);
      margin: 0 0 28px;
      max-width: 640px;
    }
    #page-team-management .tm-leader-psb-row {
      grid-template-columns: repeat(4, 1fr);
      margin-bottom: 0;
    }
    .tm-pillar-icon {
      display: block;
      width: 58px;
      height: 58px;
      margin: 0 0 16px;
      flex-shrink: 0;
      image-rendering: pixelated;
      image-rendering: crisp-edges;
    }
    .tm-pillar-title {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.25;
      letter-spacing: -0.01em;
      color: var(--white);
      margin: 0 0 12px;
    }
    #page-team-management .tm-psb-cell--pillar {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    @media (max-width: 1100px) {
      #page-team-management .tm-leader-psb-row {
        grid-template-columns: repeat(2, 1fr);
      }
      #page-team-management .tm-leader-psb-row .tm-psb-cell:nth-child(2n) {
        border-right: none;
      }
      #page-team-management .tm-leader-psb-row .tm-psb-cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--border-subtle);
      }
    }
    #page-team-management .tm-project--featured {
      border-bottom: none;
      margin-bottom: 48px;
      padding-bottom: 0;
    }
    #page-team-management .tm-project-header--stacked {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 32px;
    }
    #page-team-management .tm-case-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 500;
    }
    #page-team-management .tm-framework-intro {
      margin-top: 32px;
      margin-bottom: 16px;
    }
    #page-team-management .tm-testimonial {
      position: relative;
      overflow: visible;
      margin: 48px 0 0;
      padding: 36px 40px 32px;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      box-shadow: none;
    }
    #page-team-management .tm-testimonial-mark {
      position: absolute;
      top: 32px;
      left: 32px;
      line-height: 0;
      pointer-events: none;
      user-select: none;
    }
    #page-team-management .tm-testimonial-mark img {
      display: block;
      width: 24px;
      height: auto;
      opacity: 0.16;
      filter: brightness(0) invert(1);
    }
    #page-team-management .tm-testimonial-body {
      padding-left: 36px;
    }
    #page-team-management .tm-testimonial-text {
      position: relative;
      font-family: var(--font-sans);
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.72);
      margin: 0;
      padding: 0;
    }
    #page-team-management .tm-testimonial-text strong {
      color: var(--white);
      font-weight: 600;
    }
    #page-team-management .tm-testimonial-footer {
      margin: 20px 0 0;
      padding: 0;
    }
    #page-team-management .tm-testimonial-name {
      font-size: 13px;
      font-weight: 400;
      font-style: italic;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: -0.01em;
    }
    @media (max-width: 900px) {
      #page-team-management .tm-leader-psb-row {
        grid-template-columns: 1fr;
      }
      #page-team-management .tm-leader-psb-row .tm-psb-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
      }
      #page-team-management .tm-leader-psb-row .tm-psb-cell:last-child {
        border-bottom: none;
      }
    }

    /* ── Agile Leadership ─────────────────────────────── */
    #page-agile-leadership .page-intro strong { color: var(--white); font-weight: 600; }
    #page-agile-leadership .project-title { color: var(--white); }
    #page-agile-leadership .tm-visual-label { color: rgba(255, 255, 255, 0.55); }
    #page-team-management .al-framework-grid {
      margin-top: 8px;
      margin-bottom: 48px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.12);
    }
    #page-team-management .al-framework-grid .about-section-label {
      color: rgba(255, 255, 255, 0.55);
    }
    #page-team-management .tm-templates-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin: 16px 0 40px;
      align-items: stretch;
    }
    #page-team-management .tm-template-card {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      height: 100%;
    }
    #page-team-management .tm-template-label {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.88);
      text-align: center;
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #page-team-management .tm-template-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      border: none;
      shape-rendering: geometricPrecision;
    }
    @media (max-width: 900px) {
      #page-team-management .tm-templates-grid {
        grid-template-columns: 1fr;
      }
    }
    #page-agile-leadership .al-ai-grid {
      border-top: 1px solid var(--border-subtle);
      padding-top: 24px;
    }
    #page-agile-leadership .al-ai-item {
      padding: 20px;
      border-radius: 8px;
      background: var(--surface);
      border: 1px solid var(--border-subtle);
    }
    #page-agile-leadership .al-ai-card-intro--second {
      padding-bottom: 0;
      margin-top: -8px;
    }
    #page-agile-leadership .al-ai-item-desc + .al-ai-item-desc {
      margin-top: 12px;
    }
    #page-agile-leadership .al-ai-item-desc strong {
      color: var(--white);
      font-weight: 600;
    }
    #page-agile-leadership .al-ai-card-outro {
      margin: 28px 0 0;
      padding-top: 24px;
      border-top: 1px solid var(--border-subtle);
      font-size: 13px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.72);
    }
    #page-agile-leadership .al-ai-item-title { font-size: 14px; margin-bottom: 10px; }
    #page-agile-leadership .al-ai-item-desc { color: rgba(255, 255, 255, 0.72); }
    #page-agile-leadership .tm-step-content p { color: rgba(255, 255, 255, 0.72); }
    #page-agile-leadership .tm-step-n {
      background: var(--light);
      border: 1px solid var(--border-subtle);
      color: var(--white);
    }
    #page-agile-leadership .tm-project {
      padding-bottom: 56px;
      margin-bottom: 56px;
    }
    #page-agile-leadership .tm-project:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    #page-agile-leadership .tm-steps .tm-step:last-child {
      border-bottom: none;
    }
    #page-team-management div[style*="grid-template-columns:1fr 1fr"] img {
      border: 1px solid var(--border-subtle);
    }
    #page-agile-leadership .al-retro-block {
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 28px 32px 32px;
      margin: 16px 0 48px;
    }
    #page-agile-leadership .al-retro-block__label {
      margin-bottom: 16px;
      color: rgba(255, 255, 255, 0.72);
    }
    #page-agile-leadership .al-retro-intro {
      font-size: 13px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.72);
      max-width: none;
      margin: 0 0 24px;
    }
    #page-agile-leadership .al-retro-intro a {
      color: rgba(255, 255, 255, 0.92);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    #page-agile-leadership .al-retro-intro a:hover {
      color: var(--white);
    }
    #page-agile-leadership .al-retro-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }
    #page-agile-leadership .al-retro-card {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      height: 100%;
    }
    #page-agile-leadership .al-retro-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      height: auto;
      object-fit: cover;
      object-position: center;
      border-radius: 8px;
      display: block;
      border: 1px solid var(--border-subtle);
      filter: grayscale(100%);
    }
    #page-agile-leadership .al-retro-card figcaption {
      font-size: 11px;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.55);
      text-align: center;
      padding: 0 4px;
    }
    @media (max-width: 900px) {
      #page-agile-leadership .al-retro-gallery {
        grid-template-columns: 1fr;
      }
    }
    .al-framework-grid__pillars { grid-column: span 2; }
    .al-level-tags {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    .al-level-tags .tag { border-radius: 6px; }
    .al-phase {
      min-width: 76px !important;
      font-size: 11px !important;
      line-height: 1.5 !important;
      padding-top: 2px !important;
    }
    .al-process-steps {
      list-style: decimal;
      padding-left: 18px;
      margin: 10px 0 14px;
    }
    .al-process-steps li {
      font-size: 13px;
      line-height: 1.7;
      color: var(--white);
      padding: 2px 0;
    }

    /* ── About page redesign ──────────────────────────── */
    .about-name {
      font-family: var(--font-display);
      font-size: clamp(48px, 5.5vw, 72px);
      font-weight: 400;
      line-height: 1.0;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      white-space: nowrap;
    }
    .about-tagline {
      font-family: var(--font-sans);
      font-style: normal;
      font-size: clamp(16px, 1.8vw, 22px);
      color: var(--mid);
      line-height: 1.55;
      margin-bottom: 20px;
      max-width: 480px;
      font-weight: 300;
    }

    #page-about .about-links-linkedin {
      border: none !important;
      box-shadow: none !important;
    }
    .about-layout {
      display: grid;
      grid-template-columns: 1.15fr 0.92fr;
      gap: 56px;
      margin-bottom: var(--about-gap-primary, 56px);
      align-items: start;
    }

    .about-col-left {
      display: flex;
      flex-direction: column;
      gap: var(--about-gap-major, 96px);
    }
    .about-col-right {
      display: flex;
      flex-direction: column;
      gap: 28px;
      padding-top: 0;
    }

    /* Two-column: name row 1 | intro + hero row 2 (must come after base flex so display:contents wins) */
    @media (min-width: 601px) {
      .about-layout {
        grid-template-rows: auto auto;
        row-gap: var(--about-gap-primary, 56px);
        column-gap: 56px;
      }
      .about-col-left {
        display: contents;
      }
      .about-col-left > div:first-child {
        grid-column: 1;
        grid-row: 1;
      }
      .about-intro {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
      }
      .about-col-right {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin-top: 20px;
        padding-top: 0;
      }
    }

    @media (min-width: 901px) {
      .about-col-right {
        margin-top: 28px;
      }
      .about-hero-visual {
        --hero-panel-top: 42px;
        --badge-y-lower: 39px;
      }
    }

    @media (max-width: 600px) {
      .about-col-left > div:first-child,
      .about-intro,
      .about-col-right {
        grid-column: auto;
        grid-row: auto;
      }
    }
    .about-photo {
      width: 100%;
      display: block;
      mix-blend-mode: multiply;
    }
      /* UX sample page */
    #page-ux-design-sample .ux-meta-with-logo {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: stretch;
      margin-bottom: 56px;
    }
    #page-ux-design-sample .ux-app-logo-wrap {
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      overflow: hidden;
      padding: 0;
      box-sizing: border-box;
      background: var(--black);
      aspect-ratio: 1;
      width: min(150px, 40vw);
      max-width: 150px;
      height: auto;
      max-height: none;
      justify-self: center;
    }
    #page-ux-design-sample .ux-meta-row {
      width: 100%;
    }
    @media (min-width: 901px) {
      #page-ux-design-sample .ux-meta-with-logo {
        grid-template-columns: auto 1fr;
      }
      #page-ux-design-sample .ux-app-logo-wrap {
        width: auto;
        height: 100%;
        max-width: 150px;
        max-height: 150px;
        justify-self: center;
      }
      #page-ux-design-sample .ux-meta-row {
        width: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      #page-ux-design-sample .ux-meta-cell:nth-child(2) {
        border-right: 1px solid var(--border-subtle);
        border-top: none;
      }
      #page-ux-design-sample .ux-meta-cell:nth-child(3) {
        border-top: none;
      }
    }
    #page-ux-design-sample .ux-app-logo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      cursor: default;
    }
    #page-ux-design-sample .ux-meta-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 0;
      box-shadow: none;
      background: transparent;
    }
    #page-ux-design-sample .ux-meta-cell {
      padding: 24px;
      border-right: 1px solid var(--border-subtle);
      background: var(--black);
      min-width: 0;
    }
    #page-ux-design-sample .ux-meta-cell:last-child { border-right: none; }
    #page-ux-design-sample .ux-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; color: var(--mid); margin-bottom: 16px; }
    #page-ux-design-sample .ux-meta-text { font-size: 13px; line-height: 1.75; color: var(--mid); }
    #completed-designs-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 12px;
      margin-top: 32px;
    }
    #completed-designs-grid .ux-screen-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      display: block;
    }
    .ux-flow-img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      margin-top: 16px;
      image-rendering: auto;
    }
    .ux-wireframe-img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      margin-top: 16px;
    }
    #page-ux-design-sample .ux-principles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    #page-ux-design-sample .ux-principle-item {
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: 0;
    }
    #page-ux-design-sample .ux-principles-grid .ux-wireframe-img {
      margin-top: 0;
    }
    #page-ux-design-sample .ux-styleguide-block {
      max-width: 100%;
    }
    #page-ux-design-sample .ux-styleguide-img {
      width: 100%;
      max-width: 100%;
      margin-top: 0;
    }

    /* Hay Lugar design system — compact layout */
    .hl-ds {
      --hl-surface: #ffffff;
      --hl-surface-2: #f8f9fa;
      --hl-flat: #e9ecef;
      --hl-border: #dee2e6;
      --hl-input: #ced4da;
      --hl-body: #6c757d;
      --hl-heading: #212529;
      --hl-primary: #171717;
      --hl-accent: #2d68ff;
      --hl-success: #28a745;
      --hl-warning: #ffc107;
      --hl-error: #dc3545;
      --hl-secondary: #e2e3e5;
      --hl-link: #007bff;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      background: var(--hl-surface-2);
      color: var(--hl-heading);
      border-radius: 12px;
      border: 1px solid var(--hl-border);
      overflow: hidden;
      margin-top: 8px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    }
    .hl-ds__hero {
      padding: 20px 28px 18px;
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
      border-bottom: 1px solid var(--hl-border);
    }
    /* Dark theme on portfolio — full style guide (no white panels) */
    #page-ux-design-sample .ux-styleguide-block {
      margin-top: 16px;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
    }
    #page-ux-design-sample .ux-styleguide-block .hl-ds {
      margin-top: 0;
      background: var(--black);
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
      --hl-surface: #2a2b26;
      --hl-surface-2: #222320;
      --hl-flat: rgba(255, 255, 255, 0.08);
      --hl-border: rgba(255, 255, 255, 0.1);
      --hl-input: rgba(255, 255, 255, 0.35);
      --hl-body: rgba(255, 255, 255, 0.55);
      --hl-heading: #f5f5f2;
      --hl-secondary: rgba(255, 255, 255, 0.14);
      color: var(--hl-heading);
    }
    #page-ux-design-sample .hl-ds__hero {
      padding: 18px 22px 16px;
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
      border-bottom: 1px solid #dee2e6;
    }
    #page-ux-design-sample .hl-ds__eyebrow { color: #6c757d; }
    #page-ux-design-sample .hl-ds__title { color: #212529; }
    #page-ux-design-sample .hl-ds__lead { color: #6c757d; max-width: none; }
    #page-ux-design-sample .hl-ds__panel:last-of-type { border-bottom: none; }
    /* App UI specimens — real Hay Lugar light tokens */
    #page-ux-design-sample .hl-ds__panel--app {
      --hl-surface: #ffffff;
      --hl-surface-2: #f8f9fa;
      --hl-flat: #e9ecef;
      --hl-border: #dee2e6;
      --hl-input: #ced4da;
      --hl-body: #6c757d;
      --hl-heading: #212529;
      --hl-secondary: #e2e3e5;
      background: #ffffff;
      color: #212529;
      border-bottom-color: #dee2e6;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__label {
      color: #6c757d;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__type-table {
      background: #ffffff;
      border-color: #dee2e6;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__type-row {
      border-top-color: #dee2e6;
      color: #6c757d;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__type-row--head {
      background: #f8f9fa;
      color: #6c757d;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__t { color: #212529; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__t--section { color: #6c757d; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__t--body,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__t--caption,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__t--helper { color: #6c757d; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__ico {
      background: #f8f9fa;
      border-color: #dee2e6;
      color: #212529;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__ico ion-icon { color: #212529; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__hint { color: #6c757d; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__btn--secondary {
      background: #ffffff;
      color: #212529;
      box-shadow: inset 0 0 0 1px #212529;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__btn--ghost {
      background: #ffffff;
      color: #ced4da;
      box-shadow: inset 0 0 0 1px #dee2e6;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__search {
      background: #f8f9fa;
      border-color: #dee2e6;
      color: #6c757d;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__tabs {
      background: #ffffff;
      border-color: #dee2e6;
      box-shadow: 0 3px 12px rgba(33, 37, 41, 0.06);
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__tab { color: #6c757d; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__cards-board {
      background: #ffffff;
      border-color: #eeeeee;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__place-card,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__shortcut-card,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__list-card {
      background: #ffffff;
      border-color: #eeeeee;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__ico-circle {
      background: #f6f6f6;
      color: #212529;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__ico-circle ion-icon { color: #212529; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__place-body strong,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__shortcut-card strong,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__list-text strong {
      color: #212529;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__place-line,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__place-meta,
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__list-text span {
      color: #6c757d;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__thumb-map {
      background: #e9ecef;
      border-color: #eeeeee;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__thumb-pin { color: #212529; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__list-divider { background: #eeeeee; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__r {
      background: #f8f9fa;
      border-color: #dee2e6;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__radius-grid code { color: #6c757d; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__shadow {
      background: #ffffff;
      border-color: #dee2e6;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__shadow span { color: #212529; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__shadow small { color: #6c757d; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__illus-frame {
      background: #f8f9fa;
      border-color: #eeeeee;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__illus-frame--onboard { background: #2d68ff; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__illus-frame--empty { background: #f8f9fa; }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__illus-frame figcaption {
      background: #ffffff;
      border-top-color: #eeeeee;
      color: #6c757d;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__map-demo {
      background: linear-gradient(180deg, #eef1f4 0%, #e2e6ea 100%);
      border-color: #dee2e6;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__group-name {
      color: #212529;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__swatch strong {
      color: #212529;
    }
    #page-ux-design-sample .hl-ds__panel--app .hl-ds__swatch code {
      background: #f8f9fa;
      color: #6c757d;
    }
    #page-ux-design-sample .ux-styleguide-block > div[style*="flex"] {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--border-subtle);
    }
    .hl-ds__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
    .hl-ds__logo {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 12px;
      object-fit: cover;
      display: block;
    }
    .hl-ds__eyebrow {
      margin: 0 0 2px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--hl-body);
    }
    .hl-ds__title { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--hl-heading); }
    .hl-ds__lead { margin: 0; max-width: 62ch; font-size: 13px; line-height: 1.55; color: var(--hl-body); }
    .hl-ds__panel {
      padding: 18px 28px;
      border-bottom: 1px solid var(--hl-border);
      background: var(--hl-surface);
    }
    .hl-ds__panel:nth-child(even) { background: var(--hl-surface-2); }
    .hl-ds__panel--split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: start;
    }
    .hl-ds__label {
      margin: 0 0 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--hl-body);
    }
    .hl-ds__group-name { margin: 0 0 8px; font-size: 12px; font-weight: 600; color: var(--hl-heading); }
    .hl-ds__color-groups {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 24px;
      align-items: start;
    }
    .hl-ds__colors {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
      gap: 8px 6px;
    }
    .hl-ds__swatch { display: flex; flex-direction: column; gap: 4px; }
    .hl-ds__swatch strong { font-size: 11px; font-weight: 600; color: var(--hl-heading); }
    .hl-ds__swatch code {
      font-size: 9px;
      font-family: ui-monospace, "SF Mono", Menlo, monospace;
      color: var(--hl-body);
      background: var(--hl-surface-2);
      padding: 1px 5px;
      border-radius: 3px;
      width: fit-content;
    }
    .hl-ds__chip {
      display: block;
      width: 100%;
      aspect-ratio: 1;
      max-height: 52px;
      border-radius: 8px;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    }
    .hl-ds__type-table {
      border: 1px solid var(--hl-border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--hl-surface);
    }
    .hl-ds__type-row {
      display: grid;
      grid-template-columns: 1.15fr 0.95fr 0.75fr;
      gap: 12px;
      align-items: center;
      padding: 9px 14px;
      border-top: 1px solid var(--hl-border);
      font-size: 11px;
      color: var(--hl-body);
    }
    .hl-ds__type-row:first-child { border-top: none; }
    .hl-ds__type-row--head {
      background: var(--hl-surface-2);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--hl-body);
      padding: 8px 14px;
    }
    .hl-ds__t { color: var(--hl-heading); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .hl-ds__t--screen { font-size: 18px; font-weight: 700; }
    .hl-ds__t--loc { font-size: 15px; font-weight: 600; }
    .hl-ds__t--action { font-size: 14px; font-weight: 600; }
    .hl-ds__t--section { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hl-body); }
    .hl-ds__t--body { font-size: 13px; color: var(--hl-body); }
    .hl-ds__t--caption { font-size: 12px; color: var(--hl-body); }
    .hl-ds__t--helper { font-size: 10px; color: var(--hl-body); }
    .hl-ds__icons {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 8px;
    }
    .hl-ds__ico {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 42px;
      border-radius: 10px;
      background: var(--hl-surface-2);
      border: 1px solid var(--hl-border);
      color: var(--hl-heading);
    }
    .hl-ds__ico svg,
    .hl-ds__ico ion-icon {
      width: 20px;
      height: 20px;
      font-size: 20px;
      --ionicon-stroke-width: 32px;
    }
    .hl-ds__hint { margin: 8px 0 0; font-size: 10px; color: var(--hl-body); line-height: 1.45; }
    .hl-ds__btn-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
    .hl-ds__btn {
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 8px;
      border: none;
      cursor: default;
    }
    .hl-ds__btn--primary { background: var(--hl-primary); color: #fff; }
    .hl-ds__btn--secondary { background: var(--hl-surface); color: var(--hl-heading); box-shadow: inset 0 0 0 1px var(--hl-heading); }
    .hl-ds__btn--icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      padding: 0;
      border-radius: 8px;
      background: var(--hl-primary);
    }
    .hl-ds__btn--ghost {
      background: var(--hl-surface);
      color: var(--hl-input);
      box-shadow: inset 0 0 0 1px var(--hl-border);
    }
    .hl-ds__search {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      margin-bottom: 10px;
      border-radius: 40px;
      background: var(--hl-surface-2);
      border: 1px solid var(--hl-border);
      font-size: 13px;
      color: var(--hl-body);
    }
    .hl-ds__search ion-icon {
      width: 15px;
      height: 15px;
      font-size: 15px;
      color: var(--hl-body);
      --ionicon-stroke-width: 32px;
    }
    .hl-ds__tabs {
      position: static;
      top: auto;
      left: auto;
      width: 100%;
      height: auto;
      max-width: 100%;
      margin: 0;
      z-index: auto;
      overflow: visible;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 4px;
      padding: 4px 6px;
      border-radius: 40px;
      background: var(--hl-surface);
      border: 1px solid var(--hl-border);
      box-shadow: 0 3px 12px rgba(33, 37, 41, 0.06);
      box-sizing: border-box;
    }
    .hl-ds__tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      min-width: 0;
      width: 100%;
      padding: 6px 4px;
      font-size: 9px;
      font-weight: 500;
      color: var(--hl-body);
      border-radius: 999px;
    }
    .hl-ds__tab svg,
    .hl-ds__tab ion-icon {
      width: 18px;
      height: 18px;
      font-size: 18px;
      --ionicon-stroke-width: 32px;
    }
    .hl-ds__tab--on { background: var(--hl-primary); color: #fff; }
    .hl-ds__cards-board {
      padding: 14px;
      border-radius: 16px;
      background: var(--hl-surface);
      border: 1px solid #eeeeee;
    }
    .hl-ds__cards-row {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 12px;
      align-items: stretch;
    }
    .hl-ds__cards-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      width: max-content;
      max-width: 100%;
    }
    .hl-ds__ico-circle {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f6f6f6;
      color: var(--hl-heading);
    }
    .hl-ds__ico-circle ion-icon {
      width: 20px;
      height: 20px;
      font-size: 20px;
      color: var(--hl-heading);
      --ionicon-stroke-width: 32px;
    }
    .hl-ds__place-card,
    .hl-ds__shortcut-card,
    .hl-ds__list-card {
      border-radius: 16px;
      background: var(--hl-surface);
      border: 1px solid #eeeeee;
      box-shadow: none;
    }
    .hl-ds__place-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) 56px;
      column-gap: 10px;
      row-gap: 0;
      align-items: center;
      width: 100%;
      max-width: 300px;
      padding: 11px;
      box-sizing: border-box;
    }
    .hl-ds__place-body {
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
    }
    .hl-ds__place-body strong {
      font-size: 14px;
      font-weight: 600;
      color: var(--hl-heading);
      line-height: 1.25;
      letter-spacing: -0.01em;
    }
    .hl-ds__place-line {
      font-size: 12px;
      font-weight: 400;
      color: var(--hl-body);
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .hl-ds__place-meta {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 0;
      font-size: 11px;
      font-weight: 400;
      color: var(--hl-body);
    }
    .hl-ds__status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--hl-success);
      flex-shrink: 0;
    }
    .hl-ds__thumb-map {
      position: relative;
      width: 56px;
      height: 56px;
      border-radius: 10px;
      background: #e9ecef;
      border: 1px solid #eeeeee;
      overflow: hidden;
      flex-shrink: 0;
    }
    .hl-ds__thumb-map::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.35;
      background-image:
        linear-gradient(#dee2e6 1px, transparent 1px),
        linear-gradient(90deg, #dee2e6 1px, transparent 1px);
      background-size: 14px 14px;
    }
    .hl-ds__thumb-pin {
      position: absolute;
      left: 50%;
      top: 46%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--hl-heading);
      z-index: 1;
    }
    .hl-ds__thumb-pin ion-icon {
      width: 22px;
      height: 22px;
      font-size: 22px;
    }
    .hl-ds__shortcut-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      text-align: left;
      width: 124px;
      aspect-ratio: 1 / 1;
      flex-shrink: 0;
      padding: 12px;
      box-sizing: border-box;
    }
    .hl-ds__shortcut-card .hl-ds__ico-circle {
      margin-bottom: 8px;
    }
    .hl-ds__shortcut-card strong {
      font-size: 14px;
      font-weight: 600;
      color: var(--hl-heading);
      margin: 0 0 4px;
      letter-spacing: -0.01em;
    }
    .hl-ds__shortcut-card .hl-ds__place-line--clamp {
      flex: 1;
      min-height: 0;
      align-self: stretch;
    }
    .hl-ds__list-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      min-height: 0;
      overflow: hidden;
    }
    .hl-ds__list-item {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      padding: 10px 12px;
    }
    .hl-ds__list-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }
    .hl-ds__list-text strong {
      font-size: 13px;
      font-weight: 600;
      color: var(--hl-heading);
      line-height: 1.25;
      letter-spacing: -0.01em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .hl-ds__list-text span {
      font-size: 11px;
      font-weight: 400;
      color: var(--hl-body);
      line-height: 1.3;
    }
    .hl-ds__list-divider {
      height: 1px;
      margin: 0;
      background: #eeeeee;
    }
    .hl-ds__chev-icon {
      width: 14px;
      height: 14px;
      font-size: 14px;
      color: #9ca3af;
      flex-shrink: 0;
      --ionicon-stroke-width: 32px;
    }
    .hl-ds__radius-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 8px;
    }
    .hl-ds__radius-grid div { text-align: center; }
    .hl-ds__r {
      display: block;
      height: 28px;
      margin-bottom: 4px;
      background: var(--hl-surface-2);
      border: 1px solid var(--hl-border);
    }
    .hl-ds__r--pill { height: 20px; }
    .hl-ds__radius-grid code { font-size: 9px; color: var(--hl-body); font-family: ui-monospace, monospace; }
    .hl-ds__shadow-stack { display: flex; flex-direction: column; gap: 8px; }
    .hl-ds__shadow {
      padding: 11px 14px;
      border-radius: 10px;
      background: var(--hl-surface);
      border: 1px solid var(--hl-border);
    }
    .hl-ds__shadow span { display: block; font-size: 12px; font-weight: 600; color: var(--hl-heading); }
    .hl-ds__shadow small { font-size: 10px; color: var(--hl-body); }
    .hl-ds__shadow--low { box-shadow: 0 2px 6px rgba(33, 37, 41, 0.06); }
    .hl-ds__shadow--mid { box-shadow: 0 6px 20px rgba(33, 37, 41, 0.1); }
    .hl-ds__shadow--high { box-shadow: 0 16px 40px rgba(33, 37, 41, 0.14); }
    .hl-ds__illus {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .hl-ds__illus-frame {
      margin: 0;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #eeeeee;
      background: var(--hl-surface-2);
    }
    .hl-ds__illus-frame img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 100px;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center;
    }
    .hl-ds__illus-frame--onboard {
      background: #2d68ff;
    }
    .hl-ds__illus-frame--onboard img {
      object-fit: contain;
      max-height: 96px;
    }
    .hl-ds__illus-frame--empty {
      background: #f8f9fa;
    }
    .hl-ds__illus-frame figcaption {
      padding: 5px 10px 7px;
      font-size: 10px;
      font-weight: 500;
      color: var(--hl-body);
      text-align: left;
      border-top: 1px solid #eeeeee;
      background: var(--hl-surface);
      line-height: 1.35;
    }
    .hl-ds__panel--media {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 20px;
      row-gap: 8px;
      align-items: start;
    }
    .hl-ds__panel--media .hl-ds__label { margin-bottom: 4px; }
    .hl-ds__panel--media .hl-ds__media-col-a { grid-column: 1; }
    .hl-ds__panel--media .hl-ds__media-col-b { grid-column: 2; }
    .hl-ds__panel--media .hl-ds__label.hl-ds__media-col-a { grid-row: 1; }
    .hl-ds__panel--media .hl-ds__label.hl-ds__media-col-b { grid-row: 1; }
    .hl-ds__panel--media .hl-ds__illus { grid-row: 2; align-self: stretch; }
    .hl-ds__panel--media .hl-ds__map-demo { grid-row: 2; align-self: stretch; margin-bottom: 0; }
    .hl-ds__panel--media .hl-ds__hint { grid-row: 3; margin: 0; }
    .hl-ds__panel--media .hl-ds__marker-key { grid-row: 3; }
    .hl-ds__map-demo {
      position: relative;
      min-height: 100px;
      height: 100%;
      border-radius: 12px;
      background: linear-gradient(180deg, #eef1f4 0%, #e2e6ea 100%);
      border: 1px solid var(--hl-border);
      margin-bottom: 0;
      overflow: hidden;
    }
    .hl-ds__map-demo::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.5;
      background-image: linear-gradient(#dee2e6 1px, transparent 1px),
        linear-gradient(90deg, #dee2e6 1px, transparent 1px);
      background-size: 32% 28%;
    }
    .hl-ds__marker {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .hl-ds__marker--user { left: 22%; top: 58%; width: 11px; height: 11px; background: var(--hl-accent); box-shadow: 0 0 0 3px rgba(45, 104, 255, 0.25); }
    .hl-ds__marker--car,
    .hl-ds__marker--park {
      border: 2px solid #fff;
      background: var(--hl-primary);
    }
    .hl-ds__marker--car { left: 48%; top: 32%; font-size: 11px; }
    .hl-ds__marker--park { right: 20%; top: 48%; font-size: 12px; }
    .hl-ds__marker--car ion-icon {
      width: 14px;
      height: 14px;
      font-size: 14px;
      --ionicon-stroke-width: 32px;
    }
    .hl-ds__marker-key { display: flex; flex-wrap: wrap; gap: 10px; font-size: 10px; color: var(--hl-body); }
    .hl-ds__marker-key span { display: inline-flex; align-items: center; gap: 5px; }
    .hl-ds__dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
    .hl-ds__dot--user { background: var(--hl-accent); }
    .hl-ds__dot--car { background: var(--hl-primary); }
    .hl-ds__dot--park { background: var(--hl-primary); }
    @media (max-width: 900px) {
      .hl-ds__color-groups { grid-template-columns: 1fr; }
      .hl-ds__panel--split,
      .hl-ds__cards-row { grid-template-columns: 1fr; }
      .hl-ds__cards-board {
        overflow: hidden;
        padding: 12px;
        box-sizing: border-box;
      }
      .hl-ds__cards-col {
        width: 100%;
        max-width: 100%;
        align-items: stretch;
      }
      .hl-ds__place-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        grid-template-columns: auto minmax(0, 1fr) 48px;
      }
      .hl-ds__thumb-map {
        width: 48px;
        height: 48px;
      }
      .hl-ds__shortcut-card {
        width: 100%;
        max-width: 220px;
      }
      .hl-ds__list-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
      .hl-ds__list-item {
        min-width: 0;
      }
      .hl-ds__list-text {
        min-width: 0;
      }
      .hl-ds__type-row { grid-template-columns: 1fr; gap: 4px; }
      .hl-ds__type-row--head { display: none; }
      .hl-ds__icons { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .hl-ds__illus { grid-template-columns: 1fr; }
      .hl-ds__radius-grid { grid-template-columns: repeat(4, 1fr); }
      .hl-ds__panel--media { grid-template-columns: 1fr; }
      .hl-ds__panel--media .hl-ds__media-col-a,
      .hl-ds__panel--media .hl-ds__media-col-b { grid-column: 1; }
      .hl-ds__panel--media .hl-ds__label.hl-ds__media-col-a { grid-row: 1; }
      .hl-ds__panel--media .hl-ds__illus { grid-row: 2; }
      .hl-ds__panel--media .hl-ds__hint { grid-row: 3; }
      .hl-ds__panel--media .hl-ds__label.hl-ds__media-col-b { grid-row: 4; }
      .hl-ds__panel--media .hl-ds__map-demo { grid-row: 5; height: auto; min-height: 120px; }
      .hl-ds__panel--media .hl-ds__marker-key { grid-row: 6; }
    }
    @media (max-width: 600px) {
      .hl-ds__hero,
      .hl-ds__panel { padding-left: 18px; padding-right: 18px; }
      .hl-ds__colors { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .hl-ds__radius-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .ux-section-images .ux-flow-img:first-child,
    .ux-section-images .ux-wireframe-img:first-child {
      margin-top: 0;
    }
    .ux-section-images { margin-top: 8px; margin-bottom: 8px; }
    .ux-storyboard-img {
      display: block;
      width: 100%;
      max-width: 1024px;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      margin-top: 16px;
      image-rendering: auto;
    }
    .ux-persona-img {
      display: block;
      width: 100%;
      max-width: 1024px;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      image-rendering: auto;
    }
    /* UX Flywheel */
    .ux-flywheel { display: grid; grid-template-columns: 1fr 200px 1fr; grid-template-rows: auto 200px auto; gap: 16px 32px; align-items: center; justify-items: center; margin: 0 auto 40px; max-width: 720px; }
    .ux-flywheel-center { grid-column: 2; grid-row: 2; width: 200px; height: 200px; }
    .ux-fw-top { grid-column: 2; grid-row: 1; text-align: left; max-width: 200px; }
    .ux-fw-right { grid-column: 3; grid-row: 2; text-align: left; max-width: 200px; justify-self: start; }
    .ux-fw-bottom { grid-column: 2; grid-row: 3; text-align: left; max-width: 200px; }
    .ux-fw-left { grid-column: 1; grid-row: 2; text-align: left; max-width: 200px; justify-self: end; }
    .ux-fw-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
    .ux-fw-desc { font-size: 13px; line-height: 1.7; color: var(--mid); margin: 0; }