:root{
    --shadow: rgba(0,0,0,0.72);
    --white: rgba(255,255,255,0.94);
    --whiteDim: rgba(255,255,255,0.86);
    --whiteFaint: rgba(255,255,255,0.58);
    --panel: rgba(0,0,0,0.34);
    --panelBorder: rgba(255,255,255,0.10);
    --gold: rgba(236,174,82,0.96);
    --warmTitle: rgba(241,184,96,0.96);
    --heroTop: clamp(124px, 12vh, 144px);
    --panelTop: clamp(256px, calc(21vh + 60px), 286px);
    --panelBottom: 138px;
    --panelHeight: clamp(480px, calc(100dvh - var(--panelTop) - var(--panelBottom)), 800px);
    --panelWidth: clamp(940px, calc(var(--panelHeight) * 1.5), 1220px);
  }

  html, body{
    height: 100%;
    margin: 0;
    background: #000;
    overflow: hidden;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  }

  .stage{
    position: fixed;
    inset: 0;
    background: #000;
  }

  .bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    filter: brightness(1.05) contrast(1.12) saturate(0.92);
    transition: opacity 4200ms ease;
    transform: scale(1);
    transform-origin: center center;
    will-change: opacity, transform;
  }

  .stage.ready .bg{
    opacity: 0.62;
    animation: slowDepthZoom 52s ease-in-out infinite alternate;
  }

  .stage.bg-swapping .bg{
    opacity: 0;
  }

  @keyframes slowDepthZoom{
    0%{
      transform: scale(1);
    }
    50%{
      transform: scale(1.25);
    }
    100%{
      transform: scale(0.75);
    }
  }

  .overlay{
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 4200ms ease;
    will-change: opacity;
    background:
      radial-gradient(1000px 640px at 50% 42%, rgba(0,0,0,0.02), rgba(0,0,0,0.10)),
      linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.62));
  }

  .stage.ready .overlay{
    opacity: 0.30;
  }

  .mobile-menu-button,
  .footer-menu-button{
    display: none;
  }

  .mobile-menu-button span{
    display: block;
  }

  .site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 108px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr) auto;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 38px rgba(0,0,0,0.44);
  }

  .brand-logo{
    width: 294px;
    height: 66px;
    display: grid;
    place-items: center;
    justify-self: start;
    border-radius: 12px;
    border: 1px solid rgba(229,190,106,0.18);
    background: rgba(0,0,0,0.18);
    text-decoration: none;
    overflow: visible;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .brand-logo:hover{
    transform: scale(1.06);
    border-color: rgba(229,190,106,0.62);
    box-shadow:
      0 0 18px rgba(229,190,106,0.18),
      0 0 42px rgba(229,190,106,0.12);
  }

  .brand-logo img{
    width: 286px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .tabs{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 1800ms ease, transform 1800ms ease;
    transition-delay: 6400ms;
  }

  .stage.ready .tabs{
    opacity: 1;
    transform: translateY(0);
  }

  .tab,
  .chain-link,
  .forum-login-link,
  .forum-access-link{
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(8,8,8,0.38);
    color: rgba(255,255,255,0.82);
    border-radius: 999px;
    padding: 12px 15px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition:
      color 220ms ease,
      border-color 220ms ease,
      background 220ms ease,
      transform 220ms ease,
      box-shadow 220ms ease,
      filter 220ms ease;
  }

  .header-actions{
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
  }

  .status-pill-wrap{
    position: relative;
    order: 5;
  }

  .site-status-pill{
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(236,174,82,0.62);
    border-radius: 999px;
    background: rgba(236,174,82,0.12);
    color: rgba(255,255,255,0.98);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(14px);
    box-shadow:
      0 0 16px rgba(236,174,82,0.26),
      0 0 42px rgba(236,116,38,0.14),
      inset 0 1px 0 rgba(255,255,255,0.08);
    filter: drop-shadow(0 0 10px rgba(236,174,82,0.22));
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .site-status-pill::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(83,255,154,0.96);
    box-shadow:
      0 0 10px rgba(83,255,154,0.62),
      0 0 22px rgba(83,255,154,0.30);
  }

  .site-status-pill:hover,
  .site-status-pill[aria-expanded="true"]{
    transform: translateY(-1px) scale(1.08);
    border-color: rgba(236,174,82,0.72);
    background: rgba(236,174,82,0.16);
    box-shadow:
      0 0 18px rgba(236,174,82,0.34),
      0 0 48px rgba(236,116,38,0.18),
      inset 0 1px 0 rgba(255,255,255,0.09);
  }

  .site-status-panel{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1305;
    width: 310px;
    padding: 14px;
    box-sizing: border-box;
    border: 1px solid rgba(236,174,82,0.56);
    border-radius: 16px;
    background: rgba(5,5,5,0.96);
    color: rgba(255,255,255,0.82);
    text-align: left;
    backdrop-filter: blur(18px);
    box-shadow:
      0 20px 54px rgba(0,0,0,0.66),
      0 0 28px rgba(236,174,82,0.20),
      0 0 56px rgba(236,116,38,0.12),
      inset 0 1px 0 rgba(255,255,255,0.07);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 200ms ease;
  }

  .status-pill-wrap.open .site-status-panel{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-status-panel h2{
    margin: 0 0 10px;
    color: rgba(241,184,96,0.98);
    font-family: "Cinzel", Georgia, serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .status-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    line-height: 1.35;
  }

  .status-row strong{
    color: rgba(83,255,154,0.92);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .status-note{
    margin: 12px 0 0;
    color: rgba(255,255,255,0.64);
    font-size: 11px;
    line-height: 1.45;
  }

  .chain-link,
  .forum-login-link,
  .forum-access-link{
    width: auto;
    height: 60px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    text-decoration: none;
  }

  .chain-link{
    order: 6;
  }

  .forum-access-link{
    order: 1;
  }

  .forum-login-link{
    order: 4;
  }

  .forum-access-link[href="notifications.html"]{
    order: 3;
  }

  .forum-access-link[href="private-messages.html"]{
    order: 2;
  }

  .forum-access-link[href="register.html"]{
    order: 1;
  }

  .deep-dive-menu{
    position: fixed;
    top: 148px;
    right: 28px;
    z-index: 1202;
  }

  .deep-dive-toggle{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    min-height: 46px;
    padding: 0 42px 0 20px;
    border: 1px solid rgba(236,174,82,0.62);
    border-radius: 999px;
    background: rgba(236,174,82,0.12);
    color: rgba(255,255,255,0.98);
    font: 900 12px/1 Arial, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow:
      0 0 16px rgba(236,174,82,0.26),
      0 0 42px rgba(236,116,38,0.14),
      inset 0 1px 0 rgba(255,255,255,0.08);
    filter: drop-shadow(0 0 10px rgba(236,174,82,0.22));
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
  }

  .deep-dive-toggle::before{
    content: "Section Navigation";
  }

  .deep-dive-toggle::after{
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,0.92);
    border-bottom: 2px solid rgba(255,255,255,0.92);
    transform: translateY(-68%) rotate(45deg);
    pointer-events: none;
  }

  .deep-dive-toggle:hover,
  .deep-dive-toggle[aria-expanded="true"]{
    transform: translateY(-1px) scale(1.04);
    border-color: rgba(236,174,82,0.72);
    background: rgba(236,174,82,0.16);
    box-shadow:
      0 0 18px rgba(236,174,82,0.34),
      0 0 48px rgba(236,116,38,0.18),
      inset 0 1px 0 rgba(255,255,255,0.09);
  }

  .deep-dive-toggle img{
    display: none;
  }

  .deep-dive-panel{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1305;
    width: 230px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid rgba(236,174,82,0.56);
    border-radius: 16px;
    background: rgba(5,5,5,0.96);
    color: rgba(255,255,255,0.82);
    text-align: left;
    backdrop-filter: blur(18px);
    box-shadow:
      0 20px 54px rgba(0,0,0,0.66),
      0 0 28px rgba(236,174,82,0.20),
      0 0 56px rgba(236,116,38,0.12),
      inset 0 1px 0 rgba(255,255,255,0.07);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 200ms ease;
  }

  .deep-dive-menu.open .deep-dive-panel{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .deep-dive-panel h2{
    margin: 0 0 8px;
    color: rgba(241,184,96,0.98);
    font-family: "Cinzel", Georgia, serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .deep-dive-panel a{
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
    color: rgba(255,255,255,0.84);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .deep-dive-panel a:hover,
  .deep-dive-panel a:focus-visible{
    outline: none;
    background: rgba(236,174,82,0.14);
    color: rgba(255,255,255,0.98);
    box-shadow: inset 0 0 0 1px rgba(236,174,82,0.24);
  }

  .chain-link img{
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .forum-login-link img,
  .forum-access-link img{
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 7px 12px rgba(0,0,0,0.44));
  }

  .tab:hover,
  .tab.active{
    color: rgba(255,255,255,0.98);
    border-color: rgba(236,174,82,0.62);
    background: rgba(236,174,82,0.12);
    transform: translateY(-1px) scale(1.08);
    box-shadow:
      0 0 16px rgba(236,174,82,0.26),
      0 0 42px rgba(236,116,38,0.14),
      inset 0 1px 0 rgba(255,255,255,0.08);
    filter: drop-shadow(0 0 10px rgba(236,174,82,0.22));
  }

  .chain-link:hover,
  .forum-login-link:hover,
  .forum-access-link:hover{
    color: rgba(255,255,255,0.98);
    border-color: transparent;
    background: transparent;
    transform: scale(1.06);
    box-shadow: none;
    filter: drop-shadow(0 0 10px rgba(229,190,106,0.28));
  }

  .content{
    position: relative;
    height: 100%;
    text-align: center;
    padding: 0;
    text-shadow: 0 14px 44px var(--shadow);
    color: var(--white);
  }

  .inner{
    position: static;
    transform: none;
    max-width: none;
    width: 100%;
  }

  .home-page{
    --heroTop: 112px;
    --panelTop: clamp(260px, calc(20vh + 60px), 280px);
  }

  .quick-icon-nav{
    position: fixed;
    top: var(--heroTop);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    z-index: 1100;
    width: min(1320px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
    align-items: center;
    gap: clamp(12px, 1.8vw, 28px);
    padding: 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 0;
    transition: opacity 900ms ease, transform 900ms ease;
  }

  .stage.ready .quick-icon-nav{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .quick-row-side{
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .quick-row-side-left{
    justify-content: flex-end;
  }

  .quick-row-side-right{
    justify-content: flex-start;
  }

  .quick-icon-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.45vw, 24px);
  }

  .quick-nav-link{
    position: relative;
    width: 136px;
    height: 118px;
    display: grid;
    place-items: center;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,0.74);
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    transform-origin: center center;
    transition: transform 420ms cubic-bezier(.18, 1.35, .32, 1), filter 260ms ease, color 220ms ease;
  }

  .quick-nav-link:hover,
  .quick-nav-link.active{
    transform: translateY(-6px) scale(1.15);
    color: rgba(255,255,255,0.94);
    filter: drop-shadow(0 0 22px rgba(236,174,82,0.42));
  }

  .quick-nav-link img{
    width: 104px;
    height: 104px;
    max-width: 104px;
    max-height: 104px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 7px 10px rgba(0,0,0,0.42));
  }

  .quick-tooltip{
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    z-index: 35;
    width: 220px;
    padding: 12px 14px 13px;
    box-sizing: border-box;
    border: 1px solid rgba(236,132,38,0.78);
    border-radius: 10px;
    background: rgba(3,3,3,0.96);
    color: rgba(255,255,255,0.88);
    box-shadow:
      0 16px 34px rgba(0,0,0,0.62),
      0 0 24px rgba(236,116,38,0.34),
      0 0 52px rgba(236,174,82,0.14),
      inset 0 1px 0 rgba(255,255,255,0.07);
    pointer-events: none;
    text-align: left;
    transform: translateX(-50%) translateY(-8px) scale(0.96);
    transform-origin: center top;
    opacity: 0;
    transition: opacity 180ms ease, transform 260ms cubic-bezier(.18, 1.35, .32, 1);
  }

  .quick-tooltip::before{
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(236,132,38,0.78);
    border-top: 1px solid rgba(236,132,38,0.78);
    background: rgba(3,3,3,0.96);
    pointer-events: none;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -5px -5px 14px rgba(236,116,38,0.16);
  }

  .quick-tooltip-title,
  .quick-tooltip-text{
    position: relative;
    z-index: 1;
    display: block;
  }

  .quick-tooltip-title{
    margin-bottom: 5px;
    color: rgba(241,184,96,0.96);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .quick-tooltip-text{
    color: rgba(255,255,255,0.84);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
  }

  .quick-nav-link:hover .quick-tooltip,
  .quick-nav-link:focus-visible .quick-tooltip{
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .quick-modal-layer{
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: grid;
    place-items: center;
    padding: 120px 24px 92px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .quick-modal-layer.open{
    opacity: 1;
    pointer-events: auto;
  }

  .quick-modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.58);
    backdrop-filter: blur(8px);
  }

  .quick-modal{
    position: relative;
    width: min(var(--panelWidth), calc(100vw - 48px));
    height: min(var(--panelHeight), calc(100dvh - 170px));
    max-height: min(var(--panelHeight), calc(100dvh - 170px));
    display: none;
    overflow: auto;
    padding: 26px;
    box-sizing: border-box;
    border: 1px solid rgba(229,190,106,0.24);
    border-radius: 18px;
    background:
      radial-gradient(circle at top right, rgba(149,59,24,0.34), transparent 38%),
      rgba(6,6,6,0.78);
    box-shadow:
      0 26px 90px rgba(0,0,0,0.70),
      inset 0 1px 0 rgba(255,255,255,0.05);
    scrollbar-width: thin;
    scrollbar-color: rgba(229,190,106,0.46) rgba(0,0,0,0.34);
  }

  .quick-modal::-webkit-scrollbar{
    width: 8px;
  }

  .quick-modal::-webkit-scrollbar-track{
    background: rgba(0,0,0,0.42);
    border-radius: 999px;
  }

  .quick-modal::-webkit-scrollbar-thumb{
    background:
      linear-gradient(180deg, rgba(229,190,106,0.58), rgba(126,82,34,0.52));
    border: 1px solid rgba(0,0,0,0.36);
    border-radius: 999px;
  }

  .quick-modal::-webkit-scrollbar-thumb:hover{
    background:
      linear-gradient(180deg, rgba(241,184,96,0.72), rgba(160,98,38,0.64));
  }

  .quick-modal::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background:
      radial-gradient(circle at top right, rgba(149,59,24,0.18), transparent 42%),
      linear-gradient(180deg, rgba(0,0,0,0.34), rgba(0,0,0,0.68));
    pointer-events: none;
  }

  .quick-modal > :not(.quick-modal-video){
    position: relative;
    z-index: 2;
  }

  .quick-modal-video{
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: inherit;
    background: #000;
    opacity: 0.68;
    pointer-events: none;
  }

  .quick-modal.active{
    display: block;
  }

  .quick-modal-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.84);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
  }

  .quick-modal-title-row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0 52px 22px 0;
    min-height: 56px;
  }

  .quick-modal-title-row img{
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.48));
  }

  .quick-modal h2{
    margin: 0;
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 0.06em;
    text-align: left;
  }

  .quick-facts{
    display: grid;
    gap: 10px;
  }

  .quick-facts p{
    margin: 0;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    background: rgba(255,255,255,0.045);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  }

  .quick-facts span{
    color: rgba(229,190,106,0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
  }

  .quick-facts strong{
    min-width: 0;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
  }

  .quick-copy{
    border: 1px solid rgba(229,190,106,0.26);
    border-radius: 999px;
    background: rgba(229,190,106,0.10);
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  .quick-modal-actions{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .quick-modal-actions a{
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    padding: 9px 14px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .quick-modal-actions a:hover,
  .quick-copy:hover,
  .quick-modal-close:hover{
    background: rgba(229,190,106,0.14);
    border-color: rgba(229,190,106,0.44);
    color: rgba(255,255,255,0.96);
  }

  .hero-copy{
    position: fixed;
    top: var(--heroTop);
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, calc(100vw - 40px));
    z-index: 3;
    }

  .title{
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1600ms ease, transform 1600ms ease;
    will-change: opacity, transform;
  }

  .divider,
  .line2,
  .line3{
    display: none;
  }

  .panel{
    opacity: 0;
    transition: opacity 900ms ease;
    will-change: opacity;
  }

  .stage.ready .title{
    opacity: 1;
    transform: translateY(0);
  }

  .stage.pane-ready .panel{
    opacity: 1;
  }

  .title{ transition-delay: 1600ms; }
  .panel{ transition-delay: 0ms; }

  h1{
    margin: 0 0 18px;
    font-weight: 300;
    letter-spacing: 0.22em;
    font-size: clamp(30px, 4vw, 54px);
  }

  .site-title{
    margin: 0 0 6px;
    font-family: "Cinzel", "Bookman Old Style", "Palatino Linotype", Georgia, serif;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-align: center;
    color: var(--warmTitle);
    text-shadow:
      0 10px 28px rgba(0,0,0,0.82),
      0 0 24px rgba(236,174,82,0.14);
  }

  .divider{
    width: 64px;
    height: 1px;
    background: rgba(255,255,255,0.24);
    margin: 8px auto 8px;
  }

  .line2, .line3{
    margin: 0;
    font-weight: 300;
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: 0.06em;
    line-height: 1.35;
    color: var(--whiteDim);
  }

  .line3{
    color: var(--gold);
  }

  .panel{
    display: none;
    position: fixed;
    top: var(--panelTop);
    bottom: var(--panelBottom);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 20px;

    width: var(--panelWidth);
    max-width: calc(100vw - 96px);

    height: var(--panelHeight);
    max-height: var(--panelHeight);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    background: rgba(0,0,0,0.48);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.30);

    box-sizing: border-box;
    z-index: 2;
    }

  .panel::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(760px 280px at 50% 18%, rgba(0,0,0,0.08), rgba(0,0,0,0.30)),
      linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.12) 52%, rgba(0,0,0,0.08));
  }

  .panel-video{
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
    pointer-events: none;
  }

  .panel::-webkit-scrollbar{
    width: 8px;
  }

  .panel::-webkit-scrollbar-track{
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
  }

  .panel::-webkit-scrollbar-thumb{
    background: rgba(229,190,106,0.42);
    border-radius: 999px;
  }

  .panel.visible{
    display: block;
  }

  .pane{
    display: none;
    position: relative;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0;
    color: rgba(255,255,255,0.80);
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.55;
    letter-spacing: 0.025em;
    margin: 0 auto;
    max-width: 100%;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(229,190,106,0.34) rgba(255,255,255,0.035);
    }

  .pane::after{
    content: "";
    display: block;
    height: 76px;
  }

  .pane p{
    margin: 0 0 12px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background:
      linear-gradient(145deg, rgba(18,18,18,0.70), rgba(0,0,0,0.48)),
      rgba(0,0,0,0.38);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.045),
      0 14px 34px rgba(0,0,0,0.22);
  }

  .pane p:last-child{
    margin-bottom: 0;
  }

  .token-grid p,
  .chart-panel p,
  .buzz-card p,
  .faq-list p,
  .dev-card p,
  .pane .cta-row p{
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pane.active{
    display: block;
  }

  .pane strong{
    color: rgba(255,255,255,0.94);
    font-weight: 500;
  }

  .pane-visual{
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 18px 46px rgba(0,0,0,0.34);
  }

  .pane-visual img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .about-pane{
    text-align: left;
  }

  .about-pane h2{
    margin: 18px 0 8px;
    color: var(--warmTitle);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(16px, 1.4vw, 21px);
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .about-pane ul{
    margin: 0 0 14px 20px;
    padding: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
  }

  .about-pane li{
    margin: 0 0 6px;
  }

  .forum-embed{
    position: relative;
    width: 100%;
    min-height: clamp(300px, 42vh, 560px);
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(236,174,82,0.20);
    border-radius: 14px;
    background: rgba(0,0,0,0.72);
    box-shadow:
      0 18px 58px rgba(0,0,0,0.38),
      inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .forum-embed iframe{
    display: block;
    width: 100%;
    height: clamp(300px, 42vh, 560px);
    border: 0;
    background: #050505;
  }

  .forum-embed-pane{
    padding-right: 0;
  }

  .forum-embed-pane > .pane-visual,
  .forum-embed-pane .pane-visual{
    display: none !important;
  }

  .forum-embed-pane .forum-embed{
    height: calc(100% - 4px);
    min-height: 0;
    margin: 0;
  }

  .forum-embed-pane .forum-embed iframe{
    height: 100%;
    min-height: 0;
  }

  .forum-embed-pane::after{
    display: none;
  }

  .pane::-webkit-scrollbar{
    width: 6px;
  }

  .pane::-webkit-scrollbar-track{
    margin: 34px 0;
    background: rgba(255,255,255,0.035);
    border-radius: 999px;
  }

  .pane::-webkit-scrollbar-thumb{
    background:
      linear-gradient(
        to bottom,
        transparent 0,
        transparent 42%,
        rgba(229,190,106,0.40) 42%,
        rgba(229,190,106,0.40) 58%,
        transparent 58%,
        transparent 100%
      );
    border: 2px solid rgba(0,0,0,0.34);
    border-radius: 999px;
  }

  .pane::-webkit-scrollbar-thumb:hover{
    background:
      linear-gradient(
        to bottom,
        transparent 0,
        transparent 40%,
        rgba(229,190,106,0.62) 40%,
        rgba(229,190,106,0.62) 60%,
        transparent 60%,
        transparent 100%
      );
  }

  .token-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    text-align: left;
    max-width: 620px;
    margin: 0 auto;
  }

  .token-grid span{
    color: var(--whiteFaint);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  .token-grid b{
    color: rgba(255,255,255,0.86);
    font-weight: 400;
    word-break: break-word;
  }

  .token-control-row{
    margin: 0 auto 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 10px;
  }

  .chart-panel{
    display: none;
    margin: 14px auto 0;
    padding: 18px;
    max-width: 720px;
    min-height: 160px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(0,0,0,0.30);
    box-sizing: border-box;
    text-align: left;
  }

  .chart-panel.visible{
    display: block;
  }

  .chart-panel h3{
    margin: 0 0 8px;
    color: var(--warmTitle);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .chart-panel p{
    margin: 0 0 10px;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.6;
  }

  .chart-frame{
    margin-top: 12px;
    min-height: 92px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(229,190,106,0.30);
    border-radius: 12px;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .buzz-list{
    display: grid;
    gap: 14px;
    text-align: left;
  }

  .buzz-card{
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(0,0,0,0.30);
  }

  .buzz-card img{
    width: 116px;
    height: 82px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(229,190,106,0.18);
  }

  .buzz-card h3{
    margin: 0 0 8px;
    color: var(--warmTitle);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.25;
  }

  .buzz-card p{
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.65;
  }

  .inline-link{
    color: rgba(229,190,106,0.92);
    text-decoration: none;
    transition: opacity 180ms ease, color 180ms ease;
  }

  .inline-link:hover{
    opacity: 0.82;
    color: rgba(245,215,150,0.96);
  }

  .cta-row{
    position: sticky;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 0;
    padding: 12px 10px 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background:
      linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.76) 28%, rgba(0,0,0,0.92));
    backdrop-filter: blur(10px);
  }

  .pill-link,
  .copy-btn{
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .pill-link:hover,
  .copy-btn:hover{
    background: rgba(229,190,106,0.14);
    border-color: rgba(229,190,106,0.44);
    color: rgba(255,255,255,0.96);
  }

  .ca-box{
    margin: 18px auto 0;
    padding: 10px 12px;
    max-width: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background: rgba(0,0,0,0.22);
  }

  .token-control-row .ca-box{
    margin: 0;
    max-width: none;
    min-width: 0;
    justify-content: flex-start;
  }

  .token-ca-logo{
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(229,190,106,0.26);
    background: rgba(255,255,255,0.05);
    object-fit: cover;
  }

  .token-control-row .pill-link,
  .token-control-row .copy-btn{
    white-space: nowrap;
  }

  .ca-label{
    color: var(--whiteFaint);
    font-size: 11px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  .ca-address{
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    line-height: 1.45;
    word-break: break-all;
  }
  


  .dev-date{
    justify-self: end;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(236,174,82,0.62);
    font-weight: 500;
    opacity: 0.70;
    white-space: nowrap;
    text-align: right;
    transform: translateY(1px);
  }

  .tab:focus-visible,
  .pill-link:focus-visible,
  .copy-btn:focus-visible,
  .brand-logo:focus-visible,
  .chain-link:focus-visible,
  .forum-login-link:focus-visible,
  .forum-access-link:focus-visible,
  .social-icons a:focus-visible,
  .legal-link:focus-visible{
    outline: 2px solid rgba(229,190,106,0.72);
    outline-offset: 3px;
  }

  .site-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 116px;
    z-index: 1000;
    display: grid;
    gap: 8px;
    justify-items: center;
    align-content: center;
    opacity: 1;
    background: rgba(0,0,0,0.92);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -10px 38px rgba(0,0,0,0.44);
  }

  .social-icons{
    width: min(980px, calc(100vw - 320px));
    min-width: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(48px, 5vw, 84px);
  }

  .social-icons a{
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    border: 0;
    transition:
      transform 180ms ease;
  }

  .social-icons a:hover{
    transform: translateY(-2px);
  }

  @media (min-width:1440px){
    :root{
      --heroTop: clamp(124px, 11.8vh, 142px);
      --panelTop: clamp(188px, 18vh, 212px);
      --panelBottom: 146px;
      --panelHeight: clamp(520px, calc(100dvh - var(--panelTop) - var(--panelBottom)), 820px);
      --panelWidth: clamp(1000px, calc(var(--panelHeight) * 1.55), 1260px);
    }

    .site-header{
      grid-template-columns: 340px minmax(0, 1fr) auto;
      padding: 0 38px;
    }

    .tabs{
      gap: clamp(14px, 1.15vw, 22px);
    }

    .tab{
      padding: 13px 19px;
      font-size: 12px;
    }
  }

  .social-icons a.is-disabled{
    opacity: 0.38;
    pointer-events: none;
  }

  .social-icons img{
    width: 34px;
    height: 34px;
    opacity: 0.90;
    filter: invert(1) brightness(2.2);
    transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
  }

  .social-icons a:hover img{
    opacity: 1;
    transform: scale(1.16);
    filter:
      invert(1)
      brightness(2.35)
      sepia(0.35)
      saturate(1.9)
      drop-shadow(0 0 8px rgba(229,190,106,0.52))
      drop-shadow(0 0 18px rgba(236,116,38,0.26));
  }

  .legal-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .legal-link{
    color: rgba(170,170,170,0.62);
    text-decoration: none;
    white-space: nowrap;
  }

  .legal-link:hover{
    color: rgba(229,190,106,0.92);
  }

  .legal-sep{
    color: rgba(160,160,160,0.35);
  }

  .faq-list{
    display: grid;
    gap: 10px;
    text-align: left;
  }

  .faq-list details{
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    padding: 12px 14px;
  }

  .faq-list summary{
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    list-style-position: outside;
  }

  .faq-title{
    color: var(--warmTitle);
    font-size: clamp(15px, 1.25vw, 20px);
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.2;
    min-width: 0;
  }

  .faq-list p{
    margin: 12px 0 0;
    color: rgba(255,255,255,0.76);
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.025em;
  }


  @media (max-width: 980px){
    :root{
    --heroTop: 80px;
    --panelTop: 150px;
    --panelHeight: clamp(368px, calc(100svh - 340px), 510px);
    --panelWidth: calc(100vw - 34px);
    --panelBottom: auto;
    }

    .home-page{
      --heroTop: 80px;
      --panelTop: 150px;
      --panelHeight: clamp(368px, calc(100svh - 340px), 510px);
      --panelWidth: calc(100vw - 34px);
      --panelBottom: auto;
    }

    html, body{
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .stage{
      min-height: 100svh;
    }
    .site-header{
      height: 72px;
      grid-template-columns: minmax(170px, 220px) 1fr 56px;
      padding: 0 12px;
    }

    .brand-logo{
      grid-column: 1;
      grid-row: 1;
    }

    .mobile-menu-button{
      display: grid;
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
    }

    .tabs{
      position: fixed;
      top: 72px;
      left: 0;
      width: 100%;
      display: none;
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 16px;
      box-sizing: border-box;
      background: rgba(0,0,0,0.94);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      opacity: 1;
      transform: none;
      transition: none;
    }

    .site-header.menu-open .tabs{
      display: grid;
      justify-items: center;
    }

    .tab{
      width: min(420px, calc(100vw - 32px));
      justify-self: center;
      justify-content: center;
      text-align: center;
      padding: 12px 16px;
      font-size: 12px;
    }

    .quick-icon-nav{
      display: none;
    }

    .mobile-menu-button,
    .footer-menu-button{
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.82);
      border-radius: 999px;
      cursor: pointer;
    }

    .mobile-menu-button{
      width: 42px;
      height: 38px;
      place-items: center;
      gap: 4px;
      padding: 8px 10px;
    }

    .mobile-menu-button span{
      display: block;
      width: 20px;
      height: 2px;
      background: rgba(255,255,255,0.84);
      border-radius: 999px;
    }

    .header-actions{
      grid-column: 2;
      grid-row: 1;
      justify-self: end;
    }

    .chain-link,
    .forum-login-link,
    .forum-access-link,
    .status-pill-wrap,
    .deep-dive-menu{
      display: none;
    }

    .brand-logo{
      width: 220px;
      height: 52px;
    }

    .brand-logo img{
      width: 212px;
      max-height: 48px;
      height: auto;
    }

    .content{
      padding: 0;
    }

    .inner{
      transform: none;
      width: 100%;
    }

    .hero-copy{
      top: var(--heroTop);
      width: min(860px, calc(100vw - 28px));
    }

    .site-title{
  font-size: clamp(17px, 5vw, 28px);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  line-height: 1;
  white-space: nowrap;
}

    .divider{
      margin: 6px auto 6px;
    }

    .pane p{
      padding: 9px 11px;
      border-radius: 12px;
    }

    .panel{
        top: var(--panelTop);
        bottom: auto;
        width: var(--panelWidth);
        max-width: var(--panelWidth);
        height: var(--panelHeight);
        max-height: var(--panelHeight);
        min-height: 150px;
        padding: 13px 14px;
        margin-top: 0;
        }

    .panel-video{
      opacity: 0.30;
    }

    .token-grid{
      grid-template-columns: 1fr;
      text-align: center;
    }

    .token-control-row{
      grid-template-columns: 1fr;
    }

    .token-control-row .ca-box{
      justify-content: center;
    }

    .buzz-card{
      grid-template-columns: 72px minmax(0, 1fr);
    }

    .buzz-card img{
      width: 72px;
      height: 58px;
    }

    .footer-menu-button{
      display: inline-grid;
      place-items: center;
      padding: 7px 14px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .social-icons{
      position: fixed;
      bottom: 96px;
      left: 50%;
      transform: translateX(-50%);
      width: min(420px, calc(100vw - 56px));
      min-width: 0;
      display: none;
      grid-template-columns: repeat(4, 1fr);
      justify-items: center;
      gap: 12px;
      padding: 14px 18px;
      box-sizing: border-box;
      background: rgba(0,0,0,0.94);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px 18px 0 0;
    }

    .site-footer.social-open .social-icons{
      display: grid;
    }

    .social-icons a{
      width: 34px;
      height: 34px;
    }

    .social-icons img{
      width: 17px;
      height: 17px;
    }

    .legal-links{
      font-size: 10px;
      gap: 6px;
      padding: 0 8px;
    }

    .faq-list summary{
      gap: 12px;
    }

    .faq-title{
      font-size: 15px;
    }

    .dev-date{
      font-size: 8px;
      letter-spacing: 0.12em;
    }

    [data-tooltip]::after{
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .bg, .overlay, .title, .tabs, .site-footer{
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .panel-video{
      display: none;
    }

    .panel,
    .deep-controls,
    .deep-progress,
    .quick-nav-link{
      transition: none !important;
      opacity: 1 !important;
    }

    .quick-tooltip{
      transition: none !important;
    }

    .panel{
      transform: translateX(-50%) !important;
    }

    .bg{
      opacity: 0.62 !important;
      animation: none !important;
      transform: scale(1) !important;
    }
  .tabs{ transform: translateX(-50%) !important; }
  .site-footer{ transform: none !important; }
  }

  .deep-page .tabs .tab{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  .deep-page{
    --heroTop: 112px;
    --panelTop: clamp(200px, 20vh, 226px);
    --panelHeight: clamp(520px, calc(100dvh - var(--panelTop) - var(--panelBottom)), 820px);
  }

  .deep-page .hero-copy{
    display: none;
  }

  .deep-page .hero-copy .divider,
  .deep-page .hero-copy .line2,
  .deep-page .hero-copy .line3{
    display: none;
  }

  .deep-page .site-title{
    margin-bottom: 0;
    font-size: clamp(18px, 1.9vw, 30px);
    line-height: 1;
  }

  .deep-page .panel{
    padding-bottom: 70px;
  }

  .deep-page .pane{
    text-align: left;
    max-width: min(1120px, 100%);
  }

  .deep-page .pane-visual{
    margin-bottom: 20px;
  }

  .deep-page .pane h2{
    margin: 0 0 14px;
    color: rgba(241,184,96,0.95);
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(18px, 2vw, 25px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .deep-page .pane ul{
    margin: 16px 0 0;
    padding-left: 20px;
  }

  .deep-page .pane li{
    margin: 8px 0;
  }

  .deep-controls{
    position: fixed;
    top: calc(var(--panelTop) + (var(--panelHeight) / 2));
    left: 50%;
    width: min(calc(var(--panelWidth) - 34px), calc(100vw - 138px));
    transform: translate(-50%, -50%);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    opacity: 1;
    transition: opacity 900ms ease;
  }

  .deep-arrow{
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(236,174,82,0.34);
    background: rgba(0,0,0,0.62);
    color: rgba(255,255,255,0.94);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 24px;
    line-height: 1;
    pointer-events: auto;
    backdrop-filter: blur(14px);
    box-shadow:
      0 10px 28px rgba(0,0,0,0.42),
      0 0 18px rgba(236,174,82,0.14);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .deep-arrow:hover{
    border-color: rgba(229,190,106,0.72);
    background: rgba(229,190,106,0.14);
    color: rgba(255,255,255,0.98);
    transform: scale(1.06);
  }

  .deep-return-link{
    position: fixed;
    left: 50%;
    top: calc(var(--panelTop) + var(--panelHeight) + 8px);
    transform: translateX(-50%);
    z-index: 1201;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 7px 17px;
    border: 1px solid rgba(236,174,82,0.28);
    border-radius: 999px;
    background: rgba(0,0,0,0.60);
    color: rgba(255,255,255,0.76);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    box-shadow:
      0 10px 24px rgba(0,0,0,0.34),
      0 0 18px rgba(236,174,82,0.10);
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .stage.pane-ready .deep-return-link{
    opacity: 1;
    pointer-events: auto;
  }

  .deep-return-link:hover{
    transform: translateX(-50%) scale(1.04);
    border-color: rgba(241,184,96,0.72);
    color: rgba(255,255,255,0.96);
    box-shadow:
      0 10px 24px rgba(0,0,0,0.38),
      0 0 24px rgba(236,174,82,0.22);
  }

  .deep-progress{
    position: fixed;
    top: calc(var(--panelTop) + var(--panelHeight) - 42px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1201;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    opacity: 1;
    transition: opacity 900ms ease;
  }

  .stage.pane-ready .deep-controls,
  .stage.pane-ready .deep-progress{
    opacity: 1;
  }

  .deep-dot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.14);
    padding: 0;
  }

  .deep-dot.active{
    width: 22px;
    background: rgba(229,190,106,0.74);
    border-color: rgba(229,190,106,0.86);
  }

  .deep-kicker{
    margin: 0 0 14px;
    color: rgba(229,190,106,0.78);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  @media (max-width:980px){
    .deep-page{
      --heroTop: 80px;
      --panelTop: 96px;
      --panelHeight: clamp(430px, calc(100svh - 250px), 620px);
    }

    .deep-page .site-title{
      margin-bottom: 0;
      font-size: clamp(18px, 4.5vw, 24px);
      line-height: 1;
    }

    .deep-page .panel{
      padding-bottom: 58px;
    }

    .deep-controls{
      top: calc(var(--panelTop) + var(--panelHeight) + 28px);
      width: min(180px, calc(100vw - 34px));
    }

    .deep-arrow{
      width: 40px;
      height: 40px;
      font-size: 21px;
    }

    .deep-progress{
      top: calc(var(--panelTop) + var(--panelHeight) - 30px);
    }
  }
