:root {
      color-scheme: light;
      --canvas: #f5f6f8;
      --paper: #ffffff;
      --paper-soft: #fafafa;
      --ink: #111318;
      --ink-soft: #353942;
      --muted: #777d88;
      --line: #e5e7eb;
      --line-strong: #d3d6dc;
      --accent: #ed5a2d;
      --accent-dark: #c6421d;
      --accent-soft: #fff0ea;
      --blue: #1769aa;
      --blue-soft: #eaf4fb;
      --green: #1e7a5b;
      --green-soft: #eaf7f1;
      --shadow: 0 16px 42px rgba(25, 31, 43, 0.08);
      --shadow-small: 0 8px 22px rgba(25, 31, 43, 0.07);
      --radius-lg: 22px;
      --radius-md: 17px;
      --radius-sm: 11px;
      --max: 1220px;
      --display: "Iowan Old Style", "Songti SC", "STSong", serif;
      --sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      background:
        linear-gradient(rgba(17, 19, 24, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 24, 0.018) 1px, transparent 1px),
        var(--canvas);
      background-size: 32px 32px;
      color: var(--ink);
      font-family: var(--sans);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0 0 auto;
      z-index: -1;
      height: 520px;
      background:
        radial-gradient(circle at 14% -5%, rgba(237, 90, 45, 0.1), transparent 28rem),
        radial-gradient(circle at 88% 2%, rgba(23, 105, 170, 0.08), transparent 25rem),
        linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
      pointer-events: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

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

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

    .shell {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto;
    }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 200;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--ink);
      color: #fff;
      transform: translateY(-160%);
    }

    .skip-link:focus {
      transform: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      border-bottom: 1px solid rgba(229, 231, 235, 0.86);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px) saturate(145%);
    }

    .header-inner {
      min-height: 68px;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      cursor: pointer;
    }

    .brand-mark {
      position: relative;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 11px;
      background: #111318;
      color: #fff;
      font-family: var(--display);
      font-size: 22px;
      font-weight: 800;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      right: 5px;
      bottom: 5px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px rgba(237, 90, 45, 0.18);
    }

    .brand-copy {
      display: grid;
      line-height: 1;
    }

    .brand-copy strong {
      font-family: var(--display);
      font-size: 19px;
      letter-spacing: 0.02em;
    }

    .brand-copy small {
      margin-top: 6px;
      color: var(--muted);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.18em;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      padding: 9px 11px;
      border-radius: 9px;
      background: transparent;
      color: var(--ink-soft);
      font-size: 13px;
      font-weight: 680;
      cursor: pointer;
      transition: 160ms ease;
    }

    .nav-link:hover,
    .nav-link.is-active {
      background: #f0f2f5;
      color: var(--ink);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .icon-button,
    .menu-button {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 11px;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
      transition: 160ms ease;
    }

    .icon-button:hover,
    .menu-button:hover {
      border-color: var(--line-strong);
      box-shadow: var(--shadow-small);
      transform: translateY(-1px);
    }

    .header-cta {
      min-height: 40px;
      padding: 0 17px;
      border-radius: 11px;
      background: var(--ink);
      color: #fff;
      font-size: 13px;
      font-weight: 760;
      cursor: pointer;
      transition: 160ms ease;
    }

    .header-cta:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .menu-button,
    .mobile-nav {
      display: none;
    }

    .mobile-nav.is-open {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      padding-bottom: 14px;
    }

    .mobile-nav .nav-link {
      border: 1px solid var(--line);
      background: #fff;
      text-align: center;
    }

    main {
      min-height: 72vh;
    }

    .home-view {
      padding: 30px 0 74px;
    }

    .page-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 302px;
      align-items: start;
      gap: 24px;
    }

    .main-column {
      min-width: 0;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 14px;
    }

    .section-heading-copy {
      display: grid;
      gap: 3px;
    }

    .eyebrow {
      color: var(--accent-dark);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: 0.17em;
      text-transform: uppercase;
    }

    .section-heading h1,
    .section-heading h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.2;
      letter-spacing: -0.035em;
    }

    .section-heading-note {
      margin: 0 0 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .featured-shell {
      position: relative;
      margin-bottom: 34px;
      padding: 9px;
      border: 1px solid var(--line);
      border-radius: 23px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow);
    }

    .featured-stage {
      min-height: 0;
    }

    .featured-button {
      width: 100%;
      display: block;
      padding: 0;
      overflow: hidden;
      border-radius: 16px;
      background: transparent;
      color: inherit;
      text-align: left;
      cursor: pointer;
    }

    .featured-button:focus-visible {
      outline: 3px solid rgba(237, 90, 45, 0.38);
      outline-offset: 3px;
    }

    .hero-controls {
      position: absolute;
      z-index: 12;
      top: 50%;
      right: 20px;
      left: 20px;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      transform: translateY(-50%);
    }

    .hero-arrow {
      width: 43px;
      height: 43px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 50%;
      background: rgba(10, 15, 24, 0.66);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      pointer-events: auto;
      backdrop-filter: blur(12px);
      transition: 160ms ease;
    }

    .hero-arrow:hover {
      background: var(--accent);
      transform: scale(1.06);
    }

    .hero-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 11px 8px 2px;
    }

    .hero-dots {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .hero-dot {
      width: 7px;
      height: 7px;
      padding: 0;
      border-radius: 999px;
      background: #c7cad0;
      cursor: pointer;
      transition: 180ms ease;
    }

    .hero-dot.is-active {
      width: 24px;
      background: var(--ink);
    }

    .hero-caption {
      color: var(--muted);
      font-size: 11px;
      font-weight: 650;
    }

    .cover-art {
      --cover-accent: #67c9ff;
      --cover-accent-2: #2258b4;
      --cover-deep: #07111f;
      position: relative;
      isolation: isolate;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--cover-accent) 44%, transparent), transparent 28%),
        linear-gradient(125deg, var(--cover-deep) 0%, #0b1424 52%, #101827 100%);
      color: #fff;
    }

    .cover-art.is-featured {
      aspect-ratio: 16 / 7.4;
    }

    .cover-photo {
      position: absolute;
      z-index: -4;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.36;
      filter: saturate(1.1) contrast(1.08);
      transform: scale(1.015);
      transition: transform 420ms cubic-bezier(.2, .7, .2, 1);
    }

    .article-card:hover .cover-photo,
    .featured-button:hover .cover-photo {
      transform: scale(1.055);
    }

    .cover-art::before {
      content: "";
      position: absolute;
      z-index: -3;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(3, 8, 17, 0.98) 0%, rgba(3, 8, 17, 0.88) 38%, rgba(3, 8, 17, 0.3) 73%, rgba(3, 8, 17, 0.5) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%, rgba(0, 0, 0, 0.3));
    }

    .cover-art::after {
      content: "";
      position: absolute;
      z-index: -2;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
      opacity: 0.45;
    }

    .cover-copy {
      position: absolute;
      z-index: 4;
      top: 12%;
      bottom: 12%;
      left: 6.5%;
      width: 66%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      min-width: 0;
    }

    .cover-code {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 9px;
      color: color-mix(in srgb, var(--cover-accent) 88%, #fff);
      font-size: clamp(7px, 0.8vw, 10px);
      font-weight: 850;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .cover-code::before {
      content: "";
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: var(--cover-accent);
      box-shadow: 0 0 14px var(--cover-accent);
    }

    .cover-lead {
      display: block;
      margin-bottom: 2px;
      color: rgba(255, 255, 255, 0.72);
      font-size: clamp(9px, 1.05vw, 14px);
      font-weight: 720;
    }

    .cover-headline {
      display: block;
      max-width: 100%;
      font-family: var(--display);
      font-size: clamp(20px, 2.45vw, 35px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.055em;
      text-wrap: balance;
      text-shadow: 0 5px 24px rgba(0, 0, 0, 0.34);
    }

    .is-featured .cover-headline {
      font-size: clamp(28px, 4vw, 53px);
      line-height: 1.06;
    }

    .cover-tagline {
      display: inline-flex;
      margin-top: 9px;
      padding: 5px 9px;
      border: 1px solid color-mix(in srgb, var(--cover-accent) 45%, transparent);
      border-radius: 6px;
      background: color-mix(in srgb, var(--cover-accent) 16%, rgba(5, 10, 18, 0.52));
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(8px, 0.9vw, 11px);
      font-weight: 730;
      line-height: 1.2;
      backdrop-filter: blur(9px);
    }

    .cover-index {
      position: absolute;
      z-index: 3;
      top: 7%;
      right: 4%;
      color: rgba(255, 255, 255, 0.24);
      font-family: var(--display);
      font-size: clamp(25px, 4vw, 58px);
      font-style: italic;
      font-weight: 900;
      line-height: 1;
    }

    .cover-widget {
      position: absolute;
      z-index: 3;
      right: 5%;
      bottom: 11%;
      width: 25%;
      min-width: 82px;
      padding: clamp(8px, 1.15vw, 14px);
      border: 1px solid rgba(255, 255, 255, 0.17);
      border-radius: 12px;
      background: rgba(6, 13, 24, 0.58);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(12px);
    }

    .cover-widget small {
      display: block;
      overflow: hidden;
      margin-bottom: 2px;
      color: rgba(255, 255, 255, 0.5);
      font-size: clamp(6px, 0.62vw, 8px);
      font-weight: 800;
      letter-spacing: 0.13em;
      text-overflow: ellipsis;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .cover-widget strong {
      display: block;
      overflow: hidden;
      color: #fff;
      font-size: clamp(15px, 2vw, 28px);
      font-weight: 900;
      letter-spacing: -0.045em;
      line-height: 1.08;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .widget-bars {
      display: grid;
      gap: 4px;
      margin-top: 8px;
    }

    .widget-bars i {
      display: block;
      height: 3px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.13);
    }

    .widget-bars i::after {
      content: "";
      display: block;
      width: var(--bar, 70%);
      height: 100%;
      border-radius: inherit;
      background: var(--cover-accent);
      box-shadow: 0 0 9px var(--cover-accent);
    }

    .theme-electric {
      --cover-accent: #63d6ff;
      --cover-accent-2: #2167d0;
      --cover-deep: #061522;
    }

    .theme-amber {
      --cover-accent: #ffbd52;
      --cover-accent-2: #c86418;
      --cover-deep: #1a1006;
    }

    .theme-mint {
      --cover-accent: #63e5b5;
      --cover-accent-2: #187556;
      --cover-deep: #061813;
    }

    .theme-coral {
      --cover-accent: #ff826c;
      --cover-accent-2: #c73728;
      --cover-deep: #1d0a0a;
    }

    .theme-lime {
      --cover-accent: #c4ec67;
      --cover-accent-2: #5d8c28;
      --cover-deep: #10180a;
    }

    .theme-orange {
      --cover-accent: #ff9b4b;
      --cover-accent-2: #d94720;
      --cover-deep: #1a0d08;
    }

    .theme-ice {
      --cover-accent: #b3caff;
      --cover-accent-2: #526ca9;
      --cover-deep: #0a0f1d;
    }

    .theme-blue {
      --cover-accent: #56b7ff;
      --cover-accent-2: #165ea6;
      --cover-deep: #06111f;
    }

    .feed-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin: 0 0 12px;
    }

    .feed-head h2 {
      margin: 0;
      font-family: var(--display);
      font-size: 29px;
      line-height: 1.2;
      letter-spacing: -0.035em;
    }

    .feed-count {
      color: var(--muted);
      font-size: 12px;
    }

    .filter-row {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      margin-bottom: 15px;
      padding: 1px 0 3px;
      scrollbar-width: none;
    }

    .filter-row::-webkit-scrollbar {
      display: none;
    }

    .filter-chip {
      flex: 0 0 auto;
      min-height: 33px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--ink-soft);
      font-size: 11px;
      font-weight: 720;
      cursor: pointer;
      transition: 150ms ease;
    }

    .filter-chip:hover,
    .filter-chip.is-active {
      border-color: var(--ink);
      background: var(--ink);
      color: #fff;
    }

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

    .article-card {
      min-width: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--paper);
      box-shadow: 0 1px 0 rgba(17, 19, 24, 0.02);
      cursor: pointer;
      transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
      animation: card-in 500ms both;
      animation-delay: calc(var(--order, 0) * 55ms);
    }

    .article-card:hover {
      border-color: var(--line-strong);
      box-shadow: var(--shadow-small);
      transform: translateY(-4px);
    }

    .article-card:focus-visible {
      outline: 3px solid rgba(237, 90, 45, 0.34);
      outline-offset: 3px;
    }

    @keyframes card-in {
      from {
        opacity: 0;
        transform: translateY(13px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .article-cover {
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background: #0b1220;
    }

    .article-body {
      padding: 16px 17px 15px;
    }

    .article-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .article-category {
      display: inline-flex;
      padding: 4px 8px;
      border-radius: 6px;
      background: var(--blue-soft);
      color: var(--blue);
      font-size: 10px;
      font-weight: 800;
      line-height: 1.25;
    }

    .article-card:nth-child(3n + 2) .article-category {
      background: var(--green-soft);
      color: var(--green);
    }

    .article-card:nth-child(3n) .article-category {
      background: var(--accent-soft);
      color: var(--accent-dark);
    }

    .article-date {
      color: #9a9fa8;
      font-size: 10px;
    }

    .article-body h3 {
      min-height: 3.1em;
      margin: 10px 0 8px;
      font-family: var(--display);
      font-size: 19px;
      font-weight: 850;
      line-height: 1.48;
      letter-spacing: -0.022em;
    }

    .article-body p {
      display: -webkit-box;
      overflow: hidden;
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.7;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 13px;
      padding-top: 12px;
      border-top: 1px solid #f0f1f3;
      color: #8a909a;
      font-size: 10px;
    }

    .article-tags {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .read-link {
      flex: 0 0 auto;
      color: var(--ink);
      font-weight: 800;
    }

    .empty-state {
      display: none;
      padding: 52px 20px;
      border: 1px dashed var(--line-strong);
      border-radius: var(--radius-md);
      background: #fff;
      color: var(--muted);
      text-align: center;
    }

    .sidebar {
      position: sticky;
      top: 92px;
      display: grid;
      gap: 14px;
    }

    .side-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 5px 18px rgba(25, 31, 43, 0.045);
    }

    .profile-top {
      position: relative;
      height: 78px;
      background:
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.22) 0 3px, transparent 4px),
        radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.13) 0 2px, transparent 3px),
        linear-gradient(125deg, #12161e 0%, #26303e 65%, #ed5a2d 150%);
    }

    .profile-top::after {
      content: "BUILD IN PUBLIC";
      position: absolute;
      top: 17px;
      right: 18px;
      color: rgba(255, 255, 255, 0.38);
      font-size: 8px;
      font-weight: 850;
      letter-spacing: 0.15em;
    }

    .profile-body {
      position: relative;
      padding: 35px 19px 18px;
    }

    .avatar {
      position: absolute;
      top: -29px;
      left: 18px;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border: 4px solid #fff;
      border-radius: 16px;
      background: var(--ink);
      color: #fff;
      font-family: var(--display);
      font-size: 28px;
      font-weight: 900;
      box-shadow: var(--shadow-small);
    }

    .profile-name {
      margin: 0;
      font-family: var(--display);
      font-size: 22px;
      line-height: 1.2;
    }

    .profile-role {
      display: block;
      margin-top: 4px;
      color: var(--accent-dark);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
    }

    .profile-intro {
      margin: 11px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.75;
    }

    .profile-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 5px;
      margin-top: 15px;
    }

    .stat {
      padding: 8px 4px;
      border-radius: 9px;
      background: #f5f6f8;
      text-align: center;
    }

    .stat strong {
      display: block;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.2;
    }

    .stat span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 8px;
    }

    .primary-button,
    .secondary-button {
      width: 100%;
      min-height: 41px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin-top: 14px;
      border-radius: 10px;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
      transition: 160ms ease;
    }

    .primary-button {
      background: var(--ink);
      color: #fff;
    }

    .primary-button:hover {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .secondary-button {
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
    }

    .secondary-button:hover {
      border-color: var(--line-strong);
      box-shadow: var(--shadow-small);
    }

    .side-section {
      padding: 17px;
    }

    .side-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
    }

    .side-title {
      margin: 0;
      font-family: var(--display);
      font-size: 17px;
      line-height: 1.2;
    }

    .side-badge {
      padding: 3px 6px;
      border-radius: 5px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 8px;
      font-weight: 850;
      letter-spacing: 0.08em;
    }

    .project-list {
      display: grid;
      gap: 10px;
    }

    .project-item {
      display: grid;
      grid-template-columns: 62px minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .project-thumb {
      position: relative;
      aspect-ratio: 16 / 11;
      overflow: hidden;
      border-radius: 8px;
      background: #101722;
    }

    .project-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.78;
    }

    .project-thumb span {
      position: absolute;
      right: 5px;
      bottom: 4px;
      left: 5px;
      overflow: hidden;
      color: #fff;
      font-size: 7px;
      font-weight: 850;
      line-height: 1.1;
      text-overflow: ellipsis;
      text-shadow: 0 2px 5px #000;
      white-space: nowrap;
    }

    .project-copy {
      min-width: 0;
    }

    .project-copy strong {
      display: block;
      overflow: hidden;
      font-size: 12px;
      line-height: 1.35;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .project-copy span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 9px;
      line-height: 1.45;
    }

    .notice {
      position: relative;
      padding-left: 14px;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.75;
    }

    .notice::before {
      content: "";
      position: absolute;
      top: 0.48em;
      bottom: 0.48em;
      left: 0;
      width: 3px;
      border-radius: 999px;
      background: var(--accent);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .tag-button {
      padding: 5px 8px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: #fafafa;
      color: var(--ink-soft);
      font-size: 9px;
      font-weight: 690;
      cursor: pointer;
    }

    .tag-button:hover {
      border-color: var(--ink);
      background: var(--ink);
      color: #fff;
    }

    .lead-card {
      border-color: #1c222c;
      background:
        radial-gradient(circle at 88% 12%, rgba(237, 90, 45, 0.26), transparent 8rem),
        #12161e;
      color: #fff;
    }

    .lead-card .side-title {
      font-size: 20px;
    }

    .lead-card p {
      margin: 9px 0 0;
      color: rgba(255, 255, 255, 0.65);
      font-size: 11px;
      line-height: 1.75;
    }

    .lead-card .primary-button {
      background: var(--accent);
    }

    .lead-card .primary-button:hover {
      background: #ff7045;
    }

    .detail-view[hidden],
    .home-view[hidden] {
      display: none;
    }

    .detail-view {
      padding: 31px 0 78px;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 282px;
      align-items: start;
      gap: 24px;
    }

    .detail-main {
      min-width: 0;
    }

    .back-button {
      margin-bottom: 14px;
      padding: 8px 0;
      background: transparent;
      color: var(--muted);
      font-size: 12px;
      font-weight: 730;
      cursor: pointer;
    }

    .back-button:hover {
      color: var(--ink);
    }

    .detail-hero {
      overflow: hidden;
      padding: 9px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .detail-hero .cover-art {
      border-radius: 15px;
    }

    .detail-paper {
      margin-top: 18px;
      padding: clamp(27px, 5vw, 58px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
    }

    .detail-category {
      display: inline-flex;
      padding: 5px 9px;
      border-radius: 6px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 10px;
      font-weight: 800;
    }

    .detail-paper h1 {
      max-width: 800px;
      margin: 15px 0 12px;
      font-family: var(--display);
      font-size: clamp(31px, 5vw, 52px);
      line-height: 1.2;
      letter-spacing: -0.045em;
    }

    .detail-deck {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .detail-info {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      margin: 22px 0 0;
      padding: 14px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: #8a9099;
      font-size: 11px;
    }

    .article-copy {
      max-width: 760px;
      margin-top: 34px;
      color: #292d34;
      font-family: var(--display);
      font-size: 17px;
      line-height: 2;
    }

    .article-copy h2 {
      margin: 46px 0 14px;
      color: var(--ink);
      font-family: var(--sans);
      font-size: 24px;
      line-height: 1.35;
      letter-spacing: -0.025em;
    }

    .article-copy p {
      margin: 0 0 22px;
    }

    .article-copy blockquote {
      margin: 30px 0;
      padding: 18px 21px;
      border-left: 4px solid var(--accent);
      background: #f7f7f8;
      color: var(--ink-soft);
      font-family: var(--sans);
      font-size: 14px;
    }

    .prototype-note {
      margin-top: 38px;
      padding: 17px;
      border: 1px dashed var(--line-strong);
      border-radius: 11px;
      background: var(--paper-soft);
      color: var(--muted);
      font-family: var(--sans);
      font-size: 11px;
      line-height: 1.7;
    }

    .detail-side {
      position: sticky;
      top: 92px;
      display: grid;
      gap: 14px;
    }

    .toc {
      display: grid;
      gap: 5px;
    }

    .toc a {
      padding: 7px 9px;
      border-radius: 7px;
      color: var(--muted);
      font-size: 11px;
    }

    .toc a:hover {
      background: #f3f4f6;
      color: var(--ink);
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.82);
    }

    .footer-inner {
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--muted);
      font-size: 11px;
    }

    .footer-brand {
      color: var(--ink);
      font-family: var(--display);
      font-size: 17px;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    dialog {
      width: min(calc(100% - 32px), 590px);
      padding: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      color: var(--ink);
      box-shadow: 0 28px 100px rgba(11, 15, 23, 0.25);
    }

    dialog::backdrop {
      background: rgba(17, 19, 24, 0.48);
      backdrop-filter: blur(5px);
    }

    .dialog-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .dialog-head h2 {
      margin: 0;
      font-family: var(--display);
      font-size: 23px;
    }

    .dialog-close {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: #f2f3f5;
      color: var(--ink);
      font-size: 20px;
      cursor: pointer;
    }

    .dialog-body {
      padding: 20px;
    }

    .search-input {
      width: 100%;
      height: 48px;
      padding: 0 14px;
      border: 1px solid var(--line-strong);
      border-radius: 11px;
      outline: 0;
      background: #fafafa;
      color: var(--ink);
    }

    .search-input:focus {
      border-color: var(--ink);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(17, 19, 24, 0.07);
    }

    .search-results {
      display: grid;
      gap: 7px;
      max-height: 430px;
      overflow-y: auto;
      margin-top: 13px;
    }

    .search-result {
      display: grid;
      grid-template-columns: 82px minmax(0, 1fr);
      align-items: center;
      gap: 11px;
      padding: 7px;
      border-radius: 10px;
      background: transparent;
      color: var(--ink);
      text-align: left;
      cursor: pointer;
    }

    .search-result:hover {
      background: #f4f5f7;
    }

    .search-thumb {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 7px;
      background: #101722;
    }

    .search-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .search-result strong {
      font-size: 12px;
      line-height: 1.5;
    }

    .contact-intro {
      margin: 0 0 15px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.75;
    }

    .contact-options {
      display: grid;
      gap: 9px;
    }

    .contact-option {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 11px;
      background: #fafafa;
    }

    .contact-option strong {
      display: block;
      font-size: 13px;
    }

    .contact-option span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 10px;
      line-height: 1.65;
    }

    @media (max-width: 1050px) {
      .page-layout,
      .detail-grid {
        grid-template-columns: minmax(0, 1fr) 270px;
      }

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

      .cover-headline {
        font-size: clamp(18px, 2.6vw, 29px);
      }
    }

    @media (max-width: 900px) {
      .desktop-nav {
        display: none;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
      }

      .header-actions {
        justify-self: end;
      }

      .menu-button {
        display: grid;
      }

      .page-layout,
      .detail-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .sidebar,
      .detail-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .profile-card,
      .lead-card {
        grid-row: span 2;
      }
    }

    @media (max-width: 650px) {
      .shell {
        width: min(calc(100% - 28px), var(--max));
      }

      .header-inner {
        min-height: 62px;
        gap: 10px;
      }

      .brand-copy small,
      .header-cta {
        display: none;
      }

      .home-view,
      .detail-view {
        padding-top: 20px;
      }

      .section-heading {
        align-items: start;
      }

      .section-heading-note {
        display: none;
      }

      .featured-shell {
        margin-bottom: 29px;
        padding: 6px;
        border-radius: 18px;
      }

      .featured-button {
        border-radius: 13px;
      }

      .cover-art.is-featured {
        aspect-ratio: 16 / 9;
      }

      .cover-copy {
        top: 10%;
        bottom: 10%;
        left: 6%;
        width: 70%;
      }

      .cover-headline,
      .is-featured .cover-headline {
        font-size: clamp(19px, 6vw, 27px);
      }

      .cover-code {
        margin-bottom: 5px;
      }

      .cover-tagline {
        margin-top: 6px;
        padding: 4px 6px;
      }

      .cover-widget {
        right: 4%;
        bottom: 8%;
        width: 24%;
        padding: 7px;
        border-radius: 8px;
      }

      .cover-widget strong {
        font-size: clamp(13px, 4vw, 18px);
      }

      .widget-bars {
        margin-top: 5px;
      }

      .cover-index {
        top: 6%;
        right: 4%;
      }

      .hero-controls {
        right: 12px;
        left: 12px;
      }

      .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 17px;
      }

      .article-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .article-body h3 {
        min-height: 0;
        font-size: 20px;
      }

      .sidebar,
      .detail-side {
        grid-template-columns: minmax(0, 1fr);
      }

      .profile-card,
      .lead-card {
        grid-row: auto;
      }

      .detail-paper {
        padding: 25px 20px;
      }

      .detail-paper h1 {
        font-size: 33px;
      }

      .detail-deck {
        font-size: 14px;
      }

      .article-copy {
        font-size: 16px;
      }

      .footer-inner {
        min-height: 110px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
      }
    }

    /* Approved direction: white blog chrome with independently composed title-led covers. */
    .home-view {
      padding-top: 22px;
    }

    .section-heading {
      margin-bottom: 10px;
    }

    .section-heading h1 {
      font-size: clamp(23px, 2.5vw, 29px);
    }

    .featured-shell {
      margin-bottom: 29px;
      padding: 0;
      border: 0;
      border-radius: 18px;
      background: transparent;
      box-shadow: none;
    }

    .featured-button {
      border-radius: 18px;
      box-shadow: 0 14px 38px rgba(15, 20, 30, 0.16);
    }

    .hero-footer {
      padding: 9px 4px 0;
    }

    .cover-art {
      position: relative;
      isolation: isolate;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--cover-deep);
      color: #fff;
    }

    .cover-art.is-featured {
      aspect-ratio: 16 / 7.55;
    }

    .cover-photo {
      position: absolute;
      z-index: -5;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.3;
      filter: saturate(1.08) contrast(1.12);
      transform: scale(1.02);
    }

    .cover-art::before {
      content: "";
      position: absolute;
      z-index: -4;
      inset: 0;
      background:
        radial-gradient(circle at 80% 24%, color-mix(in srgb, var(--cover-accent) 28%, transparent), transparent 31%),
        linear-gradient(112deg, rgba(2, 7, 15, 0.98) 0%, rgba(5, 11, 21, 0.9) 45%, rgba(5, 11, 21, 0.3) 78%, rgba(5, 11, 21, 0.62) 100%);
    }

    .cover-art::after {
      content: "";
      position: absolute;
      z-index: -3;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 30px 30px;
      mask-image: linear-gradient(90deg, #000, transparent 78%);
      opacity: 0.34;
    }

    .cover-copy {
      position: absolute;
      z-index: 5;
      top: 13%;
      bottom: auto;
      left: 6%;
      width: 60%;
      display: block;
    }

    .cover-code {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 8px;
      color: color-mix(in srgb, var(--cover-accent) 88%, #fff);
      font-size: clamp(7px, 0.78vw, 10px);
      font-weight: 850;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .cover-code::before {
      content: "";
      width: 19px;
      height: 2px;
      border-radius: 999px;
      background: var(--cover-accent);
      box-shadow: 0 0 12px var(--cover-accent);
    }

    .cover-lead {
      display: block;
      margin-bottom: 2px;
      color: rgba(255, 255, 255, 0.69);
      font-size: clamp(9px, 1vw, 13px);
      font-weight: 730;
    }

    .cover-headline {
      display: block;
      max-width: 100%;
      font-family: var(--display);
      font-size: clamp(19px, 2.3vw, 33px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.055em;
      text-wrap: balance;
      text-shadow: 0 5px 24px rgba(0, 0, 0, 0.36);
    }

    .is-featured .cover-headline {
      font-size: clamp(27px, 3.85vw, 51px);
    }

    .cover-tagline {
      display: inline-flex;
      margin-top: 9px;
      padding: 5px 9px;
      border: 1px solid color-mix(in srgb, var(--cover-accent) 44%, transparent);
      border-radius: 6px;
      background: color-mix(in srgb, var(--cover-accent) 14%, rgba(4, 9, 17, 0.58));
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(7px, 0.82vw, 10px);
      font-weight: 750;
      line-height: 1.2;
      backdrop-filter: blur(9px);
    }

    .cover-scene {
      position: absolute;
      z-index: 4;
      pointer-events: none;
    }

    .scene-label {
      color: rgba(255, 255, 255, 0.5);
      font-size: clamp(5px, 0.56vw, 8px);
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .cover--fleet-check .cover-photo {
      object-position: 72% center;
    }

    .cover--fleet-check .cover-copy {
      width: 61%;
    }

    .fleet-console {
      right: 5%;
      bottom: 10%;
      width: 27%;
      min-width: 86px;
      padding: clamp(7px, 1.15vw, 14px);
      border: 1px solid rgba(99, 214, 255, 0.32);
      border-radius: 12px;
      background: rgba(3, 15, 27, 0.72);
      box-shadow: 0 17px 34px rgba(0, 0, 0, 0.25), inset 0 0 26px rgba(99, 214, 255, 0.05);
      backdrop-filter: blur(10px);
      transform: rotate(1.5deg);
    }

    .fleet-console-top {
      display: flex;
      gap: 4px;
      margin-bottom: 7px;
    }

    .fleet-console-top i {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--cover-accent);
      opacity: 0.78;
    }

    .fleet-score {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 4px;
    }

    .fleet-score strong {
      font-size: clamp(24px, 3.5vw, 48px);
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: -0.08em;
    }

    .fleet-score span {
      color: var(--cover-accent);
      font-size: clamp(6px, 0.62vw, 8px);
      font-weight: 850;
    }

    .fleet-nodes {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
      margin-top: 9px;
    }

    .fleet-nodes i {
      aspect-ratio: 1;
      border-radius: 2px;
      background: rgba(99, 214, 255, 0.6);
      box-shadow: 0 0 5px rgba(99, 214, 255, 0.36);
    }

    .fleet-nodes i:nth-child(4n),
    .fleet-nodes i:nth-child(7n) {
      background: #ff7a63;
      box-shadow: 0 0 5px rgba(255, 122, 99, 0.4);
    }

    .cover--safe-content-factory .cover-photo {
      object-position: 64% center;
      opacity: 0.24;
    }

    .cover--safe-content-factory .cover-copy {
      top: 10%;
      width: 67%;
    }

    .pipeline-scene {
      right: 5.5%;
      bottom: 8%;
      left: 5.5%;
      height: 27%;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      align-items: center;
      gap: 2.5%;
    }

    .pipeline-scene::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 50%;
      right: 3%;
      left: 3%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cover-accent) 10%, var(--cover-accent) 86%, transparent);
      box-shadow: 0 0 12px color-mix(in srgb, var(--cover-accent) 55%, transparent);
    }

    .pipeline-node {
      display: grid;
      place-items: center;
      min-width: 0;
      aspect-ratio: 1.6;
      border: 1px solid rgba(255, 189, 82, 0.34);
      border-radius: 7px;
      background: rgba(20, 12, 3, 0.84);
      color: rgba(255, 255, 255, 0.8);
      font-size: clamp(6px, 0.72vw, 9px);
      font-weight: 800;
      box-shadow: 0 9px 18px rgba(0, 0, 0, 0.21);
    }

    .pipeline-node.is-gate {
      border-color: var(--cover-accent);
      background: var(--cover-accent);
      color: #211304;
      transform: scale(1.08);
    }

    .cover--layout-skill::before {
      background:
        radial-gradient(circle at 17% 50%, rgba(99, 229, 181, 0.22), transparent 29%),
        linear-gradient(90deg, rgba(4, 14, 11, 0.35), rgba(3, 10, 9, 0.97) 42%, rgba(3, 10, 9, 0.91));
    }

    .cover--layout-skill .cover-photo {
      opacity: 0.2;
    }

    .cover--layout-skill .cover-copy {
      top: 17%;
      left: 43%;
      width: 52%;
    }

    .writer-stack {
      top: 13%;
      bottom: 12%;
      left: 5%;
      width: 31%;
    }

    .writer-sheet {
      position: absolute;
      width: 61%;
      height: 58%;
      padding: 8%;
      border: 1px solid rgba(99, 229, 181, 0.3);
      border-radius: 8px;
      background: rgba(5, 28, 21, 0.86);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    }

    .writer-sheet:nth-child(1) {
      top: 0;
      left: 0;
      transform: rotate(-7deg);
    }

    .writer-sheet:nth-child(2) {
      top: 9%;
      left: 18%;
      transform: rotate(1deg);
    }

    .writer-sheet:nth-child(3) {
      top: 19%;
      left: 36%;
      transform: rotate(7deg);
    }

    .writer-sheet strong {
      display: block;
      color: var(--cover-accent);
      font-size: clamp(7px, 0.85vw, 11px);
    }

    .writer-sheet i {
      display: block;
      width: 100%;
      height: 3px;
      margin-top: 6px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.16);
    }

    .writer-sheet i:last-child {
      width: 64%;
    }

    .qa-stamp {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 48%;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border: 2px solid var(--cover-accent);
      border-radius: 50%;
      background: #071c16;
      color: var(--cover-accent);
      font-size: clamp(11px, 1.5vw, 20px);
      font-weight: 900;
      box-shadow: 0 0 22px rgba(99, 229, 181, 0.22);
    }

    .cover--native-writing::before {
      background:
        linear-gradient(90deg, rgba(87, 14, 19, 0.82), rgba(8, 9, 15, 0.8) 49%, rgba(15, 24, 66, 0.8)),
        linear-gradient(180deg, rgba(3, 5, 10, 0.28), rgba(3, 5, 10, 0.88));
    }

    .cover--native-writing .cover-photo {
      opacity: 0.2;
    }

    .cover--native-writing .cover-copy {
      top: 8%;
      left: 12%;
      width: 76%;
      text-align: center;
    }

    .cover--native-writing .cover-code {
      justify-content: center;
    }

    .platform-scene {
      right: 7%;
      bottom: 6%;
      left: 7%;
      height: 35%;
      display: grid;
      grid-template-columns: 1fr 0.42fr 1fr;
      align-items: center;
      gap: 4%;
    }

    .platform-card {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      padding: 0 9%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 9px;
      background: rgba(11, 13, 22, 0.72);
      color: #fff;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    .platform-card strong {
      font-size: clamp(8px, 1vw, 13px);
    }

    .platform-card span {
      color: rgba(255, 255, 255, 0.48);
      font-size: clamp(5px, 0.58vw, 7px);
    }

    .platform-card.is-xhs {
      border-color: rgba(255, 92, 86, 0.44);
      box-shadow: inset 0 0 18px rgba(255, 92, 86, 0.09);
    }

    .platform-card.is-douyin {
      border-color: rgba(92, 171, 255, 0.45);
      box-shadow: inset 0 0 18px rgba(92, 171, 255, 0.1);
    }

    .topic-source {
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border: 1px solid var(--cover-accent);
      border-radius: 50%;
      background: #131019;
      color: var(--cover-accent);
      font-size: clamp(6px, 0.72vw, 9px);
      font-weight: 900;
      box-shadow: 0 0 20px rgba(255, 130, 108, 0.24);
    }

    .cover--readme-path .cover-photo {
      object-position: 70% center;
      opacity: 0.2;
    }

    .cover--readme-path .cover-copy {
      top: 16%;
      width: 49%;
    }

    .terminal-scene {
      top: 16%;
      right: 5%;
      width: 40%;
      height: 67%;
      overflow: hidden;
      border: 1px solid rgba(196, 236, 103, 0.32);
      border-radius: 11px;
      background: rgba(8, 16, 7, 0.82);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
      transform: perspective(500px) rotateY(-5deg);
    }

    .terminal-top {
      height: 19%;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 8%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.035);
    }

    .terminal-top i {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.32);
    }

    .terminal-body {
      padding: 8% 9%;
      font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
      font-size: clamp(5px, 0.62vw, 8px);
      line-height: 1.9;
    }

    .terminal-body span {
      display: block;
      color: rgba(255, 255, 255, 0.55);
    }

    .terminal-body .command {
      color: #fff;
    }

    .terminal-body .success {
      margin-top: 6%;
      color: var(--cover-accent);
      font-weight: 800;
    }

    .cover--publish-gate .cover-photo {
      object-position: 64% center;
      opacity: 0.22;
    }

    .cover--publish-gate .cover-copy {
      top: 14%;
      width: 61%;
    }

    .publish-flow {
      top: 13%;
      right: 5%;
      width: 25%;
      height: 74%;
      display: grid;
      grid-template-rows: repeat(4, minmax(0, 1fr));
      gap: 6%;
    }

    .publish-flow::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 8%;
      bottom: 8%;
      left: 50%;
      width: 2px;
      background: linear-gradient(var(--cover-accent), rgba(255, 155, 75, 0.16));
    }

    .publish-step {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 155, 75, 0.28);
      border-radius: 8px;
      background: rgba(25, 12, 5, 0.87);
      color: rgba(255, 255, 255, 0.7);
      font-size: clamp(5px, 0.62vw, 8px);
      font-weight: 800;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .publish-step.is-locked {
      border-color: var(--cover-accent);
      background: var(--cover-accent);
      color: #251205;
      font-size: clamp(7px, 0.82vw, 11px);
    }

    .cover--two-lenses::before {
      background:
        radial-gradient(circle at 16% 50%, rgba(179, 202, 255, 0.18), transparent 28%),
        radial-gradient(circle at 84% 50%, rgba(179, 202, 255, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(5, 9, 17, 0.9), rgba(3, 5, 11, 0.72) 50%, rgba(5, 9, 17, 0.9));
    }

    .cover--two-lenses .cover-photo {
      opacity: 0.18;
    }

    .cover--two-lenses .cover-copy {
      top: 20%;
      left: 18%;
      width: 64%;
      text-align: center;
    }

    .cover--two-lenses .cover-code {
      justify-content: center;
    }

    .mirror-scene {
      inset: 7% 5%;
    }

    .mirror-disc {
      position: absolute;
      top: 20%;
      width: 28%;
      aspect-ratio: 1;
      border: 1px solid rgba(179, 202, 255, 0.35);
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.28), transparent 15%),
        radial-gradient(circle, rgba(83, 108, 168, 0.35), rgba(8, 14, 28, 0.62) 68%);
      box-shadow: inset 0 0 28px rgba(179, 202, 255, 0.17), 0 0 30px rgba(92, 120, 184, 0.12);
    }

    .mirror-disc:first-child {
      left: 0;
    }

    .mirror-disc:last-child {
      right: 0;
    }

    .mirror-disc span {
      position: absolute;
      right: 0;
      bottom: -13%;
      left: 0;
      color: rgba(255, 255, 255, 0.45);
      font-size: clamp(5px, 0.58vw, 8px);
      font-weight: 800;
      letter-spacing: 0.09em;
      text-align: center;
    }

    .mirror-axis {
      position: absolute;
      top: 50%;
      right: 31%;
      left: 31%;
      height: 1px;
      background: linear-gradient(90deg, var(--cover-accent), transparent 46%, transparent 54%, var(--cover-accent));
      opacity: 0.6;
    }

    .cover--content-factory .cover-photo {
      object-position: 68% center;
      opacity: 0.24;
    }

    .cover--content-factory .cover-copy {
      top: 15%;
      width: 52%;
    }

    .factory-scene {
      top: 9%;
      right: 3%;
      width: 41%;
      height: 82%;
    }

    .factory-hub {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 35%;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border: 1px solid var(--cover-accent);
      border-radius: 50%;
      background: rgba(5, 22, 38, 0.9);
      color: var(--cover-accent);
      font-size: clamp(7px, 0.95vw, 12px);
      font-weight: 900;
      box-shadow: 0 0 34px rgba(86, 183, 255, 0.25);
      transform: translate(-50%, -50%);
    }

    .factory-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 84%;
      aspect-ratio: 1;
      border: 1px dashed rgba(86, 183, 255, 0.34);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .factory-node {
      position: absolute;
      min-width: 26%;
      padding: 5% 6%;
      border: 1px solid rgba(86, 183, 255, 0.28);
      border-radius: 7px;
      background: rgba(4, 17, 30, 0.84);
      color: rgba(255, 255, 255, 0.72);
      font-size: clamp(5px, 0.61vw, 8px);
      font-weight: 800;
      text-align: center;
      box-shadow: 0 9px 18px rgba(0, 0, 0, 0.22);
    }

    .factory-node:nth-child(3) {
      top: 4%;
      left: 35%;
    }

    .factory-node:nth-child(4) {
      top: 38%;
      right: 0;
    }

    .factory-node:nth-child(5) {
      right: 16%;
      bottom: 3%;
    }

    .factory-node:nth-child(6) {
      bottom: 3%;
      left: 14%;
    }

    .factory-node:nth-child(7) {
      top: 38%;
      left: 0;
    }

    @media (max-width: 650px) {
      .home-view {
        padding-top: 15px;
      }

      .section-heading h1 {
        font-size: 23px;
      }

      .featured-shell {
        padding: 0;
      }

      .cover-art.is-featured {
        aspect-ratio: 16 / 9;
      }

      .cover-headline,
      .is-featured .cover-headline {
        font-size: clamp(18px, 5.8vw, 25px);
      }

      .cover-tagline {
        padding: 4px 6px;
      }

      .cover--layout-skill .cover-copy {
        left: 42%;
        width: 54%;
      }

      .cover--native-writing .cover-copy {
        left: 10%;
        width: 80%;
      }

      .cover--two-lenses .cover-copy {
        left: 16%;
        width: 68%;
      }

      .pipeline-node {
        border-radius: 5px;
      }

      .hero-controls {
        right: 9px;
        left: 9px;
      }
    }

    .cover-art.cover-image-only,
    .cover-art.cover-image-only.is-featured {
      aspect-ratio: 16 / 9;
      background: #071321;
    }

    .cover-art.cover-image-only::before,
    .cover-art.cover-image-only::after {
      display: none;
    }

    .final-cover-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 380ms cubic-bezier(.2, .72, .2, 1);
    }

    .article-card:hover .final-cover-image,
    .featured-button:hover .final-cover-image {
      transform: scale(1.025);
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
