/* roulang page: index */
:root {
      --ink: #151312;
      --ink-2: #25201f;
      --paper: #f7f0e4;
      --paper-soft: #fffaf1;
      --text: #f8f3eb;
      --text-dark: #231f1d;
      --muted: #bdb4a8;
      --muted-dark: #6d6259;
      --line: rgba(255,255,255,.16);
      --line-dark: rgba(35,31,29,.12);
      --red: #c7352d;
      --red-deep: #98241f;
      --amber: #f0b45b;
      --cyan: #57d1d8;
      --green: #62c58f;
      --radius: 8px;
      --shadow: 0 18px 50px rgba(0,0,0,.24);
      --shadow-soft: 0 12px 28px rgba(40,28,20,.10);
      --container: 1180px;
      --nav-h: 76px;
      --ease: .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text-dark);
      background: var(--paper);
      line-height: 1.7;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input,
    select {
      width: 100%;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 6px;
      background: rgba(255,255,255,.08);
      color: var(--text);
      min-height: 48px;
      padding: 0 14px;
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    input::placeholder {
      color: rgba(248,243,235,.62);
    }

    input:focus,
    select:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 2px solid rgba(87,209,216,.75);
      outline-offset: 3px;
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(87,209,216,.14);
    }

    .site-shell {
      position: relative;
      min-height: 100vh;
      background:
        radial-gradient(circle at 50% 0%, rgba(199,53,45,.28), transparent 34rem),
        radial-gradient(circle at 78% 14%, rgba(87,209,216,.14), transparent 30rem),
        linear-gradient(180deg, #171312 0%, #211c1a 42%, #f7f0e4 42%, #f7f0e4 100%);
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 84px 0;
      position: relative;
    }

    .section.compact {
      padding: 56px 0;
    }

    .section-dark {
      color: var(--text);
      background: linear-gradient(180deg, rgba(22,18,17,.92), rgba(32,27,25,.98));
    }

    .section-paper {
      background:
        linear-gradient(90deg, rgba(199,53,45,.05) 1px, transparent 1px),
        linear-gradient(180deg, var(--paper-soft), var(--paper));
      background-size: 36px 36px, auto;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--red);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .section-kicker::before {
      content: "";
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
    }

    .section-title {
      margin: 0 0 14px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-lead {
      margin: 0;
      max-width: 760px;
      color: var(--muted-dark);
      font-size: 17px;
    }

    .section-dark .section-lead {
      color: rgba(248,243,235,.72);
    }

    .site-header {
      position: fixed;
      inset: 18px 0 auto;
      z-index: 100;
      transition: inset var(--ease), background var(--ease), box-shadow var(--ease);
    }

    .site-header.is-solid {
      inset: 0 0 auto;
      background: rgba(21,19,18,.96);
      box-shadow: 0 10px 32px rgba(0,0,0,.28);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .nav-wrap {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
      min-height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 18px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: rgba(22,18,17,.56);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 45px rgba(0,0,0,.18);
    }

    .site-header.is-solid .nav-wrap {
      border-radius: 0;
      border-color: transparent;
      background: transparent;
      box-shadow: none;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--red), var(--amber));
      color: #1b1412;
      font-weight: 900;
      box-shadow: 0 0 22px rgba(199,53,45,.32);
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
    }

    .main-nav a {
      color: rgba(248,243,235,.84);
      padding: 10px 12px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: #fff;
      background: rgba(255,255,255,.10);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-dot {
      width: 40px;
      height: 40px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: var(--text);
      display: grid;
      place-items: center;
    }

    .search-dot::before {
      content: "";
      width: 15px;
      height: 15px;
      border: 2px solid currentColor;
      border-radius: 50%;
      box-shadow: 8px 8px 0 -6px currentColor;
      transform: rotate(-8deg);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 6px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      box-shadow: 0 12px 24px rgba(199,53,45,.22);
    }

    .btn-primary:hover {
      background: var(--red-deep);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(199,53,45,.28);
    }

    .btn-ghost {
      color: var(--text);
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.08);
    }

    .btn-ghost:hover {
      color: #fff;
      border-color: rgba(255,255,255,.36);
      background: rgba(255,255,255,.14);
      transform: translateY(-2px);
    }

    .btn-paper {
      color: var(--text-dark);
      border-color: var(--line-dark);
      background: rgba(255,255,255,.72);
    }

    .btn-paper:hover {
      color: var(--red-deep);
      border-color: rgba(199,53,45,.28);
      background: #fff;
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: var(--text);
      position: relative;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 11px;
      right: 11px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform var(--ease), opacity var(--ease), top var(--ease);
    }

    .menu-toggle span {
      top: 20px;
    }

    .menu-toggle::before {
      top: 13px;
    }

    .menu-toggle::after {
      top: 27px;
    }

    .menu-toggle.is-open span {
      opacity: 0;
    }

    .menu-toggle.is-open::before {
      top: 20px;
      transform: rotate(45deg);
    }

    .menu-toggle.is-open::after {
      top: 20px;
      transform: rotate(-45deg);
    }

    .hero {
      min-height: 760px;
      padding: 150px 0 88px;
      color: var(--text);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 72%);
      opacity: .46;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 980px;
      margin: 0 auto;
      text-align: center;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: rgba(248,243,235,.9);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .badge.red {
      border-color: rgba(199,53,45,.42);
      background: rgba(199,53,45,.16);
      color: #ffd9d6;
    }

    .badge.amber {
      border-color: rgba(240,180,91,.42);
      background: rgba(240,180,91,.16);
      color: #ffe3b7;
    }

    .badge.cyan {
      border-color: rgba(87,209,216,.42);
      background: rgba(87,209,216,.14);
      color: #cdfcff;
    }

    .badge.green {
      border-color: rgba(98,197,143,.42);
      background: rgba(98,197,143,.14);
      color: #dcffe9;
    }

    .hero h1 {
      margin: 0 auto 22px;
      max-width: 900px;
      font-size: clamp(38px, 7vw, 76px);
      line-height: 1.05;
      letter-spacing: 0;
      font-weight: 800;
      text-wrap: balance;
    }

    .hero-text {
      max-width: 780px;
      margin: 0 auto 28px;
      color: rgba(248,243,235,.76);
      font-size: clamp(17px, 2.2vw, 20px);
    }

    .hero-search {
      width: min(100%, 760px);
      margin: 0 auto 20px;
      padding: 8px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: rgba(10,8,8,.42);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .hero-search input {
      border: none;
      background: transparent;
      min-height: 52px;
      font-size: 16px;
    }

    .quick-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 0 auto 28px;
    }

    .quick-links a {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 12px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.07);
      color: rgba(248,243,235,.86);
      font-weight: 700;
      font-size: 14px;
    }

    .quick-links a:hover {
      background: rgba(255,255,255,.13);
      border-color: rgba(240,180,91,.45);
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 760px;
      margin: 0 auto;
    }

    .metric {
      min-height: 92px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.07);
      padding: 16px;
      text-align: left;
    }

    .metric strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 5px;
    }

    .metric span {
      color: rgba(248,243,235,.68);
      font-size: 14px;
    }

    .highlight-layout {
      display: grid;
      grid-template-columns: .95fr 1.35fr;
      gap: 34px;
      align-items: start;
    }

    .editor-note {
      padding: 26px;
      border-radius: 8px;
      background: #fff8ec;
      border: 1px solid var(--line-dark);
      box-shadow: var(--shadow-soft);
    }

    .editor-note p {
      margin: 0 0 16px;
      color: var(--muted-dark);
    }

    .editor-note p:last-child {
      margin-bottom: 0;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .feature-card {
      position: relative;
      min-height: 184px;
      padding: 22px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .feature-card::after {
      content: "";
      position: absolute;
      inset: auto 18px 18px auto;
      width: 72px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--red), var(--amber), var(--cyan));
      opacity: .22;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(199,53,45,.32);
      box-shadow: 0 18px 34px rgba(40,28,20,.14);
    }

    .feature-card h3,
    .slot-card h3,
    .focus-card h3,
    .story-card h3,
    .media-card h3 {
      margin: 12px 0 8px;
      font-size: 20px;
      line-height: 1.28;
      font-weight: 800;
    }

    .feature-card p,
    .slot-card p,
    .focus-card p,
    .story-card p,
    .media-card p {
      margin: 0;
      color: var(--muted-dark);
    }

    .slot-row {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: stretch;
      margin-top: 34px;
    }

    .slot-card {
      border: 1px solid rgba(255,255,255,.14);
      background:
        radial-gradient(circle at 12% 0%, rgba(199,53,45,.22), transparent 18rem),
        rgba(255,255,255,.06);
      border-radius: 8px;
      padding: 24px;
      min-height: 230px;
      box-shadow: var(--shadow);
    }

    .slot-card.large {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 20px;
      align-items: center;
    }

    .slot-time {
      width: 110px;
      aspect-ratio: 1;
      border-radius: 8px;
      display: grid;
      place-items: center;
      text-align: center;
      border: 1px solid rgba(240,180,91,.4);
      background: rgba(240,180,91,.13);
      color: #ffe3b7;
      font-weight: 800;
      line-height: 1.25;
    }

    .slot-list {
      display: grid;
      gap: 12px;
    }

    .slot-list .slot-card {
      min-height: auto;
      padding: 18px;
    }

    .story-timeline {
      margin-top: 34px;
      display: grid;
      gap: 16px;
      max-width: 880px;
    }

    .story-card {
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 18px;
      align-items: start;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
    }

    .story-index {
      display: inline-grid;
      place-items: center;
      min-height: 46px;
      border-radius: 6px;
      color: var(--red-deep);
      background: rgba(199,53,45,.10);
      font-weight: 900;
    }

    .news-layout {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.35fr .72fr;
      gap: 22px;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow-soft);
    }

    .news-item:hover {
      border-color: rgba(199,53,45,.3);
      transform: translateY(-2px);
    }

    .news-item h3 {
      margin: 8px 0 5px;
      font-size: 19px;
      line-height: 1.35;
      font-weight: 800;
    }

    .news-item p {
      margin: 0;
      color: var(--muted-dark);
    }

    .news-arrow {
      width: 42px;
      height: 42px;
      border-radius: 6px;
      display: grid;
      place-items: center;
      color: var(--red);
      background: rgba(199,53,45,.09);
      font-weight: 900;
    }

    .recommend-box {
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        radial-gradient(circle at 100% 0%, rgba(87,209,216,.18), transparent 16rem),
        #211c1a;
      color: var(--text);
      padding: 24px;
      min-height: 100%;
      box-shadow: var(--shadow);
    }

    .recommend-box h3 {
      margin: 12px 0 10px;
      font-size: 24px;
      font-weight: 800;
    }

    .recommend-box p {
      color: rgba(248,243,235,.72);
      margin-bottom: 18px;
    }

    .focus-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .focus-card {
      min-height: 208px;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: #fff8ec;
      box-shadow: var(--shadow-soft);
    }

    .media-scroll {
      margin-top: 34px;
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(280px, 380px);
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-color: var(--red) rgba(0,0,0,.08);
    }

    .media-card {
      min-height: 238px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.14);
      background:
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        #211c1a;
      color: var(--text);
      padding: 22px;
      box-shadow: var(--shadow);
      transition: transform var(--ease), border-color var(--ease);
    }

    .media-card:hover {
      transform: translateY(-2px);
      border-color: rgba(240,180,91,.42);
    }

    .media-card p {
      color: rgba(248,243,235,.72);
    }

    .trust-band {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      margin-top: 34px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--line-dark);
      box-shadow: var(--shadow-soft);
      background: var(--line-dark);
    }

    .trust-item {
      min-height: 138px;
      padding: 20px;
      background: rgba(255,255,255,.82);
    }

    .trust-item strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      margin-bottom: 8px;
      color: var(--red-deep);
    }

    .trust-item span {
      color: var(--muted-dark);
      font-size: 14px;
    }

    .form-panel {
      margin-top: 34px;
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.14);
      background:
        radial-gradient(circle at 15% 10%, rgba(240,180,91,.24), transparent 22rem),
        radial-gradient(circle at 92% 14%, rgba(199,53,45,.22), transparent 22rem),
        #211c1a;
      padding: 28px;
      color: var(--text);
      box-shadow: var(--shadow);
    }

    .form-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 22px;
    }

    .form-copy p {
      margin: 0;
      color: rgba(248,243,235,.72);
    }

    .subscribe-form {
      display: grid;
      gap: 12px;
      align-content: start;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }

    .subscribe-form label {
      color: rgba(248,243,235,.82);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: -4px;
    }

    .select-wrap {
      position: relative;
    }

    .subscribe-form select {
      color: var(--text);
      appearance: none;
      background: rgba(255,255,255,.08);
    }

    .subscribe-form option {
      color: var(--text-dark);
      background: #fff;
    }

    .privacy-note {
      font-size: 13px;
      color: rgba(248,243,235,.58);
      margin: 0;
    }

    .faq-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 26px;
      align-items: start;
    }

    .faq-side {
      padding: 24px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: #fff8ec;
      box-shadow: var(--shadow-soft);
    }

    .accordion {
      background: transparent;
      margin: 0;
    }

    .accordion-item {
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.82);
      box-shadow: var(--shadow-soft);
    }

    .accordion-title {
      border: none;
      padding: 18px 48px 18px 18px;
      color: var(--text-dark);
      font-weight: 800;
      font-size: 17px;
      line-height: 1.4;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(199,53,45,.06);
      color: var(--red-deep);
    }

    .accordion-title::before {
      right: 18px;
      margin-top: -12px;
      font-size: 24px;
      color: var(--red);
    }

    .accordion-content {
      border: none;
      border-top: 1px solid var(--line-dark);
      color: var(--muted-dark);
      background: rgba(255,255,255,.72);
      padding: 18px;
    }

    .floating-cta {
      position: sticky;
      bottom: 14px;
      z-index: 80;
      margin: 0 auto 18px;
      width: min(calc(100% - 32px), 900px);
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(21,19,18,.88);
      color: var(--text);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .floating-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 14px;
    }

    .floating-inner strong {
      display: block;
      line-height: 1.3;
    }

    .floating-inner span {
      color: rgba(248,243,235,.64);
      font-size: 13px;
    }

    .site-footer {
      color: rgba(248,243,235,.76);
      background:
        radial-gradient(circle at 12% 0%, rgba(199,53,45,.18), transparent 22rem),
        #151312;
      padding: 56px 0 26px;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-text {
      margin: 0;
      max-width: 520px;
      color: rgba(248,243,235,.64);
    }

    .footer-title {
      color: #fff;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(248,243,235,.68);
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(248,243,235,.52);
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .nav-wrap {
        min-height: 68px;
      }

      .main-nav,
      .nav-actions {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .main-nav.is-open {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,.18);
        background: rgba(21,19,18,.94);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow);
      }

      .main-nav.is-open a {
        padding: 13px 12px;
      }

      .highlight-layout,
      .slot-row,
      .news-layout,
      .form-panel,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .focus-grid,
      .trust-band {
        grid-template-columns: repeat(2, 1fr);
      }

      .slot-card.large {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      :root {
        --nav-h: 64px;
      }

      .section {
        padding: 64px 0;
      }

      .hero {
        min-height: auto;
        padding: 128px 0 70px;
      }

      .hero-search {
        grid-template-columns: 1fr;
      }

      .hero-search .btn {
        width: 100%;
      }

      .hero-metrics,
      .feature-grid,
      .focus-grid,
      .trust-band,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .story-card {
        grid-template-columns: 1fr;
      }

      .news-item {
        grid-template-columns: 1fr;
      }

      .news-arrow {
        display: none;
      }

      .form-panel {
        padding: 20px;
      }

      .floating-inner {
        align-items: stretch;
        flex-direction: column;
      }

      .floating-inner .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .container,
      .nav-wrap {
        width: min(calc(100% - 22px), var(--container));
      }

      .brand {
        font-size: 16px;
      }

      .brand-mark {
        width: 30px;
        height: 30px;
      }

      .badge-row,
      .quick-links {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
      }

      .hero-inner {
        text-align: left;
      }

      .hero h1 {
        font-size: 36px;
      }

      .media-scroll {
        grid-auto-columns: minmax(248px, 86vw);
      }

      .copyright {
        display: grid;
      }
    }

/* roulang page: category2 */
:root {
      --ink: #171615;
      --ink-2: #242220;
      --muted: #6f6962;
      --paper: #f5f0e8;
      --paper-2: #fffaf1;
      --line: rgba(36, 34, 32, .14);
      --line-dark: rgba(255, 255, 255, .16);
      --red: #b7252c;
      --red-dark: #901b22;
      --amber: #d89a35;
      --cyan: #38b9c8;
      --white: #fffdf8;
      --shadow: 0 18px 45px rgba(23, 22, 21, .12);
      --shadow-soft: 0 10px 28px rgba(23, 22, 21, .08);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.7;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(56, 185, 200, .35);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      z-index: 1000;
      top: 16px;
      left: 0;
      width: 100%;
      pointer-events: none;
    }

    .nav-shell {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px 12px 18px;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: var(--radius);
      background: rgba(23, 22, 21, .62);
      box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, top .24s ease;
    }

    .site-header.is-solid .nav-shell {
      background: rgba(23, 22, 21, .94);
      border-color: rgba(255, 255, 255, .12);
      box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      color: var(--white);
      font-weight: 800;
      font-size: 18px;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(183, 37, 44, .95), rgba(216, 154, 53, .88)),
        var(--red);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, .18) inset;
      font-size: 14px;
      font-weight: 800;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 1;
    }

    .main-nav a {
      color: rgba(255, 253, 248, .78);
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--white);
      background: rgba(255, 255, 255, .1);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-search {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: var(--white);
      background: rgba(255, 255, 255, .08);
    }

    .nav-search:hover {
      background: rgba(255, 255, 255, .14);
      transform: translateY(-1px);
    }

    .nav-search::before {
      content: "";
      width: 14px;
      height: 14px;
      border: 2px solid currentColor;
      border-radius: 50%;
      display: block;
      box-shadow: 8px 8px 0 -6px currentColor;
    }

    .nav-cta,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 11px 18px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .nav-cta,
    .btn-primary {
      color: var(--white);
      background: var(--red);
      box-shadow: 0 10px 28px rgba(183, 37, 44, .28);
    }

    .nav-cta:hover,
    .btn-primary:hover {
      color: var(--white);
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(183, 37, 44, .34);
    }

    .btn-secondary {
      color: var(--ink);
      background: rgba(255, 253, 248, .76);
      border-color: rgba(23, 22, 21, .16);
    }

    .btn-secondary:hover {
      color: var(--ink);
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius-sm);
      color: var(--white);
      background: rgba(255, 255, 255, .08);
      position: relative;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 11px;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 99px;
    }

    .menu-toggle span {
      top: 20px;
    }

    .menu-toggle::before {
      top: 14px;
    }

    .menu-toggle::after {
      top: 26px;
    }

    .hero {
      position: relative;
      padding: 138px 0 54px;
      background:
        radial-gradient(circle at 78% 18%, rgba(56, 185, 200, .24), transparent 30%),
        radial-gradient(circle at 18% 18%, rgba(183, 37, 44, .32), transparent 34%),
        linear-gradient(155deg, #181716 0%, #2a2420 48%, #4a171a 100%);
      color: var(--white);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .42;
      background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 85%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -180px;
      width: 760px;
      height: 320px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse, rgba(216, 154, 53, .28), transparent 68%);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .eyebrow-row,
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      color: var(--ink);
      background: var(--paper-2);
      border: 1px solid rgba(255, 255, 255, .36);
    }

    .badge.red {
      color: var(--white);
      background: rgba(183, 37, 44, .9);
      border-color: rgba(255, 255, 255, .16);
    }

    .badge.cyan {
      color: #062d33;
      background: rgba(56, 185, 200, .9);
    }

    .badge.amber {
      color: #3b2600;
      background: rgba(216, 154, 53, .95);
    }

    .hero-title {
      margin: 22px 0 16px;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 760px;
      color: rgba(255, 253, 248, .82);
      font-size: 18px;
      margin: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .countdown-panel {
      background: rgba(255, 253, 248, .09);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: 0 22px 58px rgba(0, 0, 0, .24);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .countdown-title {
      margin: 0 0 16px;
      color: rgba(255, 253, 248, .86);
      font-weight: 800;
    }

    .ring-wrap {
      display: grid;
      grid-template-columns: 116px 1fr;
      gap: 18px;
      align-items: center;
    }

    .countdown-ring {
      width: 116px;
      height: 116px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        conic-gradient(var(--amber) 0 72%, rgba(255, 255, 255, .13) 72% 100%),
        radial-gradient(circle, rgba(255, 253, 248, .12) 0 60%, transparent 61%);
      position: relative;
    }

    .countdown-ring::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      background: #211c19;
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .ring-number {
      position: relative;
      z-index: 1;
      text-align: center;
      font-weight: 800;
      font-size: 30px;
      line-height: 1;
    }

    .ring-number span {
      display: block;
      margin-top: 4px;
      font-size: 12px;
      color: rgba(255, 253, 248, .68);
    }

    .point-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .point-list li {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      color: rgba(255, 253, 248, .82);
      font-size: 14px;
    }

    .point-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 4px rgba(56, 185, 200, .14);
      flex: 0 0 auto;
    }

    .section {
      padding: 76px 0;
      position: relative;
    }

    .section.light {
      background: var(--paper-2);
    }

    .section.dark {
      color: var(--white);
      background:
        radial-gradient(circle at 18% 18%, rgba(183, 37, 44, .18), transparent 30%),
        linear-gradient(155deg, #191817, #292522 60%, #201615);
    }

    .section-head {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--red);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .section.dark .section-kicker {
      color: var(--amber);
    }

    .section-title {
      margin: 0;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-copy {
      margin: 12px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 16px;
    }

    .section.dark .section-copy {
      color: rgba(255, 253, 248, .72);
    }

    .notice-strip {
      display: grid;
      grid-template-columns: minmax(220px, .85fr) 1.4fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }

    .notice-title {
      margin: 0;
      font-size: 22px;
      font-weight: 800;
      line-height: 1.25;
    }

    .notice-text {
      margin: 0;
      color: var(--muted);
    }

    .index-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 22px;
      align-items: start;
    }

    .index-card {
      min-height: 100%;
      padding: 26px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }

    .index-card.featured {
      background:
        linear-gradient(160deg, rgba(183, 37, 44, .08), transparent 42%),
        var(--white);
    }

    .index-card h3 {
      margin: 16px 0 10px;
      font-size: 24px;
      font-weight: 800;
      line-height: 1.28;
    }

    .index-card p {
      margin: 0;
      color: var(--muted);
    }

    .index-items {
      display: grid;
      gap: 14px;
    }

    .mini-item {
      display: grid;
      grid-template-columns: 116px 1fr;
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 8px 20px rgba(23, 22, 21, .05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .mini-item:hover {
      transform: translateY(-2px);
      border-color: rgba(183, 37, 44, .32);
      box-shadow: var(--shadow-soft);
    }

    .mini-visual {
      min-height: 98px;
      border-radius: var(--radius-sm);
      background:
        linear-gradient(0deg, rgba(23, 22, 21, .18), rgba(23, 22, 21, .18)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .18) 0 2px, transparent 2px 14px),
        linear-gradient(145deg, #2f2925, #8b2026);
      position: relative;
      overflow: hidden;
    }

    .mini-visual::after {
      content: "字幕";
      position: absolute;
      left: 12px;
      bottom: 10px;
      color: rgba(255, 253, 248, .92);
      font-size: 13px;
      font-weight: 800;
    }

    .mini-item h3 {
      margin: 8px 0 6px;
      font-size: 19px;
      line-height: 1.28;
      font-weight: 800;
    }

    .mini-item p {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--red);
      font-weight: 800;
      font-size: 14px;
    }

    .text-link:hover {
      color: var(--red-dark);
    }

    .text-link::after {
      content: "";
      width: 18px;
      height: 1px;
      background: currentColor;
      transition: width .2s ease;
    }

    .text-link:hover::after {
      width: 28px;
    }

    .guide-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 26px;
    }

    .guide-card {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, .13);
      background: rgba(255, 253, 248, .07);
      box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
    }

    .guide-card h3 {
      margin: 14px 0 10px;
      color: var(--white);
      font-size: 22px;
      font-weight: 800;
    }

    .guide-card p {
      margin: 0;
      color: rgba(255, 253, 248, .72);
    }

    .group-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 24px;
      align-items: start;
    }

    .group-nav {
      position: sticky;
      top: 104px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }

    .group-nav-title {
      margin: 0 0 12px;
      font-weight: 800;
      color: var(--ink);
    }

    .group-nav a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
      border-top: 1px solid rgba(23, 22, 21, .08);
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .group-nav a:hover {
      color: var(--red);
    }

    .entry-list {
      display: grid;
      gap: 14px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 8px 22px rgba(23, 22, 21, .05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(56, 185, 200, .38);
      box-shadow: var(--shadow-soft);
    }

    .entry-card h3 {
      margin: 8px 0 6px;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.32;
    }

    .entry-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 4px 9px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(23, 22, 21, .05);
      border: 1px solid rgba(23, 22, 21, .08);
      font-size: 12px;
      font-weight: 800;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .process-card {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper-2);
    }

    .process-number {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      color: var(--white);
      background: var(--ink);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .process-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
    }

    .process-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .13);
    }

    .trust-item {
      padding: 24px;
      background: rgba(255, 253, 248, .06);
    }

    .trust-num {
      color: var(--amber);
      font-size: 28px;
      line-height: 1;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .trust-item h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
    }

    .trust-item p {
      margin: 0;
      color: rgba(255, 253, 248, .68);
      font-size: 14px;
    }

    .faq-wrap {
      max-width: 900px;
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(23, 22, 21, .04);
    }

    .accordion-title {
      padding: 18px 48px 18px 20px;
      border: 0;
      color: var(--ink);
      font-size: 17px;
      font-weight: 800;
      line-height: 1.45;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--red);
      background: rgba(183, 37, 44, .04);
    }

    .accordion-title::before {
      right: 20px;
      margin-top: -10px;
      font-size: 22px;
      color: var(--red);
    }

    .accordion-content {
      padding: 0 20px 20px;
      border: 0;
      color: var(--muted);
      background: var(--white);
    }

    .subscribe-panel {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: center;
      padding: 34px;
      border-radius: var(--radius);
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(183, 37, 44, .82), rgba(23, 22, 21, .92)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .subscribe-panel::after {
      content: "";
      position: absolute;
      right: -80px;
      top: -90px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 154, 53, .35), transparent 66%);
      pointer-events: none;
    }

    .subscribe-panel > * {
      position: relative;
      z-index: 1;
    }

    .subscribe-panel h2 {
      margin: 12px 0 10px;
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.18;
      font-weight: 800;
    }

    .subscribe-panel p {
      margin: 0;
      color: rgba(255, 253, 248, .78);
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: 1fr 160px;
      gap: 12px;
    }

    .subscribe-form input,
    .subscribe-form select {
      height: 48px;
      margin: 0;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, .2);
      background: rgba(255, 253, 248, .95);
      color: var(--ink);
      box-shadow: none;
    }

    .subscribe-form input:focus,
    .subscribe-form select:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(56, 185, 200, .18);
    }

    .subscribe-note {
      margin-top: 10px;
      color: rgba(255, 253, 248, .68);
      font-size: 13px;
    }

    .site-footer {
      padding: 56px 0 26px;
      color: rgba(255, 253, 248, .78);
      background: #171615;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .8fr;
      gap: 28px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      margin-bottom: 10px;
      color: var(--white);
      font-size: 22px;
      font-weight: 800;
    }

    .footer-text {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 253, 248, .68);
    }

    .footer-title {
      margin-bottom: 12px;
      color: var(--white);
      font-weight: 800;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 253, 248, .68);
    }

    .footer-links a:hover {
      color: var(--amber);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255, 253, 248, .54);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .nav-shell {
        flex-wrap: wrap;
      }

      .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-top: 8px;
      }

      .hero {
        padding-top: 156px;
      }

      .notice-strip,
      .index-grid,
      .group-layout,
      .subscribe-panel {
        grid-template-columns: 1fr;
      }

      .group-nav {
        position: relative;
        top: auto;
      }

      .process,
      .trust-strip {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .container,
      .nav-shell {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        top: 10px;
      }

      .nav-shell {
        padding: 10px;
      }

      .brand {
        font-size: 16px;
      }

      .main-nav,
      .nav-actions {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .nav-shell.menu-open .main-nav,
      .nav-shell.menu-open .nav-actions {
        display: grid;
        width: 100%;
      }

      .nav-shell.menu-open .main-nav {
        order: 3;
        gap: 4px;
        padding: 10px 0 0;
        overflow: visible;
      }

      .nav-shell.menu-open .main-nav a {
        width: 100%;
        padding: 12px;
      }

      .nav-shell.menu-open .nav-actions {
        order: 4;
        grid-template-columns: 42px 1fr;
        gap: 10px;
      }

      .hero {
        padding: 128px 0 44px;
      }

      .hero-title {
        font-size: 34px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .ring-wrap,
      .mini-item,
      .entry-card {
        grid-template-columns: 1fr;
      }

      .mini-visual {
        min-height: 120px;
      }

      .entry-card .btn {
        width: 100%;
      }

      .guide-row,
      .process,
      .trust-strip,
      .footer-grid,
      .subscribe-form {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 56px 0;
      }

      .subscribe-panel {
        padding: 24px;
      }
    }

    @media (max-width: 520px) {
      .hero-actions .btn,
      .notice-strip .btn,
      .subscribe-form .btn {
        width: 100%;
      }

      .countdown-panel,
      .index-card,
      .guide-card,
      .entry-card,
      .process-card {
        padding: 18px;
      }

      .copyright {
        display: grid;
      }
    }

/* roulang page: category1 */
:root {
      --ink: #191614;
      --ink-soft: #2a2522;
      --paper: #f7f1e8;
      --paper-deep: #efe3d2;
      --white: #fffaf2;
      --muted: #7e746a;
      --line: rgba(255, 250, 242, .18);
      --line-dark: rgba(25, 22, 20, .14);
      --red: #b7252d;
      --red-deep: #8f171f;
      --amber: #f0b65a;
      --cyan: #55d4cf;
      --green: #74bd7c;
      --radius: 8px;
      --shadow: 0 24px 70px rgba(16, 12, 10, .22);
      --shadow-soft: 0 12px 28px rgba(25, 22, 20, .11);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.72;
      color: var(--ink);
      background: var(--paper);
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    input,
    select {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--line-dark);
      border-radius: 6px;
      background: rgba(255, 250, 242, .92);
      color: var(--ink);
      padding: 0 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    input:focus,
    select:focus {
      border-color: var(--amber);
      box-shadow: 0 0 0 4px rgba(240, 182, 90, .22);
      background: #fff;
    }

    .container {
      width: min(calc(100% - 36px), var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      z-index: 50;
      left: 0;
      right: 0;
      top: 16px;
      pointer-events: none;
    }

    .nav-shell {
      pointer-events: auto;
      width: min(calc(100% - 36px), var(--container));
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 18px;
      min-height: 68px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(255, 250, 242, .18);
      border-radius: 8px;
      background: rgba(25, 22, 20, .62);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      color: var(--white);
      font-weight: 800;
      font-size: 18px;
      line-height: 1.2;
    }

    .brand-mark::before {
      content: "";
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background:
        linear-gradient(90deg, transparent 36%, rgba(255,255,255,.72) 36% 43%, transparent 43% 57%, rgba(255,255,255,.72) 57% 64%, transparent 64%),
        linear-gradient(135deg, var(--red), var(--amber));
      box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 10px 26px rgba(183, 37, 45, .34);
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin-left: auto;
    }

    .main-nav a {
      color: rgba(255, 250, 242, .78);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 6px;
      white-space: nowrap;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--white);
      background: rgba(255, 250, 242, .1);
    }

    .nav-tools {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 4px;
    }

    .search-dot {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 250, 242, .16);
      border-radius: 6px;
      color: var(--white);
      background: rgba(255, 250, 242, .08);
    }

    .search-dot::before {
      content: "";
      width: 15px;
      height: 15px;
      border: 2px solid currentColor;
      border-radius: 50%;
      box-shadow: 7px 7px 0 -5px currentColor;
      transform: rotate(-12deg);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 250, 242, .18);
      border-radius: 6px;
      background: rgba(255, 250, 242, .08);
      color: var(--white);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 9px;
      position: relative;
    }

    .menu-toggle span::before {
      position: absolute;
      top: -6px;
    }

    .menu-toggle span::after {
      position: absolute;
      top: 6px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 6px;
      font-weight: 800;
      line-height: 1.2;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn-primary {
      color: var(--white);
      background: var(--red);
      box-shadow: 0 12px 24px rgba(183, 37, 45, .26);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: var(--white);
      background: var(--red-deep);
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(183, 37, 45, .34);
    }

    .btn-secondary {
      color: var(--white);
      border-color: rgba(255, 250, 242, .28);
      background: rgba(255, 250, 242, .08);
    }

    .btn-secondary:hover {
      color: var(--white);
      border-color: rgba(240, 182, 90, .76);
      background: rgba(240, 182, 90, .13);
      transform: translateY(-2px);
    }

    .btn-ink {
      color: var(--white);
      background: var(--ink);
    }

    .btn-ink:hover {
      color: var(--white);
      background: var(--red-deep);
      transform: translateY(-2px);
    }

    .hero {
      position: relative;
      padding: 132px 0 74px;
      color: var(--white);
      background:
        radial-gradient(circle at 18% 12%, rgba(240, 182, 90, .36), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(85, 212, 207, .24), transparent 30%),
        linear-gradient(180deg, rgba(25, 22, 20, .96), rgba(42, 37, 34, .94) 68%, var(--paper) 68%);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .26;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, #000, transparent 78%);
    }

    .hero::after {
      content: "中文字幕 av影视";
      position: absolute;
      right: -24px;
      bottom: 112px;
      color: rgba(255, 250, 242, .045);
      font-size: clamp(54px, 11vw, 150px);
      font-weight: 800;
      white-space: nowrap;
      line-height: 1;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
    }

    .profile-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 30px;
      align-items: stretch;
    }

    .profile-head {
      padding: 30px;
      border-radius: 8px;
      border: 1px solid rgba(255, 250, 242, .16);
      background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .creator-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 26px;
    }

    .avatar {
      width: 74px;
      height: 74px;
      flex: 0 0 74px;
      border-radius: 50%;
      background:
        linear-gradient(90deg, rgba(255,255,255,.82) 10%, transparent 10% 22%, rgba(255,255,255,.68) 22% 32%, transparent 32% 68%, rgba(255,255,255,.72) 68% 79%, transparent 79%),
        radial-gradient(circle at 35% 28%, var(--amber), transparent 28%),
        linear-gradient(135deg, var(--red), #312420);
      box-shadow: 0 0 0 4px rgba(255, 250, 242, .1), 0 16px 36px rgba(0,0,0,.3);
    }

    .nickname {
      margin: 0 0 5px;
      font-size: 17px;
      font-weight: 800;
    }

    .profile-note {
      margin: 0;
      color: rgba(255, 250, 242, .68);
      font-size: 14px;
    }

    h1 {
      margin: 0;
      max-width: 780px;
      font-size: clamp(34px, 5.2vw, 64px);
      line-height: 1.1;
      font-weight: 800;
      color: var(--white);
    }

    .hero-lead {
      max-width: 720px;
      margin: 18px 0 0;
      color: rgba(255, 250, 242, .78);
      font-size: 18px;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin: 24px 0;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .badge-red {
      color: #ffe7e9;
      background: rgba(183, 37, 45, .28);
      border-color: rgba(183, 37, 45, .45);
    }

    .badge-amber {
      color: #3b260d;
      background: var(--amber);
      border-color: rgba(240, 182, 90, .55);
    }

    .badge-cyan {
      color: #082e31;
      background: var(--cyan);
      border-color: rgba(85, 212, 207, .45);
    }

    .badge-dark {
      color: var(--white);
      background: rgba(25, 22, 20, .74);
      border-color: rgba(255, 250, 242, .18);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .status-board {
      padding: 22px;
      border-radius: 8px;
      border: 1px solid rgba(255, 250, 242, .16);
      background: rgba(18, 16, 15, .72);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .board-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 250, 242, .12);
    }

    .board-title strong {
      font-size: 18px;
      line-height: 1.3;
    }

    .status-list {
      display: grid;
      gap: 12px;
      margin: 0;
      list-style: none;
    }

    .status-list li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      min-height: 58px;
      padding: 13px 14px;
      border: 1px solid rgba(255, 250, 242, .12);
      border-radius: 8px;
      background: rgba(255, 250, 242, .06);
    }

    .status-list span {
      color: rgba(255, 250, 242, .68);
      font-size: 13px;
    }

    .section {
      padding: 76px 0;
      position: relative;
    }

    .section.light {
      background: var(--paper);
    }

    .section.dark {
      color: var(--white);
      background:
        radial-gradient(circle at 86% 8%, rgba(183, 37, 45, .22), transparent 26%),
        linear-gradient(180deg, var(--ink), var(--ink-soft));
    }

    .section-kicker {
      display: inline-flex;
      color: var(--red);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .section-title {
      margin: 0 0 14px;
      font-size: clamp(26px, 3.2vw, 42px);
      line-height: 1.18;
      font-weight: 800;
      color: inherit;
    }

    .section-summary {
      max-width: 740px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .dark .section-summary {
      color: rgba(255, 250, 242, .7);
    }

    .editor-layout {
      display: grid;
      grid-template-columns: 310px minmax(0, 1fr);
      gap: 34px;
      align-items: start;
      margin-top: 34px;
    }

    .toc-card {
      position: sticky;
      top: 104px;
      border-radius: 8px;
      padding: 18px;
      border: 1px solid var(--line-dark);
      background: rgba(255, 250, 242, .7);
      box-shadow: var(--shadow-soft);
    }

    .toc-card a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line-dark);
      color: var(--ink-soft);
      font-weight: 800;
    }

    .toc-card a:last-child {
      border-bottom: 0;
    }

    .toc-card a:hover {
      color: var(--red);
      transform: translateX(2px);
    }

    .note-stream {
      display: grid;
      gap: 16px;
    }

    .note-card,
    .feature-card,
    .list-card,
    .faq-card {
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: rgba(255, 250, 242, .82);
      box-shadow: var(--shadow-soft);
    }

    .note-card {
      padding: 22px;
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .note-index {
      width: 54px;
      height: 54px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--ink);
      color: var(--amber);
      font-weight: 800;
      font-size: 19px;
    }

    .note-card h2,
    .feature-card h3,
    .list-card h3 {
      margin: 0 0 8px;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 800;
      color: var(--ink);
    }

    .note-card p,
    .feature-card p,
    .list-card p {
      margin: 0;
      color: var(--muted);
    }

    .feature-strip {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
      gap: 18px;
      margin-top: 34px;
    }

    .feature-card {
      position: relative;
      overflow: hidden;
      padding: 24px;
      min-height: 210px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      border-color: rgba(183, 37, 45, .36);
      box-shadow: 0 18px 45px rgba(25, 22, 20, .16);
    }

    .feature-card.hero-card {
      min-height: 310px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(25,22,20,.92), rgba(42,37,34,.78)),
        radial-gradient(circle at 80% 24%, rgba(240,182,90,.38), transparent 28%);
      color: var(--white);
    }

    .feature-card.hero-card h3 {
      color: var(--white);
      font-size: clamp(24px, 3vw, 35px);
    }

    .feature-card.hero-card p {
      color: rgba(255, 250, 242, .72);
    }

    .mini-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 0;
    }

    .tiny-tag {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: var(--ink-soft);
      background: rgba(25, 22, 20, .08);
    }

    .dark .tiny-tag,
    .hero-card .tiny-tag {
      color: var(--white);
      background: rgba(255, 250, 242, .12);
    }

    .inline-link {
      display: inline-flex;
      align-items: center;
      margin-top: 18px;
      color: var(--red);
      font-weight: 800;
    }

    .inline-link:hover {
      color: var(--red-deep);
      transform: translateX(2px);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 34px;
    }

    .proof-item {
      min-height: 138px;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid rgba(255, 250, 242, .14);
      background: rgba(255, 250, 242, .07);
    }

    .proof-number {
      display: block;
      margin-bottom: 8px;
      color: var(--amber);
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
    }

    .proof-item p {
      margin: 0;
      color: rgba(255, 250, 242, .72);
      font-size: 14px;
    }

    .process-layout {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 34px;
      align-items: center;
      margin-top: 34px;
    }

    .stage-card {
      min-height: 360px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background:
        radial-gradient(circle at 50% 18%, rgba(240, 182, 90, .35), transparent 28%),
        linear-gradient(180deg, #29231f, #171412);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .stage-card::before {
      content: "";
      position: absolute;
      left: 12%;
      right: 12%;
      top: 20%;
      height: 3px;
      background: repeating-linear-gradient(90deg, rgba(255,250,242,.8) 0 42px, transparent 42px 55px);
      box-shadow: 0 52px 0 rgba(255,250,242,.42), 0 104px 0 rgba(255,250,242,.24);
    }

    .stage-card::after {
      content: "中文标注 · 更新中 · 入口可用";
      position: absolute;
      left: 22px;
      bottom: 22px;
      color: rgba(255, 250, 242, .82);
      font-weight: 800;
    }

    .step-list {
      display: grid;
      gap: 14px;
      margin: 0;
      list-style: none;
    }

    .step-list li {
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 14px;
      padding: 18px;
      border-radius: 8px;
      border: 1px solid var(--line-dark);
      background: rgba(255, 250, 242, .75);
    }

    .step-list b {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--red);
      color: var(--white);
      line-height: 1;
    }

    .step-list h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 800;
    }

    .step-list p {
      margin: 0;
      color: var(--muted);
    }

    .list-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
    }

    .list-card {
      padding: 20px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .list-card:hover {
      transform: translateY(-2px);
      border-color: rgba(85, 212, 207, .5);
      box-shadow: 0 18px 36px rgba(25, 22, 20, .13);
    }

    .accordion {
      margin-top: 30px;
      border: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--line-dark);
      background: rgba(255, 250, 242, .78);
      box-shadow: var(--shadow-soft);
    }

    .accordion-title {
      padding: 18px 52px 18px 20px;
      color: var(--ink);
      font-weight: 800;
      font-size: 17px;
      border: 0;
      line-height: 1.4;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--red);
      background: rgba(240, 182, 90, .1);
    }

    .accordion-content {
      border: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      background: transparent;
    }

    .subscribe-panel {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
      gap: 28px;
      align-items: center;
      padding: 30px;
      border-radius: 8px;
      border: 1px solid rgba(255, 250, 242, .14);
      background:
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
        radial-gradient(circle at 92% 20%, rgba(85,212,207,.18), transparent 34%);
      box-shadow: var(--shadow);
    }

    .subscribe-panel h2 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 800;
      line-height: 1.2;
    }

    .subscribe-panel p {
      margin: 0;
      color: rgba(255, 250, 242, .72);
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 190px 142px;
      gap: 10px;
    }

    .form-note {
      grid-column: 1 / -1;
      color: rgba(255, 250, 242, .62);
      font-size: 13px;
      margin-top: 3px;
    }

    .site-footer {
      padding: 56px 0 28px;
      color: rgba(255, 250, 242, .74);
      background: #141210;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 250, 242, .12);
    }

    .footer-brand {
      color: var(--white);
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .footer-text {
      max-width: 480px;
      margin: 0;
      color: rgba(255, 250, 242, .62);
    }

    .footer-title {
      color: var(--white);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 250, 242, .68);
    }

    .footer-links a:hover {
      color: var(--amber);
      transform: translateX(2px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: rgba(255, 250, 242, .48);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .nav-shell {
        gap: 12px;
      }

      .main-nav a {
        padding: 9px 8px;
        font-size: 13px;
      }

      .profile-panel,
      .editor-layout,
      .process-layout,
      .subscribe-panel {
        grid-template-columns: 1fr;
      }

      .toc-card {
        position: static;
      }

      .proof-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .subscribe-form {
        grid-template-columns: 1fr 180px;
      }

      .subscribe-form .btn {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        top: 10px;
      }

      .nav-shell {
        min-height: 62px;
        flex-wrap: wrap;
        padding: 10px;
      }

      .brand-mark {
        font-size: 16px;
        max-width: calc(100% - 58px);
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .main-nav {
        display: none;
        order: 5;
        width: 100%;
        margin: 8px 0 0;
        padding: 10px;
        border-top: 1px solid rgba(255, 250, 242, .12);
        background: rgba(25, 22, 20, .62);
        border-radius: 8px;
      }

      .main-nav.is-open {
        display: grid;
      }

      .main-nav a {
        padding: 12px;
        font-size: 15px;
      }

      .nav-tools {
        display: none;
      }

      .hero {
        padding: 112px 0 56px;
      }

      .profile-head,
      .status-board,
      .subscribe-panel {
        padding: 20px;
      }

      .creator-row {
        align-items: flex-start;
      }

      .avatar {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
      }

      .feature-strip,
      .list-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .note-card {
        grid-template-columns: 1fr;
      }

      .proof-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 58px 0;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .container,
      .nav-shell {
        width: min(calc(100% - 24px), var(--container));
      }

      h1 {
        font-size: 32px;
      }

      .hero-lead,
      .section-summary {
        font-size: 16px;
      }

      .status-list li {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .badge-row {
        align-items: stretch;
      }

      .btn,
      .hero-actions a {
        width: 100%;
      }

      .subscribe-form {
        grid-template-columns: 1fr;
      }

      .board-title {
        align-items: flex-start;
        flex-direction: column;
      }
    }
