/* roulang page: index */
:root {
      --color-bg: #070a12;
      --color-bg-2: #0d1322;
      --color-panel: rgba(18, 25, 43, 0.84);
      --color-panel-solid: #12192b;
      --color-card: #151d31;
      --color-card-soft: rgba(255, 255, 255, 0.055);
      --color-text: #f7f8fb;
      --color-muted: #aab3c7;
      --color-soft: #d7deef;
      --color-primary: #ff4d6d;
      --color-primary-2: #ff8a3d;
      --color-accent: #55d6be;
      --color-blue: #6ca8ff;
      --color-warning: #ffd166;
      --color-border: rgba(255, 255, 255, 0.12);
      --color-border-strong: rgba(255, 255, 255, 0.2);
      --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.35);
      --shadow-card: 0 14px 38px rgba(0, 0, 0, 0.28);
      --shadow-glow: 0 0 0 1px rgba(255, 77, 109, 0.16), 0 18px 70px rgba(255, 77, 109, 0.18);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1180px;
      --header-h: 78px;
      --ease: 180ms ease;
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      font-family: var(--font-sans);
      line-height: 1.75;
      color: var(--color-text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 77, 109, 0.22), transparent 26%),
        radial-gradient(circle at 88% 20%, rgba(85, 214, 190, 0.16), transparent 28%),
        linear-gradient(180deg, #070a12 0%, #0b1020 46%, #080b14 100%);
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
    }

    body.drawer-open {
      overflow: 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);
    }

    a:hover,
    a:focus {
      color: var(--color-text);
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.13);
      background: rgba(255, 255, 255, 0.055);
      color: var(--color-text);
      border-radius: 16px;
      padding: 14px 15px;
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(215, 222, 239, 0.55);
    }

    input:focus,
    textarea:focus,
    select:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(85, 214, 190, 0.25);
      outline-offset: 3px;
      border-color: rgba(85, 214, 190, 0.68);
      box-shadow: 0 0 0 5px rgba(85, 214, 190, 0.08);
    }

    ::selection {
      background: rgba(255, 77, 109, 0.45);
      color: #fff;
    }

    .site-shell {
      position: relative;
      isolation: isolate;
    }

    .site-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 72%);
      z-index: -1;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 86px 0;
      position: relative;
    }

    .section.compact {
      padding: 62px 0;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 7px 12px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255, 255, 255, 0.075);
      border: 1px solid var(--color-border);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .section-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--color-accent);
      box-shadow: 0 0 18px rgba(85, 214, 190, 0.8);
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(34px, 7vw, 74px);
      line-height: 1.05;
      letter-spacing: -0.055em;
      margin-bottom: 22px;
      font-weight: 900;
    }

    h2 {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.16;
      letter-spacing: -0.035em;
      font-weight: 850;
      margin-bottom: 14px;
    }

    h3 {
      font-size: 22px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 10px;
    }

    p {
      color: var(--color-muted);
      font-size: 16px;
      margin-bottom: 0;
    }

    .lead {
      font-size: clamp(17px, 2vw, 20px);
      color: var(--color-soft);
      max-width: 880px;
    }

    .muted {
      color: var(--color-muted);
    }

    .text-gradient {
      background: linear-gradient(90deg, #fff 0%, #ffd1da 40%, #8ef1dd 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: -0.01em;
      border: 1px solid transparent;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
      user-select: none;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
      color: #fff;
      box-shadow: 0 14px 34px rgba(255, 77, 109, 0.28);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 46px rgba(255, 77, 109, 0.36);
      color: #fff;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border-color: var(--color-border);
      backdrop-filter: blur(14px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.13);
      border-color: var(--color-border-strong);
    }

    .btn-ghost {
      color: var(--color-soft);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.14);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      color: #fff;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .badge.hot {
      background: rgba(255, 77, 109, 0.16);
      color: #ffd9e0;
      border-color: rgba(255, 77, 109, 0.32);
    }

    .badge.safe {
      background: rgba(85, 214, 190, 0.14);
      color: #b9fff2;
      border-color: rgba(85, 214, 190, 0.34);
    }

    .badge.warn {
      background: rgba(255, 209, 102, 0.13);
      color: #ffe5a3;
      border-color: rgba(255, 209, 102, 0.28);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      height: var(--header-h);
      display: flex;
      align-items: center;
      background: rgba(7, 10, 18, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.035em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), transparent 12%),
        linear-gradient(135deg, var(--color-primary), #7d5cff 54%, var(--color-accent));
      box-shadow: 0 14px 38px rgba(255, 77, 109, 0.24);
      flex: 0 0 auto;
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      width: 18px;
      height: 18px;
      clip-path: polygon(18% 10%, 88% 50%, 18% 90%);
      background: #fff;
      transform: translateX(2px);
    }

    .brand-text {
      max-width: 320px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: clamp(16px, 2vw, 20px);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex-direction: column;
      transition: background var(--ease), border-color var(--ease), transform var(--ease);
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.13);
      border-color: rgba(255, 255, 255, 0.22);
      transform: translateY(-1px);
    }

    .menu-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transition: transform var(--ease), opacity var(--ease);
    }

    .drawer {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
    }

    .drawer.is-open {
      display: block;
    }

    .drawer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(2, 4, 10, 0.72);
      backdrop-filter: blur(10px);
      opacity: 0;
      transition: opacity var(--ease);
    }

    .drawer.is-visible .drawer-backdrop {
      opacity: 1;
    }

    .drawer-panel {
      position: absolute;
      inset: 18px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 77, 109, 0.25), transparent 30%),
        radial-gradient(circle at 85% 35%, rgba(85, 214, 190, 0.16), transparent 28%),
        rgba(13, 19, 34, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transform: scale(0.98) translateY(14px);
      opacity: 0;
      transition: transform 220ms ease, opacity 220ms ease;
    }

    .drawer.is-visible .drawer-panel {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    .drawer-content {
      height: 100%;
      padding: 30px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 24px;
    }

    .drawer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .drawer-close {
      width: 46px;
      height: 46px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 28px;
      line-height: 1;
      transition: background var(--ease), transform var(--ease);
    }

    .drawer-close:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: rotate(4deg);
    }

    .drawer-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 26px;
      align-items: stretch;
      min-height: 0;
    }

    .drawer-nav {
      padding: 22px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .drawer-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px;
      border-radius: 22px;
      font-size: clamp(28px, 6vw, 64px);
      line-height: 1.05;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: #fff;
      border: 1px solid transparent;
    }

    .drawer-nav a:hover,
    .drawer-nav a.active {
      background: linear-gradient(135deg, rgba(255, 77, 109, 0.18), rgba(85, 214, 190, 0.11));
      border-color: rgba(255, 255, 255, 0.13);
      transform: translateX(4px);
    }

    .drawer-nav a small {
      font-size: 14px;
      letter-spacing: 0;
      color: var(--color-muted);
      font-weight: 800;
    }

    .drawer-side {
      border-radius: 28px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      justify-content: center;
    }

    .drawer-search {
      display: flex;
      gap: 10px;
      padding: 8px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .drawer-search input {
      border: 0;
      background: transparent;
      padding: 9px 10px;
      min-width: 0;
    }

    .drawer-search button {
      flex: 0 0 auto;
      border-radius: 14px;
      padding: 8px 12px;
      background: rgba(85, 214, 190, 0.16);
      color: #c9fff5;
      font-weight: 800;
    }

    .drawer-note {
      color: var(--color-muted);
      font-size: 15px;
    }

    .drawer-bottom {
      color: rgba(215, 222, 239, 0.72);
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero {
      padding: 72px 0 78px;
      min-height: calc(100vh - var(--header-h));
      display: flex;
      align-items: center;
    }

    .hero-stage {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 34px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.034)),
        rgba(12, 18, 32, 0.74);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      position: relative;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: -1px;
      background:
        radial-gradient(circle at 18% 10%, rgba(255, 77, 109, 0.28), transparent 22%),
        radial-gradient(circle at 74% 18%, rgba(108, 168, 255, 0.2), transparent 28%),
        radial-gradient(circle at 62% 90%, rgba(85, 214, 190, 0.12), transparent 26%);
      pointer-events: none;
    }

    .status-bar {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.14);
    }

    .status-left,
    .status-right {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 9px;
    }

    .dot-group {
      display: inline-flex;
      gap: 7px;
      margin-right: 8px;
    }

    .dot-group i {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      display: block;
      background: rgba(255, 255, 255, 0.26);
    }

    .dot-group i:nth-child(1) { background: var(--color-primary); }
    .dot-group i:nth-child(2) { background: var(--color-warning); }
    .dot-group i:nth-child(3) { background: var(--color-accent); }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--color-soft);
      font-size: 13px;
      font-weight: 750;
      line-height: 1;
    }

    .status-pill i {
      width: 7px;
      height: 7px;
      border-radius: 99px;
      background: var(--color-accent);
      box-shadow: 0 0 16px rgba(85, 214, 190, 0.9);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: clamp(28px, 5vw, 62px);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(28px, 5vw, 58px);
      align-items: center;
    }

    .hero-copy {
      min-width: 0;
    }

    .hero-copy .lead {
      margin-bottom: 28px;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .metric-chip {
      flex: 1 1 150px;
      min-width: 146px;
      padding: 14px 15px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.065);
      border: 1px solid rgba(255, 255, 255, 0.11);
    }

    .metric-chip strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
      color: #fff;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .metric-chip span {
      display: block;
      margin-top: 5px;
      color: var(--color-muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .icon-matrix {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .matrix-card {
      min-height: 112px;
      border-radius: 22px;
      padding: 16px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
      transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
    }

    .matrix-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: var(--shadow-card);
      background: rgba(255, 255, 255, 0.105);
    }

    .matrix-card.featured {
      grid-column: span 2;
      grid-row: span 2;
      min-height: 236px;
      background:
        radial-gradient(circle at 30% 28%, rgba(255, 77, 109, 0.34), transparent 32%),
        linear-gradient(135deg, rgba(255, 77, 109, 0.22), rgba(85, 214, 190, 0.11));
      box-shadow: var(--shadow-glow);
    }

    .matrix-card.wide {
      grid-column: span 2;
    }

    .matrix-icon {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 22px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.13);
    }

    .matrix-card strong {
      font-size: 16px;
      line-height: 1.35;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .matrix-card span {
      color: var(--color-muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .rights-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .rights-intro {
      padding: 30px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(160deg, rgba(255, 77, 109, 0.16), rgba(108, 168, 255, 0.08)),
        var(--color-panel);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      min-height: 100%;
    }

    .rights-intro .btn-row {
      margin-top: 24px;
    }

    .rights-rail {
      overflow-x: auto;
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(250px, 1fr);
      gap: 16px;
      padding: 3px 2px 18px;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.22) transparent;
    }

    .rights-rail::-webkit-scrollbar {
      height: 8px;
    }

    .rights-rail::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 999px;
    }

    .card {
      position: relative;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--color-border);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.22);
      box-shadow: var(--shadow-card);
      background: rgba(255, 255, 255, 0.08);
    }

    .benefit-card {
      min-height: 248px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .benefit-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.11), transparent 34%);
      pointer-events: none;
    }

    .benefit-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 36px;
    }

    .benefit-no {
      color: rgba(255, 255, 255, 0.38);
      font-weight: 900;
      font-size: 32px;
      letter-spacing: -0.06em;
      line-height: 1;
    }

    .benefit-card h3,
    .benefit-card p,
    .benefit-card .badge {
      position: relative;
      z-index: 1;
    }

    .qualification-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: start;
    }

    .check-panel,
    .notice-panel {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      padding: 28px;
    }

    .check-list {
      display: grid;
      gap: 14px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 13px;
      align-items: start;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.052);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .check-list .check-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #09231e;
      background: var(--color-accent);
      font-weight: 950;
    }

    .check-list strong {
      display: block;
      color: #fff;
      font-weight: 850;
      margin-bottom: 2px;
    }

    .check-list span {
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .notice-panel {
      background:
        linear-gradient(180deg, rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.05));
    }

    .notice-block {
      margin-top: 18px;
      padding: 18px;
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.16);
      border: 1px solid rgba(255, 209, 102, 0.18);
    }

    .notice-block strong {
      color: #fff;
      display: block;
      margin-bottom: 6px;
      font-size: 17px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-item a {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .news-item a:hover {
      background: rgba(255, 255, 255, 0.085);
      border-color: rgba(255, 255, 255, 0.19);
      transform: translateX(3px);
    }

    .news-date {
      color: var(--color-accent);
      font-weight: 900;
      font-size: 13px;
    }

    .news-title {
      min-width: 0;
    }

    .news-title strong {
      display: block;
      color: #fff;
      font-size: 17px;
      line-height: 1.35;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .news-title span {
      display: block;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .news-arrow {
      color: rgba(255, 255, 255, 0.42);
      font-weight: 900;
      font-size: 24px;
    }

    .recommend-card {
      padding: 26px;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 20% 10%, rgba(255, 77, 109, 0.22), transparent 34%),
        rgba(255, 255, 255, 0.06);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      position: sticky;
      top: calc(var(--header-h) + 18px);
    }

    .recommend-card h3 {
      font-size: 26px;
    }

    .recommend-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 18px 0 22px;
    }

    .update-panel {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }

    .kpi-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .kpi {
      padding: 22px;
      border-right: 1px solid rgba(255, 255, 255, 0.09);
    }

    .kpi:last-child {
      border-right: 0;
    }

    .kpi strong {
      display: block;
      font-size: 30px;
      line-height: 1.1;
      font-weight: 950;
      color: #fff;
      letter-spacing: -0.04em;
    }

    .kpi span {
      display: block;
      color: var(--color-muted);
      font-size: 14px;
      margin-top: 6px;
    }

    .update-rows {
      display: grid;
    }

    .update-row {
      display: grid;
      grid-template-columns: 150px 1fr 130px;
      gap: 16px;
      padding: 18px 22px;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .update-row:last-child {
      border-bottom: 0;
    }

    .update-row:hover {
      background: rgba(255, 255, 255, 0.04);
    }

    .update-row time {
      color: var(--color-muted);
      font-size: 14px;
    }

    .update-row strong {
      color: #fff;
      line-height: 1.45;
    }

    .scene-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 24px;
      align-items: center;
    }

    .scene-card {
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(85, 214, 190, 0.12), rgba(255, 77, 109, 0.1)),
        rgba(255, 255, 255, 0.055);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      padding: 30px;
    }

    .step-track {
      display: grid;
      gap: 16px;
      counter-reset: step;
    }

    .step-item {
      counter-increment: step;
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 15px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.09);
      position: relative;
    }

    .step-item::before {
      content: counter(step);
      width: 50px;
      height: 50px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
      color: #fff;
      font-weight: 950;
      font-size: 20px;
      box-shadow: 0 12px 28px rgba(255, 77, 109, 0.22);
    }

    .step-item strong {
      display: block;
      color: #fff;
      margin-bottom: 3px;
      font-size: 17px;
    }

    .step-item span {
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 24px;
      align-items: start;
    }

    .faq-aside {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
    }

    .accordion {
      background: transparent;
      margin: 0;
    }

    .accordion-item {
      margin-bottom: 12px;
      border-radius: 20px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .accordion-title {
      color: #fff;
      font-weight: 850;
      font-size: 17px;
      padding: 18px 46px 18px 20px;
      border: 0;
      line-height: 1.45;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(255, 255, 255, 0.055);
      color: #fff;
    }

    .accordion-title::before {
      color: var(--color-accent);
      font-size: 22px;
      margin-top: -13px;
    }

    .accordion-content {
      background: rgba(0, 0, 0, 0.12);
      color: var(--color-muted);
      border: 0;
      padding: 0 20px 20px;
      line-height: 1.75;
    }

    .apply-wrap {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 24px;
      align-items: stretch;
    }

    .apply-copy,
    .apply-form {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.058);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      padding: 30px;
    }

    .apply-copy {
      background:
        radial-gradient(circle at 22% 16%, rgba(255, 77, 109, 0.25), transparent 32%),
        radial-gradient(circle at 80% 72%, rgba(85, 214, 190, 0.13), transparent 32%),
        rgba(255, 255, 255, 0.058);
    }

    .mini-list {
      display: grid;
      gap: 11px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--color-soft);
      font-size: 15px;
    }

    .mini-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 99px;
      background: var(--color-accent);
      box-shadow: 0 0 14px rgba(85, 214, 190, 0.7);
      margin-top: 10px;
      flex: 0 0 auto;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      display: block;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .form-actions {
      margin-top: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .form-tip {
      color: var(--color-muted);
      font-size: 13px;
      line-height: 1.6;
      margin-top: 14px;
    }

    .form-message {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 15px;
      color: #c9fff5;
      background: rgba(85, 214, 190, 0.12);
      border: 1px solid rgba(85, 214, 190, 0.26);
      font-size: 14px;
    }

    .form-message.show {
      display: block;
    }

    .site-footer {
      padding: 54px 0 34px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        #060810;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      color: #fff;
      font-size: 19px;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
    }

    .footer-note {
      max-width: 650px;
      color: var(--color-muted);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a,
    .footer-links span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--color-soft);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.09);
      font-size: 14px;
    }

    .footer-links a:hover {
      background: rgba(255, 255, 255, 0.11);
      color: #fff;
      transform: translateY(-1px);
    }

    .copyright {
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      color: rgba(215, 222, 239, 0.62);
      font-size: 13px;
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 50;
      display: none;
      align-items: center;
      gap: 10px;
      padding: 9px 10px 9px 16px;
      border-radius: 999px;
      background: rgba(13, 19, 34, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    }

    .floating-cta span {
      color: var(--color-soft);
      font-size: 13px;
      white-space: nowrap;
    }

    .floating-cta .btn {
      min-height: 40px;
      padding: 9px 14px;
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      :root {
        --header-h: 72px;
      }

      .hero-content,
      .rights-wrap,
      .qualification-grid,
      .news-layout,
      .scene-grid,
      .faq-grid,
      .apply-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .icon-matrix {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .recommend-card {
        position: relative;
        top: auto;
      }

      .drawer-main {
        grid-template-columns: 1fr;
        overflow: auto;
      }

      .drawer-side {
        justify-content: flex-start;
      }

      .kpi-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .kpi:nth-child(2) {
        border-right: 0;
      }

      .kpi:nth-child(1),
      .kpi:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 64px 0;
      }

      .site-header {
        height: 68px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .header-actions .btn {
        display: none;
      }

      .hero {
        padding: 36px 0 56px;
        min-height: auto;
      }

      .status-bar {
        align-items: flex-start;
        flex-direction: column;
      }

      .status-right {
        width: 100%;
      }

      .hero-stage {
        border-radius: 26px;
      }

      .hero-content {
        padding: 26px;
      }

      .btn-row {
        align-items: stretch;
      }

      .btn-row .btn {
        flex: 1 1 auto;
      }

      .icon-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .matrix-card.featured,
      .matrix-card.wide {
        grid-column: span 2;
      }

      .news-item a {
        grid-template-columns: 1fr auto;
        gap: 8px 12px;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .update-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .drawer-panel {
        inset: 10px;
        border-radius: 26px;
      }

      .drawer-content {
        padding: 18px;
      }

      .drawer-nav {
        padding: 12px;
      }

      .drawer-nav a {
        padding: 18px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .floating-cta {
        display: flex;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 38px;
      }

      h2 {
        font-size: 29px;
      }

      .brand-text {
        max-width: 210px;
      }

      .hero-metrics {
        display: grid;
        grid-template-columns: 1fr;
      }

      .metric-chip {
        min-width: 0;
      }

      .status-pill {
        font-size: 12px;
      }

      .icon-matrix {
        gap: 10px;
      }

      .matrix-card {
        min-height: 104px;
        padding: 13px;
        border-radius: 18px;
      }

      .matrix-card.featured {
        min-height: 206px;
      }

      .rights-intro,
      .check-panel,
      .notice-panel,
      .recommend-card,
      .scene-card,
      .faq-aside,
      .apply-copy,
      .apply-form {
        padding: 22px;
        border-radius: 24px;
      }

      .kpi-strip {
        grid-template-columns: 1fr;
      }

      .kpi {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      }

      .kpi:last-child {
        border-bottom: 0;
      }

      .step-item {
        grid-template-columns: 42px 1fr;
      }

      .step-item::before {
        width: 42px;
        height: 42px;
        border-radius: 15px;
      }

      .floating-cta {
        width: calc(100% - 24px);
        justify-content: space-between;
      }

      .floating-cta span {
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .copyright {
        padding-bottom: 54px;
      }
    }
