:root {
      --bg: #050608;
      --surface: rgba(10, 12, 18, 0.92);
      --text: #f0f2f5;
      --muted: #a8b0bc;
      --accent: #4ce7ff;
      --accent-dim: rgba(46, 197, 232, 0.15);
      --nav-h: 4.25rem;
      --panel-max: 1200px;
      --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
      /* Strip min tap band height (strip sits in hero flex flow — not absolutely overlaid) */
      --hero-strip-h: clamp(4.25rem, 10vw, 5.75rem);
      --pad-x-touch: max(1.125rem, 5vw, env(safe-area-inset-left, 0px));
      --pad-x-touch-r: max(1.125rem, 5vw, env(safe-area-inset-right, 0px));
    }
    *, *::before, *::after { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }
    body {
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      font-size: 15px;
      line-height: 1.55;
    }
    body:has(.page-image-panel) .site-header {
      background: transparent;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      border-bottom-color: transparent;
      transition: background 0.25s ease, border-color 0.25s ease, -webkit-backdrop-filter 0.25s ease, backdrop-filter 0.25s ease;
    }
    body:has(.page-image-panel) .site-header.is-scrolled,
    body:has(.page-image-panel) .site-header:has(.nav-links.is-open) {
      background: rgba(5, 6, 8, 0.94);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* —— Top navigation —— */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 40;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: center;
      background: #050608;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    a:hover {
      color: var(--accent);
    }
    .hero-book-link:hover {
      color: inherit;
    }
    .nav-inner {
      width: 100%;
      max-width: var(--panel-max);
      padding-left: var(--pad-x-touch);
      padding-right: var(--pad-x-touch-r);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    @media (min-width: 900px) {
      .nav-inner {
        padding-left: max(
          clamp(1rem, 3vw, 1.75rem),
          env(safe-area-inset-left, 0px)
        );
        padding-right: max(
          clamp(1rem, 3vw, 1.75rem),
          env(safe-area-inset-right, 0px)
        );
      }
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .brand-mark {
      width: 36px;
      height: 36px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .nav-links {
      display: none;
      align-items: center;
      gap: clamp(1rem, 2vw, 1.65rem);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    @media (min-width: 960px) {
      .nav-links { display: flex; }
    }
    .nav-menu-btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 2.25rem;
      height: 2.25rem;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 0.35rem;
      background: transparent;
      cursor: pointer;
      flex-shrink: 0;
    }
    .nav-menu-btn span {
      display: block;
      width: 1rem;
      height: 2px;
      margin: 0 auto;
      background: var(--text);
      transition: transform 0.2s, opacity 0.2s;
    }
    .nav-menu-btn[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-menu-btn[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    .nav-menu-btn[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    @media (min-width: 960px) {
      .nav-menu-btn { display: none; }
    }
    @media (max-width: 959px) {
      .nav-inner { position: relative; flex-wrap: wrap; }
      .nav-menu-btn { margin-left: auto; }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        order: 4;
        padding: 0.5rem 0 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 0.35rem;
      }
      .nav-links.is-open { display: flex; }
      .nav-links a {
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .nav-links a:last-child { border-bottom: none; }
    }
    .nav-links a {
      transition: color 0.15s;
    }
    .nav-links a.is-active {
      color: var(--accent);
    }
    .nav-social {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .nav-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 0.35rem;
      color: var(--muted);
      transition: color 0.15s, background 0.15s;
    }
    .nav-social a:hover {
      color: var(--accent);
      background: var(--accent-dim);
    }
    .nav-social svg {
      width: 1.1rem;
      height: 1.1rem;
      fill: currentColor;
    }

    /* —— Hero —— */
    .hero {
      position: relative;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      background: #0a0c10 url("assets/background.png") center / cover no-repeat;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    /* Mobile: natural height — fixed 1-screen hero squishes book + icon strip together */
    @media (max-width: 899px) {
      .hero {
        min-height: 0;
        overflow: visible;
      }
    }
    /* Desktop: one viewport below nav */
    @media (min-width: 900px) {
      .hero {
        height: calc(100dvh - var(--nav-h) - env(safe-area-inset-bottom, 0px));
        max-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-bottom, 0px));
        overflow: hidden;
      }
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(5, 6, 8, 0.92) 0%,
        rgba(5, 6, 8, 0.5) 38%,
        rgba(5, 6, 8, 0.22) 72%,
        rgba(5, 6, 8, 0.12) 100%
      );
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      flex: 1 1 auto;
      min-height: 0;
      max-width: var(--panel-max);
      margin: 0 auto;
      width: 100%;
      padding-top: clamp(0.75rem, 2vw, 1.75rem);
      padding-bottom: 0.35rem;
      padding-left: var(--pad-x-touch);
      padding-right: var(--pad-x-touch-r);
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(1rem, 2.5vw, 1.75rem);
      align-items: center;
      overflow: hidden;
    }
    @media (min-width: 900px) {
      .hero-grid {
        padding-left: max(
          clamp(1rem, 3vw, 1.75rem),
          env(safe-area-inset-left, 0px)
        );
        padding-right: max(
          clamp(1rem, 3vw, 1.75rem),
          env(safe-area-inset-right, 0px)
        );
        grid-template-columns: 1fr minmax(280px, 44%);
        gap: clamp(1.25rem, 3vw, 2.5rem);
        align-items: center;
      }
    }
    .hero-copy {
      text-align: left;
    }
    .hero-title {
      margin: 0 0 1.05rem;
      font-size: clamp(1.95rem, 4.8vw, 2.95rem);
      font-weight: 700;
      line-height: 1.03;
      letter-spacing: -0.03em;
      color: #fff;
      text-wrap: balance;
    }
    .hero-title-line {
      display: block;
    }
    .hero-copy .hl {
      color: var(--accent);
      font-weight: 700;
    }
    .hero-copy .lede {
      margin: 0 0 1.45rem;
      max-width: 32rem;
      font-size: 0.9375rem;
      font-weight: 400;
      color: #fff;
      line-height: 1.62;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: flex-start;
    }
    @media (max-width: 899px) {
      .cta-row {
        flex-direction: column;
      }
      .cta-row .btn {
        width: 100%;
        justify-content: center;
      }
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.75rem 1.15rem;
      font-family: var(--font);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 0.45rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
    }
    .btn:hover {
      transform: translateY(-1px);
    }
    .btn-primary {
      background: var(--accent);
      color: #050608;
      box-shadow: 0 8px 28px rgba(46, 197, 232, 0.35);
    }
    .btn-primary:hover {
      color: #050608;
      box-shadow: 0 10px 32px rgba(46, 197, 232, 0.45);
    }
    .btn-ghost {
      background: rgba(0, 0, 0, 0.4);
      border-color: rgba(255, 255, 255, 0.45);
      color: #fff;
    }
    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(46, 197, 232, 0.12);
    }
    .hero-book {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-book-link {
      display: block;
      line-height: 0;
      border-radius: 0.35rem;
      transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.38s ease;
      filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.6));
    }
    .hero-book-link:hover {
      transform: translateY(-6px) scale(1.035);
      filter:
        drop-shadow(0 40px 70px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 44px rgba(76, 231, 255, 0.28));
    }
    .hero-book-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
    }
    .hero-book-link img {
      display: block;
      width: auto;
      height: auto;
      /* Sized to read big on desktop; hero has overflow:hidden so this won’t add page scroll */
      max-width: min(100%, clamp(300px, 40vw, 580px));
      max-height: min(68dvh, 640px);
      object-fit: contain;
    }
    @media (max-width: 899px) {
      .hero-grid {
        flex: 0 1 auto;
        min-height: auto;
        overflow: visible;
        align-items: stretch;
        gap: 0.65rem;
        padding-top: 0.65rem;
        padding-bottom: 0.5rem;
      }
      .hero-title {
        font-size: clamp(1.55rem, 6.8vw, 2.1rem);
        margin-bottom: 0.65rem;
      }
      .hero-copy .lede {
        margin-bottom: 0.9rem;
        font-size: 0.875rem;
        line-height: 1.55;
      }
      .hero-book {
        margin-top: 0.15rem;
      }
      .hero-book-link img {
        max-width: min(100%, 72vw, 260px);
        max-height: min(34dvh, 280px);
      }
    }

    /* —— Icon strip: glass band at bottom of hero (in flex flow so it cannot cover the book) —— */
    .icon-strip {
      position: relative;
      flex-shrink: 0;
      width: 100%;
      z-index: 4;
      min-height: var(--hero-strip-h);
      background: rgba(4, 6, 10, 0.42);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .icon-strip-inner {
      max-width: var(--panel-max);
      margin: 0 auto;
      padding: 0.5rem var(--pad-x-touch-r) 0.55rem var(--pad-x-touch);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      align-items: stretch;
    }
    @media (min-width: 900px) {
      .icon-strip-inner {
        padding-left: max(
          clamp(0.35rem, 1.2vw, 0.75rem),
          env(safe-area-inset-left, 0px)
        );
        padding-right: max(
          clamp(0.35rem, 1.2vw, 0.75rem),
          env(safe-area-inset-right, 0px)
        );
      }
    }
    @media (min-width: 1024px) {
      .icon-strip-inner {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }
    }
    a.icon-item {
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }
    .icon-item {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-start;
      gap: 0.55rem;
      min-width: 0;
      padding: 0.55rem clamp(0.5rem, 2.5vw, 0.65rem);
      text-align: left;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition:
        background 0.22s ease,
        box-shadow 0.22s ease;
    }
    .icon-strip .icon-item:hover {
      color: inherit;
      background: rgba(76, 231, 255, 0.12);
      box-shadow: inset 0 0 0 1px rgba(76, 231, 255, 0.18);
    }
    a.icon-item:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: -2px;
      z-index: 1;
    }
    @media (min-width: 1024px) {
      .icon-item {
        border-bottom: none;
        flex-direction: row;
      }
      .icon-item:last-child {
        border-right: none;
      }
    }
    .icon-item img {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      object-fit: contain;
    }
    .icon-label {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0.06rem;
      min-width: 0;
    }
    .icon-label span {
      display: block;
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.22;
    }
    @media (max-width: 639px) {
      .icon-item {
        gap: 0.42rem;
        padding: 0.55rem clamp(0.45rem, 3vw, 0.58rem);
      }
      .icon-item img {
        width: 34px;
        height: 34px;
      }
      .icon-label span {
        font-size: 0.52rem;
        letter-spacing: 0.035em;
        line-height: 1.26;
      }
    }
    .icon-label--single span {
      line-height: 1.3;
    }

    /* —— Full-bleed panels —— */
    .panel-img {
      display: block;
      width: 100%;
      height: auto;
      vertical-align: middle;
    }
    .panel-section {
      margin: 0;
      line-height: 0;
      background: #08090c;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    @media (max-width: 899px) {
      .panel-section {
        padding: 0.75rem var(--pad-x-touch-r) 0.75rem var(--pad-x-touch);
        line-height: normal;
        overflow: visible;
      }
      .panel-section:has(.hotspot-chip.is-open) {
        position: relative;
        z-index: 30;
      }
      .panel-hotspot-wrap {
        border-radius: 0.45rem;
        overflow: visible;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
      }
      .panel-hotspot-wrap:has(.hotspot-chip.is-open) {
        z-index: 31;
      }
      .panel-hotspot-wrap .panel-img {
        border-radius: 0.45rem;
      }
    }
    #about, #what-i-do, #work, #writing, #speaking, #contact, #metaweb-book {
      scroll-margin-top: calc(var(--nav-h) + 12px);
    }
    .site-footer {
      padding-top: 2.5rem;
      padding-right: var(--pad-x-touch-r);
      padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
      padding-left: var(--pad-x-touch);
      text-align: center;
      background: #060709;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-size: 0.9rem;
    }
    .site-footer h2 {
      margin: 0 0 0.5rem;
      color: var(--text);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }
    .site-footer a {
      color: var(--accent);
    }

    /* —— Contact form —— */
    .contact-wrap {
      max-width: 28rem;
      margin: 1.5rem auto 0;
      text-align: left;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-form label {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .contact-form input,
    .contact-form textarea {
      font-family: var(--font);
      font-size: 0.95rem;
      line-height: 1.45;
      padding: 0.65rem 0.75rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      width: 100%;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: 2px solid var(--accent);
      outline-offset: 0;
      border-color: rgba(76, 231, 255, 0.4);
    }
    .contact-form textarea {
      min-height: 8rem;
      resize: vertical;
    }
    .contact-form .btn {
      align-self: flex-start;
      margin-top: 0.25rem;
    }
    .contact-form .btn:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none;
    }
    .hp-field {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .form-status {
      font-size: 0.9rem;
      margin: 0.5rem 0 0;
      min-height: 1.4em;
    }
    .form-status.is-error {
      color: #f8a0a0;
    }
    .form-status.is-ok {
      color: var(--accent);
    }
    .form-hint {
      margin: 0.2rem 0 0;
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      text-transform: none;
      color: var(--muted);
      line-height: 1.35;
    }
    .label-optional,
    .label-required {
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: none;
      color: rgba(255, 255, 255, 0.45);
    }

    /* —— Image hotspots (percent-based, scales with full-bleed panels) —— */
    .panel-hotspot-wrap {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: var(--panel-ar-w, 3) / var(--panel-ar-h, 2);
      line-height: 0;
      overflow: visible;
    }
    .panel-hotspot-wrap .panel-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      display: block;
      border-radius: 0.35rem;
    }
    @media (min-width: 900px) {
      .panel-hotspot-wrap .panel-img {
        border-radius: 0;
      }
    }
    .hotspot-chip {
      position: absolute;
      z-index: 2;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: 0.35rem;
    }
    .hotspot-chip:focus {
      outline: none;
    }
    .hotspot-chip:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .hotspot-ring {
      display: block;
      position: absolute;
      inset: 0;
      border-radius: 0.35rem;
      border: 2px solid rgba(76, 231, 255, 0.55);
      background: rgba(76, 231, 255, 0.06);
      opacity: 0;
      transition:
        opacity 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
      pointer-events: none;
    }
    @media (hover: hover) {
      .hotspot-chip:hover .hotspot-ring {
        opacity: 1;
        box-shadow: 0 0 24px rgba(76, 231, 255, 0.22);
      }
    }
    .hotspot-chip.is-open .hotspot-ring {
      opacity: 1;
      box-shadow: 0 0 28px rgba(76, 231, 255, 0.3);
    }
    .hotspot-chip.is-open {
      z-index: 10;
    }
    .hotspot-pop {
      position: absolute;
      z-index: 20;
      min-width: 10.5rem;
      max-width: 15rem;
      padding: 0.65rem 0.75rem;
      border-radius: 0.4rem;
      font-size: 0.8125rem;
      line-height: 1.45;
      font-weight: 500;
      text-align: left;
      letter-spacing: 0;
      text-transform: none;
      color: rgba(255, 255, 255, 0.95);
      background: rgba(8, 10, 14, 0.92);
      border: 1px solid rgba(76, 231, 255, 0.25);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
      pointer-events: none;
      opacity: 0;
      transform: translateX(-50%) translateY(6px);
      transition:
        opacity 0.22s ease,
        transform 0.22s ease;
    }
    .hotspot-pop strong {
      display: block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.35rem;
    }
    .hotspot-pop--above {
      left: 50%;
      bottom: calc(100% + 10px);
      transform: translateX(-50%) translateY(6px);
    }
    .hotspot-pop--below {
      left: 50%;
      top: calc(100% + 10px);
      transform: translateX(-50%) translateY(-6px);
    }
    @media (hover: hover) {
      .hotspot-chip:hover .hotspot-pop,
      .hotspot-chip:focus-visible .hotspot-pop {
        opacity: 1;
      }
      .hotspot-chip:hover .hotspot-pop--above,
      .hotspot-chip:focus-visible .hotspot-pop--above {
        transform: translateX(-50%) translateY(0);
      }
      .hotspot-chip:hover .hotspot-pop--below,
      .hotspot-chip:focus-visible .hotspot-pop--below {
        transform: translateX(-50%) translateY(0);
      }
    }
    .hotspot-chip.is-open .hotspot-pop {
      opacity: 1;
      pointer-events: auto;
    }
    .hotspot-chip.is-open .hotspot-pop--above {
      transform: translateX(-50%) translateY(0);
    }
    .hotspot-chip.is-open .hotspot-pop--below {
      transform: translateX(-50%) translateY(0);
    }
    /* Mobile: JS pins pop to bottom of panel (fixed); high z-index alone cannot beat overflow:hidden */
    @media (max-width: 899px) {
      .hotspot-pop.is-mobile-placed {
        position: fixed;
        z-index: 1000;
        left: var(--hotspot-pop-left, 1rem);
        width: var(--hotspot-pop-width, auto);
        right: auto;
        top: var(--hotspot-pop-top, auto);
        bottom: auto;
        min-width: 0;
        max-width: none;
        transform: none;
      }
      .hotspot-pop--above,
      .hotspot-pop--below {
        left: var(--hotspot-pop-left, 1rem);
        right: auto;
        bottom: auto;
        top: var(--hotspot-pop-top, auto);
      }
    }

    /* —— Inner pages (Meta-Layer, Noosphere, etc.) —— */
    .page-image-panel {
      border-top: none;
      width: 100%;
      height: 100svh;
      max-height: 100svh;
      overflow: hidden;
      background: #08090c;
      line-height: 0;
    }
    .page-image-panel .panel-img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    @media (max-width: 899px) {
      .panel-section.page-image-panel {
        padding: 0;
      }
    }
    .page-hero {
      background: #08090c;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .page-hero-inner {
      width: 100%;
      max-width: var(--panel-max);
      margin: 0 auto;
      padding: clamp(2rem, 5vw, 3rem) var(--pad-x-touch);
      padding-right: var(--pad-x-touch-r);
    }
    @media (min-width: 900px) {
      .page-hero-inner {
        padding-left: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-right, 0px));
      }
    }
    .page-hero .hero-title {
      max-width: 18ch;
    }
    .page-hero .lede {
      margin: 0 0 1.75rem;
      max-width: 42rem;
      font-size: clamp(0.9375rem, 1.6vw, 1.05rem);
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.68;
    }
    .page-hero .lede p {
      margin: 0 0 1rem;
    }
    .page-hero .lede p:last-child {
      margin-bottom: 0;
    }
    .content-section {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background: #08090c;
    }
    .content-section--alt {
      background: #060709;
    }
    .content-inner {
      max-width: 42rem;
      margin: 0 auto;
      padding: clamp(2.25rem, 5vw, 3.5rem) var(--pad-x-touch);
      padding-right: var(--pad-x-touch-r);
    }
    @media (min-width: 900px) {
      .content-inner {
        padding-left: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(1rem, 3vw, 1.75rem), env(safe-area-inset-right, 0px));
      }
    }
    .content-inner--wide {
      max-width: var(--panel-max);
    }
    .section-eyebrow {
      margin: 0 0 0.75rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .section-title {
      margin: 0 0 1.25rem;
      font-size: clamp(1.35rem, 3vw, 1.85rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #fff;
      text-wrap: balance;
    }
    .prose {
      color: rgba(240, 242, 245, 0.9);
      font-size: 0.98rem;
      line-height: 1.7;
    }
    .prose p {
      margin: 0 0 1rem;
    }
    .prose p:last-child {
      margin-bottom: 0;
    }
    .prose ul {
      margin: 0 0 1rem;
      padding-left: 1.25rem;
    }
    .prose li {
      margin-bottom: 0.45rem;
    }
    .prose li::marker {
      color: var(--accent);
    }
    .prose .section-cta {
      margin-top: 1.5rem;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    @media (min-width: 640px) {
      .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .info-card {
      padding: 1.25rem 1.35rem;
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .info-card h3 {
      margin: 0 0 0.65rem;
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .info-card p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--muted);
    }
    .research-list {
      display: grid;
      gap: 0.75rem;
      margin-top: 1.25rem;
      list-style: none;
      padding: 0;
    }
    .research-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 1rem;
      border-radius: 0.45rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
      font-weight: 500;
      transition: border-color 0.15s, background 0.15s;
    }
    .research-list a:hover {
      color: var(--accent);
      border-color: rgba(76, 231, 255, 0.35);
      background: rgba(76, 231, 255, 0.08);
    }
    .research-list a span {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .final-cta {
      text-align: center;
      padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x-touch);
      padding-right: var(--pad-x-touch-r);
      background: linear-gradient(180deg, #08090c 0%, #050608 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .final-cta .section-title {
      max-width: 28rem;
      margin-left: auto;
      margin-right: auto;
    }
    .final-cta .cta-row {
      justify-content: center;
      margin-top: 1.5rem;
    }

    /* —— Rich hotspot overlays (homepage panels) —— */
    .hotspot-pop--rich {
      min-width: 12rem;
      max-width: 18rem;
    }
    .hotspot-pop--rich .hotspot-thesis {
      display: block;
      margin-bottom: 0.65rem;
      font-size: 0.8125rem;
      font-weight: 500;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.95);
    }
    .hotspot-pop--rich .hotspot-detail-title {
      display: block;
      margin: 0.5rem 0 0.35rem;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
    }
    .hotspot-pop--rich ul {
      margin: 0;
      padding-left: 1rem;
      font-size: 0.75rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.82);
    }
    .hotspot-pop--rich li {
      margin-bottom: 0.2rem;
    }

    /* —— Publication / editorial cards —— */
    .pub-card {
      padding: clamp(1.5rem, 3vw, 2rem);
      border-radius: 0.55rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .pub-card + .pub-card {
      margin-top: 1.25rem;
    }
    .pub-card h3 {
      margin: 0 0 0.35rem;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
    }
    .pub-card .pub-subtitle {
      margin: 0 0 1rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .essay-grid {
      display: grid;
      gap: 0.85rem;
      margin-top: 1.25rem;
    }
    @media (min-width: 640px) {
      .essay-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .essay-item {
      display: block;
      padding: 1rem 1.1rem;
      border-radius: 0.45rem;
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(255, 255, 255, 0.07);
      transition: border-color 0.15s, background 0.15s;
    }
    .essay-item:hover {
      border-color: rgba(76, 231, 255, 0.3);
      background: rgba(76, 231, 255, 0.06);
    }
    .essay-item h4 {
      margin: 0 0 0.35rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: #fff;
    }
    .essay-item p {
      margin: 0;
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.45;
    }
    .theme-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.25rem;
      list-style: none;
      padding: 0;
    }
    .theme-tags a {
      display: inline-flex;
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: color 0.15s, border-color 0.15s, background 0.15s;
    }
    .theme-tags a:hover {
      color: var(--accent);
      border-color: rgba(76, 231, 255, 0.35);
      background: rgba(76, 231, 255, 0.1);
    }

    /* —— Monument showcase —— */
    .monument-split {
      display: grid;
      gap: 1.5rem;
      align-items: start;
    }
    @media (min-width: 768px) {
      .monument-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(1.5rem, 3vw, 2.5rem);
        align-items: stretch;
      }
    }
    .monument-split-copy {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .monument-split-copy .prose {
      margin-bottom: 1.25rem;
    }
    .monument-split-copy .monument-meta {
      margin-top: 0;
    }
    .monument-split-cta {
      margin-top: 1.25rem;
    }
    .monument-split-visual {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 0.55rem;
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    @media (min-width: 768px) {
      .monument-split-visual {
        align-self: start;
      }
    }
    .monument-visual {
      padding: 1.25rem;
      border-radius: 0.55rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
    }
    .monument-visual img {
      display: block;
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      border-radius: 0.35rem;
    }
    .monument-ordinal-frame {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 0.55rem;
      background: #000;
    }
    .monument-meta {
      display: grid;
      gap: 0.65rem;
      margin: 0;
      padding: 1.25rem;
      border-radius: 0.55rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      list-style: none;
    }
    .monument-meta li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.82rem;
      padding-bottom: 0.55rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .monument-meta li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .monument-meta span:first-child {
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.65rem;
      color: var(--muted);
    }
    .monument-meta span:last-child {
      color: #fff;
      text-align: right;
    }

    /* —— Focus / engagement lists —— */
    .focus-list {
      display: grid;
      gap: 1rem;
      margin-top: 1.25rem;
    }
    .focus-item {
      padding: 1.15rem 1.25rem;
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .focus-item h3 {
      margin: 0 0 0.45rem;
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
    }
    .focus-item p {
      margin: 0;
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--muted);
    }
    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
      list-style: none;
      padding: 0;
    }
    .tag-list li {
      padding: 0.4rem 0.7rem;
      border-radius: 0.35rem;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* —— Participate action cards —— */
    .action-cards {
      display: grid;
      gap: 1rem;
      margin-top: 1.25rem;
    }
    @media (min-width: 640px) {
      .action-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .action-card {
      padding: 1.35rem;
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .action-card h3 {
      margin: 0 0 0.65rem;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }
    .action-card p {
      margin: 0 0 1rem;
      font-size: 0.9rem;
      line-height: 1.55;
      color: var(--muted);
    }

    /* —— Footer conversion layer —— */
    .footer-conversion {
      padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad-x-touch);
      padding-right: var(--pad-x-touch-r);
      background: #07080b;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
    }
    .footer-conversion-inner {
      max-width: var(--panel-max);
      margin: 0 auto;
    }
    .footer-conversion h2 {
      margin: 0 0 0.75rem;
      font-size: clamp(1.35rem, 3vw, 1.75rem);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
    }
    .footer-conversion .footer-intro {
      margin: 0 auto 2rem;
      max-width: 36rem;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--muted);
    }
    .signal-grid {
      display: grid;
      gap: 1rem;
      margin-bottom: 2rem;
      text-align: left;
    }
    @media (min-width: 768px) {
      .signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    .signal-card {
      padding: 1.35rem;
      border-radius: 0.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .signal-card h3 {
      margin: 0 0 0.35rem;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }
    .signal-card .signal-label {
      margin: 0 0 0.85rem;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .footer-collab {
      max-width: 32rem;
      margin: 0 auto;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-collab p {
      margin: 0 0 1rem;
      font-size: 0.92rem;
      line-height: 1.6;
      color: var(--muted);
    }

    .contact-form select {
      font-family: var(--font);
      font-size: 0.95rem;
      line-height: 1.45;
      padding: 0.65rem 0.75rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      width: 100%;
    }
    .contact-form select:focus {
      outline: 2px solid var(--accent);
      outline-offset: 0;
      border-color: rgba(76, 231, 255, 0.4);
    }
