    :root {
      color-scheme: light;
      --ink: #203146;
      --muted: #637288;
      --paper: #fff9ec;
      --foam: #eafff8;
      --sea: #76d9d1;
      --blue: #5aa7ff;
      --coral: #ff7f6e;
      --sun: #ffd46b;
      --leaf: #79c86b;
      --violet: #9b8cff;
      --line: rgba(32, 49, 70, .16);
      --shadow: 0 18px 42px rgba(43, 70, 102, .18);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      font-family: "Trebuchet MS", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
      background:
        linear-gradient(180deg, #c8f7f1 0%, #fff6dc 44%, #fffdf6 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .36) 0 12px, transparent 12px 28px),
        linear-gradient(120deg, rgba(255, 127, 110, .20), rgba(255, 212, 107, .18) 34%, rgba(90, 167, 255, .18) 70%, rgba(121, 200, 107, .14));
    }

    body::after {
      content: "";
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 28vh;
      z-index: -1;
      background:
        radial-gradient(120% 90% at 0% 100%, rgba(118, 217, 209, .48), transparent 62%),
        radial-gradient(120% 90% at 100% 100%, rgba(90, 167, 255, .36), transparent 62%);
      clip-path: polygon(0 22%, 8% 28%, 18% 21%, 30% 30%, 44% 19%, 60% 28%, 76% 18%, 90% 27%, 100% 21%, 100% 100%, 0 100%);
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .shell {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 2px solid rgba(32, 49, 70, .10);
      background: rgba(255, 253, 246, .78);
      backdrop-filter: blur(16px);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 68px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 900;
      letter-spacing: 0;
    }

    .mark {
      width: 42px;
      height: 42px;
      position: relative;
      flex: 0 0 auto;
      border: 3px solid var(--ink);
      border-radius: 50% 50% 46% 46%;
      background: linear-gradient(160deg, #ffffff 0%, #dffaf6 72%);
      box-shadow: 0 5px 0 rgba(32, 49, 70, .14);
    }

    .mark::before,
    .mark::after {
      content: "";
      position: absolute;
      top: 16px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ink);
    }

    .mark::before {
      left: 11px;
    }

    .mark::after {
      right: 11px;
    }

    .brand strong {
      display: block;
      font-size: 1.02rem;
      line-height: 1;
    }

    .brand span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: .74rem;
      font-weight: 800;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav a,
    .pill-button {
      min-height: 38px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fffdf7;
      color: var(--ink);
      text-decoration: none;
      padding: 8px 12px;
      font-size: .9rem;
      font-weight: 900;
      box-shadow: 0 4px 0 rgba(32, 49, 70, .08);
    }

    .nav a:hover,
    .pill-button:hover {
      transform: translateY(-1px);
      border-color: rgba(32, 49, 70, .28);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 68px);
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(330px, 1.14fr);
      align-items: center;
      gap: 38px;
      padding: 34px 0 44px;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      padding: 12px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 7px 12px;
      border: 2px solid rgba(32, 49, 70, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .68);
      color: #39576e;
      font-size: .82rem;
      font-weight: 900;
      box-shadow: 0 4px 0 rgba(32, 49, 70, .08);
    }

    h1 {
      margin: 20px 0 14px;
      max-width: 620px;
      font-size: clamp(3rem, 8vw, 6.4rem);
      line-height: .9;
      letter-spacing: 0;
      text-wrap: balance;
      text-shadow: 0 6px 0 rgba(255, 255, 255, .72), 0 11px 0 rgba(32, 49, 70, .10);
    }

    .hero-copy p {
      max-width: 560px;
      margin: 0;
      color: #38516a;
      font-size: clamp(1rem, 2vw, 1.2rem);
      line-height: 1.75;
      font-weight: 800;
    }

    .stage {
      position: relative;
      min-height: 600px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .stage::before {
      content: "";
      position: absolute;
      left: 9%;
      right: 9%;
      bottom: 76px;
      height: 70px;
      border: 3px solid rgba(32, 49, 70, .22);
      border-radius: 50%;
      background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(118, 217, 209, .32));
      box-shadow: 0 18px 0 rgba(32, 49, 70, .10);
    }

    .stage-back {
      position: absolute;
      inset: 8% 0 18%;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .50), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, .35) 28px 31px);
      border: 3px solid rgba(32, 49, 70, .12);
      border-radius: 8px 8px 42% 42%;
      transform: rotate(-1deg);
    }

    .spotlight {
      position: absolute;
      width: 56%;
      height: 76%;
      top: 6%;
      clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
      background: linear-gradient(180deg, rgba(255, 244, 174, .55), rgba(255, 244, 174, 0));
      mix-blend-mode: soft-light;
    }

    .stage-frame {
      position: relative;
      z-index: 2;
      width: min(86%, 560px);
      aspect-ratio: 1 / 1.08;
      display: grid;
      place-items: center;
      border: 5px solid var(--ink);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 253, 247, .98), rgba(230, 252, 248, .92)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .55) 0 18px, transparent 18px 36px);
      box-shadow:
        0 9px 0 rgba(32, 49, 70, .18),
        0 24px 44px rgba(43, 70, 102, .24);
      overflow: hidden;
    }

    .stage-frame::before {
      content: "";
      position: absolute;
      inset: 13px;
      z-index: 0;
      border: 2px dashed rgba(32, 49, 70, .18);
      border-radius: 6px;
      pointer-events: none;
    }

    .stage-frame::after {
      content: "";
      position: absolute;
      left: 13%;
      right: 13%;
      bottom: 18px;
      height: 24px;
      z-index: 1;
      border-radius: 50%;
      background: rgba(32, 49, 70, .14);
      filter: blur(1px);
      pointer-events: none;
    }

    .stage-frame-glass {
      position: absolute;
      inset: 0;
      z-index: 3;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, .30) 0 18%, transparent 18% 42%, rgba(255, 255, 255, .16) 42% 52%, transparent 52%),
        linear-gradient(180deg, rgba(255, 255, 255, .16), transparent 44%);
      pointer-events: none;
      mix-blend-mode: screen;
    }

    .hero-model {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter:
        drop-shadow(0 10px 0 rgba(32, 49, 70, .10))
        drop-shadow(0 22px 24px rgba(32, 49, 70, .20));
      animation: frameFloat 4.8s ease-in-out infinite;
    }

    @keyframes frameFloat {
      0%, 100% { transform: scale(1.02); }
      50% { transform: scale(1.055); }
    }

    .stage-label {
      position: absolute;
      right: 14px;
      bottom: 14px;
      z-index: 5;
      max-width: min(300px, calc(100% - 28px));
      border: 3px solid var(--ink);
      border-radius: var(--radius);
      background: #fffdf7;
      padding: 13px 14px;
      box-shadow: 0 8px 0 rgba(32, 49, 70, .14);
    }

    .stage-label strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1.2;
    }

    .stage-label span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: .82rem;
      font-weight: 900;
    }

    .toolbar-band {
      border-top: 2px solid rgba(32, 49, 70, .10);
      border-bottom: 2px solid rgba(32, 49, 70, .10);
      background: rgba(255, 255, 255, .66);
      backdrop-filter: blur(12px);
    }

    .toolbar {
      display: grid;
      grid-template-columns: minmax(240px, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 18px 0;
    }

    .search-wrap {
      position: relative;
    }

    .search-wrap input {
      width: 100%;
      min-height: 48px;
      border: 3px solid rgba(32, 49, 70, .18);
      border-radius: var(--radius);
      background: #fffdf7;
      color: var(--ink);
      padding: 11px 15px;
      font-weight: 900;
      outline: none;
      box-shadow: 0 5px 0 rgba(32, 49, 70, .08);
    }

    .search-wrap input:focus {
      border-color: var(--blue);
    }

    .filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .filter {
      min-height: 42px;
      border: 2px solid rgba(32, 49, 70, .18);
      border-radius: var(--radius);
      background: #fffdf7;
      color: var(--ink);
      padding: 8px 12px;
      font-weight: 900;
      box-shadow: 0 4px 0 rgba(32, 49, 70, .08);
    }

    .filter[aria-pressed="true"] {
      border-color: var(--ink);
      background: linear-gradient(180deg, #ffffff, #dffaf6);
      box-shadow: 0 5px 0 rgba(32, 49, 70, .16);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      padding: 40px 0 20px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.9rem, 4vw, 3.4rem);
      line-height: 1;
      letter-spacing: 0;
      text-shadow: 0 5px 0 rgba(255, 255, 255, .65);
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-weight: 900;
    }

    .gallery-shell {
      position: relative;
      padding-bottom: 64px;
    }

    .gallery {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 4px 6px 18px;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-arrow {
      position: absolute;
      top: 42%;
      z-index: 8;
      width: 50px;
      height: 58px;
      border: 3px solid var(--ink);
      border-radius: var(--radius);
      background: linear-gradient(180deg, #ffffff, #ffdf75);
      color: var(--ink);
      font-size: 2.15rem;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 7px 0 rgba(32, 49, 70, .18);
      transform: translateY(-50%);
    }

    .gallery-arrow:hover:not(:disabled) {
      transform: translateY(calc(-50% - 2px));
    }

    .gallery-arrow:disabled,
    .gallery-arrow.is-hidden {
      display: none;
    }

    .gallery-arrow-left {
      left: -22px;
    }

    .gallery-arrow-right {
      right: -22px;
    }

    .model-card {
      position: relative;
      flex: 0 0 clamp(210px, 22vw, 250px);
      min-width: 0;
      border: 3px solid rgba(32, 49, 70, .16);
      border-radius: var(--radius);
      background: #fffdf7;
      min-height: 334px;
      overflow: hidden;
      scroll-snap-align: start;
      box-shadow: var(--shadow);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .model-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, var(--tone), transparent 58%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .56) 0 8px, transparent 8px 18px);
      opacity: .76;
    }

    .model-card:hover {
      transform: translateY(-5px) rotate(-.4deg);
      border-color: rgba(32, 49, 70, .34);
      box-shadow: 0 24px 52px rgba(43, 70, 102, .22);
    }

    .model-art {
      position: relative;
      height: 238px;
      display: grid;
      place-items: end center;
      padding: 18px 14px 8px;
    }

    .model-art::after {
      content: "";
      position: absolute;
      left: 17%;
      right: 17%;
      bottom: 16px;
      height: 22px;
      border-radius: 50%;
      background: rgba(32, 49, 70, .12);
      filter: blur(1px);
    }

    .model-art img {
      position: relative;
      z-index: 1;
      max-width: 100%;
      max-height: 218px;
      object-fit: contain;
      filter: drop-shadow(0 13px 0 rgba(32, 49, 70, .08)) drop-shadow(0 19px 18px rgba(32, 49, 70, .18));
    }

    .model-meta {
      position: relative;
      padding: 12px 13px 14px;
      border-top: 2px dashed rgba(32, 49, 70, .14);
      background: rgba(255, 253, 247, .78);
    }

    .model-meta strong {
      display: block;
      min-height: 1.25em;
      overflow-wrap: anywhere;
      font-size: 1rem;
      line-height: 1.25;
    }

    .model-meta span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 900;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .tag {
      border: 1px solid rgba(32, 49, 70, .14);
      border-radius: 6px;
      background: rgba(255, 255, 255, .68);
      padding: 4px 7px;
      color: #40566d;
      font-size: .72rem;
      font-weight: 900;
    }

    .empty {
      display: none;
      min-height: 190px;
      place-items: center;
      border: 3px dashed rgba(32, 49, 70, .18);
      border-radius: var(--radius);
      margin-bottom: 64px;
      background: rgba(255, 255, 255, .54);
      color: var(--muted);
      font-weight: 900;
    }

    .empty.is-visible {
      display: grid;
    }

    .detail {
      border: 0;
      padding: 0;
      background: transparent;
      color: inherit;
      text-align: left;
      width: 100%;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: none;
      place-items: center;
      padding: 24px;
      background: rgba(21, 36, 52, .58);
      backdrop-filter: blur(8px);
    }

    .modal.is-open {
      display: grid;
    }

    .modal-panel {
      width: min(980px, 100%);
      max-height: min(860px, calc(100vh - 40px));
      display: grid;
      grid-template-columns: minmax(0, 1fr) 270px;
      overflow: hidden;
      border: 4px solid var(--ink);
      border-radius: var(--radius);
      background: #fffdf7;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
    }

    .modal-art {
      min-height: 520px;
      display: grid;
      place-items: center;
      padding: 26px;
      background:
        linear-gradient(180deg, rgba(118, 217, 209, .38), rgba(255, 212, 107, .24)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .58) 0 18px, transparent 18px 36px);
    }

    .modal-art img {
      width: min(100%, 620px);
      max-height: 72vh;
      object-fit: contain;
      filter: drop-shadow(0 20px 0 rgba(32, 49, 70, .10)) drop-shadow(0 30px 26px rgba(32, 49, 70, .24));
    }

    .modal-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 18px;
      border-left: 3px solid rgba(32, 49, 70, .14);
    }

    .modal-info h3 {
      margin: 0;
      font-size: 1.55rem;
      line-height: 1.15;
      overflow-wrap: anywhere;
    }

    .modal-info p {
      margin: 0;
      color: var(--muted);
      font-weight: 900;
      line-height: 1.55;
    }

    .modal-actions {
      margin-top: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .icon-button {
      min-height: 44px;
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      background: #fffdf7;
      color: var(--ink);
      font-size: 1.04rem;
      font-weight: 900;
      box-shadow: 0 4px 0 rgba(32, 49, 70, .12);
    }

    .icon-button:hover {
      transform: translateY(-1px);
    }

    .series-band {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
      padding: 0 0 58px;
    }

    .series-tile {
      min-width: 0;
      border: 3px solid rgba(32, 49, 70, .14);
      border-radius: var(--radius);
      background: rgba(255, 253, 247, .78);
      padding: 14px;
      box-shadow: 0 10px 28px rgba(43, 70, 102, .12);
    }

    .series-tile b {
      display: block;
      overflow-wrap: anywhere;
      line-height: 1.15;
    }

    .series-tile span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 900;
    }

    @media (max-width: 900px) {
      .topbar-inner {
        align-items: center;
        gap: 12px;
        min-height: auto;
        padding: 10px 0;
      }

      .nav {
        justify-content: flex-end;
      }

      .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0 34px;
      }

      .hero-copy {
        padding: 0;
      }

      .hero-copy p {
        max-width: 680px;
      }

      .stage {
        min-height: 500px;
      }

      .stage-frame {
        width: min(92vw, 470px);
      }

      .stage-label {
        left: 14px;
        right: auto;
        bottom: 14px;
      }

      .toolbar {
        grid-template-columns: 1fr;
      }

      .filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
      }

      .filters::-webkit-scrollbar {
        display: none;
      }

      .filter {
        flex: 0 0 auto;
      }

      .modal-panel {
        grid-template-columns: 1fr;
      }

      .modal-art {
        min-height: 360px;
      }

      .modal-info {
        border-left: 0;
        border-top: 3px solid rgba(32, 49, 70, .14);
      }

      .series-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 560px) {
      .shell {
        width: min(100% - 22px, 1180px);
      }

      .topbar {
        position: static;
      }

      .topbar-inner {
        align-items: stretch;
        gap: 10px;
      }

      .brand {
        justify-content: center;
      }

      .mark {
        width: 36px;
        height: 36px;
        border-width: 2px;
      }

      .mark::before,
      .mark::after {
        top: 14px;
      }

      .brand strong {
        font-size: .94rem;
      }

      .brand span {
        font-size: .68rem;
      }

      .nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
      }

      .nav a,
      .pill-button {
        min-height: 36px;
        padding: 7px 8px;
        font-size: .78rem;
        text-align: center;
      }

      h1 {
        margin: 14px 0 10px;
        font-size: clamp(2.45rem, 15vw, 3.85rem);
        line-height: .94;
        text-shadow: 0 4px 0 rgba(255, 255, 255, .72), 0 8px 0 rgba(32, 49, 70, .10);
      }

      .eyebrow {
        min-height: 30px;
        padding: 6px 9px;
        font-size: .72rem;
      }

      .hero {
        gap: 12px;
        padding: 18px 0 28px;
      }

      .hero-copy p {
        font-size: .95rem;
        line-height: 1.58;
      }

      .stage-back {
        inset: 8% 2% 18%;
      }

      .stage {
        min-height: 390px;
      }

      .stage::before {
        left: 7%;
        right: 7%;
        bottom: 56px;
        height: 48px;
      }

      .stage-frame {
        width: min(92vw, 340px);
        border-width: 4px;
        box-shadow:
          0 7px 0 rgba(32, 49, 70, .18),
          0 18px 32px rgba(43, 70, 102, .22);
      }

      .stage-frame::before {
        inset: 9px;
      }

      .stage-label {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 9px 10px;
        border-width: 2px;
        box-shadow: 0 5px 0 rgba(32, 49, 70, .14);
      }

      .stage-label strong {
        font-size: .9rem;
      }

      .stage-label span {
        font-size: .72rem;
      }

      .toolbar {
        gap: 10px;
        padding: 12px 0;
      }

      .search-wrap input {
        min-height: 42px;
        border-width: 2px;
        padding: 9px 11px;
        font-size: .86rem;
      }

      .filter {
        min-height: 36px;
        padding: 7px 10px;
        font-size: .8rem;
      }

      .section-head {
        display: block;
        padding: 28px 0 14px;
      }

      .section-head h2 {
        font-size: 2rem;
      }

      .section-head p {
        margin-top: 8px;
        font-size: .84rem;
      }

      .gallery-shell {
        padding-bottom: 42px;
      }

      .gallery {
        gap: 10px;
        padding-left: 2px;
        padding-right: 2px;
      }

      .gallery-arrow {
        width: 42px;
        height: 52px;
        font-size: 1.85rem;
      }

      .gallery-arrow-left {
        left: -8px;
      }

      .gallery-arrow-right {
        right: -8px;
      }

      .model-card {
        flex-basis: min(78vw, 238px);
        min-height: 302px;
      }

      .model-art {
        height: 214px;
        padding: 12px 9px 6px;
      }

      .model-art img {
        max-height: 198px;
      }

      .model-meta {
        padding: 10px;
      }

      .tag-row {
        display: none;
      }

      .modal {
        padding: 8px;
        align-items: start;
        overflow-y: auto;
      }

      .modal-panel {
        max-height: none;
        margin: 8px 0;
        border-width: 3px;
      }

      .modal-art {
        min-height: 260px;
        padding: 12px;
      }

      .modal-art img {
        max-height: 54vh;
      }

      .modal-info {
        gap: 10px;
        padding: 12px;
      }

      .modal-info h3 {
        font-size: 1.18rem;
      }

      .modal-info p {
        font-size: .84rem;
      }

      .modal-actions {
        gap: 6px;
      }

      .icon-button {
        min-height: 40px;
      }

      .series-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-bottom: 38px;
      }

      .series-tile {
        padding: 11px;
      }

      .series-tile b {
        font-size: .92rem;
      }

      .series-tile span {
        font-size: .72rem;
      }
    }

    @media (max-width: 380px) {
      .shell {
        width: min(100% - 16px, 1180px);
      }

      .nav {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 2.35rem;
      }

      .stage {
        min-height: 350px;
      }

      .stage-frame {
        width: min(92vw, 300px);
      }

      .model-card {
        flex-basis: 82vw;
      }

      .series-band {
        grid-template-columns: 1fr;
      }
    }
