/* roulang page: index */
:root {
      --bg: #07070c;
      --bg-2: #12091f;
      --panel: #171021;
      --panel-2: #1d1329;
      --panel-3: #21152f;
      --text: #f7f1ff;
      --muted: #b7a9c9;
      --weak: #7f7193;
      --pink: #ff3fa4;
      --cyan: #25f3ff;
      --amber: #ffd166;
      --violet: #8f4dff;
      --line: rgba(255,255,255,.12);
      --line-pink: rgba(255,63,164,.38);
      --line-cyan: rgba(37,243,255,.34);
      --radius: 12px;
      --radius-sm: 8px;
      --shadow: 0 18px 60px rgba(0,0,0,.38);
      --glow: 0 0 34px rgba(255,63,164,.18), 0 0 28px rgba(37,243,255,.12);
      --container: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      line-height: 1.68;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 18% 10%, rgba(255,63,164,.22), transparent 34%),
        radial-gradient(circle at 84% 8%, rgba(37,243,255,.16), transparent 32%),
        linear-gradient(180deg, #07070c 0%, #12091f 48%, #07070c 100%);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    ::selection { background: rgba(255,63,164,.42); color: #fff; }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(7,7,12,.86);
      backdrop-filter: blur(14px);
    }

    .nav-shell {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 20px;
      color: var(--text);
      white-space: nowrap;
    }

    .brand-logo::before {
      content: "";
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, var(--pink), var(--violet) 48%, var(--cyan));
      box-shadow: 0 0 22px rgba(255,63,164,.38);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--text);
      background: rgba(255,255,255,.06);
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(37,243,255,.24);
    }

    .nav-link.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(255,63,164,.32), rgba(37,243,255,.20));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.13);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      color: #fff;
      background: rgba(255,255,255,.06);
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-panel {
      display: none;
      padding: 0 0 18px;
    }

    .mobile-panel.open { display: block; }

    .mobile-nav {
      display: grid;
      gap: 10px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      background: rgba(18,9,31,.96);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 12px;
      border: 1px solid transparent;
      font-weight: 800;
      color: #fff;
      transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn:focus-visible {
      outline: 3px solid rgba(37,243,255,.35);
      outline-offset: 3px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--pink), var(--violet) 52%, var(--cyan));
      box-shadow: 0 10px 32px rgba(255,63,164,.28);
    }

    .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: var(--glow); }

    .btn-secondary {
      background: rgba(255,255,255,.045);
      border-color: rgba(255,255,255,.15);
      color: var(--text);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(37,243,255,.55);
      background: rgba(37,243,255,.08);
    }

    .section {
      padding: 84px 0;
      position: relative;
    }

    .section-tight { padding: 62px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--cyan);
      font-size: 14px;
      font-weight: 900;
    }

    .section-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: var(--pink);
      box-shadow: 0 0 16px rgba(255,63,164,.75);
    }

    .section-title {
      margin: 0;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.25;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      margin: 10px 0 0;
      max-width: 640px;
      color: var(--muted);
      font-size: 16px;
    }

    .hero {
      min-height: 680px;
      padding: 38px 0 54px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-stage {
      width: 100%;
      min-height: 584px;
      position: relative;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(7,7,12,.10), rgba(7,7,12,.72)),
        linear-gradient(105deg, rgba(255,63,164,.32) 0%, rgba(143,77,255,.18) 36%, rgba(37,243,255,.20) 72%, rgba(255,209,102,.10) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='720' viewBox='0 0 1400 720'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23ff3fa4' stop-opacity='.7'/%3E%3Cstop offset='.52' stop-color='%238f4dff' stop-opacity='.45'/%3E%3Cstop offset='1' stop-color='%2325f3ff' stop-opacity='.55'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1400' height='720' fill='%2307070c'/%3E%3Cpath d='M-80 470 C180 320 310 590 560 430 S1010 160 1490 240' fill='none' stroke='url(/%23g)' stroke-width='28' stroke-linecap='round' opacity='.42'/%3E%3Cpath d='M-50 210 C210 160 330 270 570 210 S930 40 1450 105' fill='none' stroke='%2325f3ff' stroke-width='4' opacity='.28'/%3E%3Cpath d='M80 620 C280 520 410 650 660 545 S1040 360 1320 410' fill='none' stroke='%23ff3fa4' stroke-width='5' opacity='.32'/%3E%3Cg opacity='.38'%3E%3Ccircle cx='210' cy='180' r='3' fill='%23fff'/%3E%3Ccircle cx='386' cy='138' r='2' fill='%2325f3ff'/%3E%3Ccircle cx='752' cy='118' r='3' fill='%23ff3fa4'/%3E%3Ccircle cx='1022' cy='266' r='2' fill='%23fff'/%3E%3Ccircle cx='1194' cy='142' r='3' fill='%23ffd166'/%3E%3Ccircle cx='1128' cy='512' r='2' fill='%2325f3ff'/%3E%3Ccircle cx='524' cy='626' r='3' fill='%23ff3fa4'/%3E%3C/g%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
      opacity: .26;
      mix-blend-mode: screen;
    }

    .series-bar {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding: 18px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      background: rgba(7,7,12,.46);
    }

    .series-item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 36px;
      padding: 0 13px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid rgba(255,255,255,.11);
      background: rgba(255,255,255,.035);
      font-size: 14px;
      font-weight: 800;
    }

    .series-item.active {
      color: #fff;
      border-color: rgba(37,243,255,.45);
      background: linear-gradient(135deg, rgba(255,63,164,.28), rgba(37,243,255,.17));
    }

    .hero-content {
      position: relative;
      z-index: 2;
      min-height: 494px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      align-items: center;
      gap: 34px;
      padding: 54px 56px;
    }

    .hero h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-intro {
      max-width: 720px;
      margin: 22px 0 0;
      color: #e8dcf6;
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 650px;
      margin-top: 28px;
    }

    .metric {
      min-height: 86px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: var(--radius);
      background: rgba(7,7,12,.55);
    }

    .metric strong {
      display: block;
      color: var(--cyan);
      font-size: 22px;
      line-height: 1.2;
      font-weight: 900;
    }

    .metric span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .entry-board {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 14px;
      background: rgba(7,7,12,.68);
      box-shadow: var(--glow);
    }

    .board-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 76px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    }

    .board-row b { display: block; font-size: 16px; }
    .board-row small { display: block; color: var(--muted); margin-top: 3px; }
    .board-dot {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 11px;
      display: grid;
      place-items: center;
      color: #07070c;
      font-weight: 900;
      background: linear-gradient(135deg, var(--amber), var(--cyan));
    }

    .grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

    .card {
      position: relative;
      min-height: 188px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)), var(--panel);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
      opacity: .75;
    }

    .card:hover {
      transform: translateY(-2px);
      border-color: rgba(37,243,255,.38);
      box-shadow: var(--glow);
      background: linear-gradient(180deg, rgba(255,63,164,.08), rgba(37,243,255,.035)), var(--panel-2);
    }

    .tag, .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.11);
      font-size: 13px;
      font-weight: 800;
    }

    .tag.hot { color: #07070c; background: linear-gradient(135deg, var(--amber), var(--cyan)); border-color: transparent; }
    .badge.pink { color: #fff; background: rgba(255,63,164,.18); border-color: rgba(255,63,164,.36); }
    .badge.cyan { color: #fff; background: rgba(37,243,255,.12); border-color: rgba(37,243,255,.34); }

    .card h3 {
      margin: 16px 0 8px;
      font-size: 19px;
      line-height: 1.35;
      font-weight: 900;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 18px;
      color: var(--weak);
      font-size: 13px;
      font-weight: 700;
    }

    .milestone-wrap {
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 26px;
      align-items: stretch;
    }

    .progress-panel {
      padding: 28px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(255,63,164,.10), rgba(37,243,255,.06)), var(--panel-2);
      box-shadow: var(--shadow);
    }

    .progress-num {
      font-size: 48px;
      line-height: 1;
      font-weight: 900;
      color: var(--text);
    }

    .progress-line {
      height: 12px;
      margin: 22px 0 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.10);
    }

    .progress-line span {
      display: block;
      width: 76%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
      box-shadow: 0 0 18px rgba(37,243,255,.35);
    }

    .task-list {
      display: grid;
      gap: 12px;
    }

    .task-item {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      background: rgba(255,255,255,.04);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .task-item:hover {
      transform: translateY(-2px);
      border-color: rgba(255,63,164,.36);
      background: rgba(255,255,255,.06);
    }

    .task-check {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #07070c;
      background: linear-gradient(135deg, var(--cyan), var(--amber));
    }

    .task-item.pending .task-check {
      color: var(--muted);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.13);
    }

    .task-item b { display: block; line-height: 1.3; }
    .task-item span { display: block; color: var(--muted); font-size: 14px; margin-top: 3px; }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 22px;
      align-items: start;
    }

    .news-list {
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 14px;
      overflow: hidden;
      background: var(--panel);
    }

    .news-link {
      display: grid;
      grid-template-columns: 130px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: background .2s ease;
    }

    .news-link:last-child { border-bottom: 0; }

    .news-link:hover {
      background: linear-gradient(90deg, rgba(255,63,164,.08), rgba(37,243,255,.045));
    }

    .news-link time {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
    }

    .news-link b {
      display: block;
      font-size: 17px;
      line-height: 1.4;
    }

    .news-link span {
      display: block;
      color: var(--muted);
      margin-top: 5px;
      font-size: 14px;
    }

    .recommend-box {
      padding: 22px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 14px;
      background: linear-gradient(160deg, rgba(255,63,164,.12), rgba(37,243,255,.06)), var(--panel-2);
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 16px;
    }

    .timeline-item {
      position: relative;
      min-height: 104px;
      padding: 20px 22px 20px 58px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: var(--radius);
      background: rgba(255,255,255,.04);
    }

    .timeline-item::before {
      content: attr(data-step);
      position: absolute;
      left: 18px;
      top: 20px;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #07070c;
      font-size: 13px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--pink), var(--cyan));
    }

    .timeline-item b { display: block; font-size: 18px; }
    .timeline-item p { margin: 7px 0 0; color: var(--muted); font-size: 15px; }

    .compare-table {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .plan-card {
      min-height: 298px;
      padding: 24px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.11);
      background: var(--panel);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .plan-card.recommended {
      border-color: rgba(37,243,255,.48);
      background: linear-gradient(155deg, rgba(255,63,164,.14), rgba(37,243,255,.08)), var(--panel-2);
      box-shadow: var(--glow);
    }

    .plan-card:hover { transform: translateY(-2px); border-color: rgba(255,63,164,.36); }
    .plan-card h3 { margin: 16px 0 8px; font-size: 21px; font-weight: 900; }
    .plan-card p { color: var(--muted); margin: 0 0 18px; }
    .plan-list { display: grid; gap: 10px; margin: 18px 0 22px; padding: 0; list-style: none; color: var(--muted); }
    .plan-list li { display: flex; gap: 9px; align-items: flex-start; }
    .plan-list li::before { content: "✓"; color: var(--cyan); font-weight: 900; }

    .guarantee-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 14px;
      background: linear-gradient(90deg, rgba(255,63,164,.10), rgba(37,243,255,.06)), var(--panel);
    }

    .guarantee-item {
      padding: 18px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08);
    }

    .guarantee-item b { display: block; font-size: 17px; }
    .guarantee-item span { display: block; color: var(--muted); margin-top: 6px; font-size: 14px; }

    .mobile-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 30px;
      align-items: center;
      padding: 34px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(255,63,164,.12), rgba(37,243,255,.06)),
        var(--panel-2);
      overflow: hidden;
    }

    .phone-panel {
      min-height: 330px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7,7,12,.95), rgba(29,19,41,.95));
      background-size: 26px 26px, 26px 26px, auto;
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .phone-strip {
      height: 48px;
      margin-bottom: 12px;
      border-radius: 12px;
      background: linear-gradient(90deg, rgba(255,63,164,.28), rgba(37,243,255,.18));
      border: 1px solid rgba(255,255,255,.12);
    }

    .phone-tile {
      min-height: 58px;
      margin-top: 10px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.09);
      color: var(--muted);
      font-size: 14px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    details.faq-item {
      border: 1px solid rgba(255,255,255,.11);
      border-radius: var(--radius);
      background: var(--panel);
      overflow: hidden;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    details.faq-item[open] {
      border-color: rgba(37,243,255,.42);
      box-shadow: 0 0 28px rgba(37,243,255,.08);
    }

    .faq-item summary {
      min-height: 64px;
      padding: 18px 22px;
      cursor: pointer;
      font-weight: 900;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-band {
      position: relative;
      padding: 42px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 16px;
      background:
        linear-gradient(110deg, rgba(255,63,164,.28), rgba(143,77,255,.18) 48%, rgba(37,243,255,.20)),
        var(--panel-2);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .cta-band::after {
      content: "";
      position: absolute;
      inset: auto -10% -45% 20%;
      height: 160px;
      background: linear-gradient(90deg, transparent, rgba(37,243,255,.35), transparent);
      transform: rotate(-7deg);
      opacity: .45;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cta-content h2 {
      margin: 0;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.25;
      font-weight: 900;
    }

    .cta-content p {
      margin: 10px 0 0;
      max-width: 680px;
      color: #eadff8;
    }

    .site-footer {
      padding: 44px 0 30px;
      border-top: 1px solid rgba(255,255,255,.09);
      background: rgba(7,7,12,.72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(160px, .4fr));
      gap: 30px;
      align-items: start;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 900;
    }

    .footer-logo::before {
      content: "";
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--pink), var(--cyan));
    }

    .footer-text {
      margin: 14px 0 0;
      max-width: 520px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-title {
      margin: 0 0 12px;
      color: #fff;
      font-size: 15px;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease;
    }

    .footer-links a:hover { color: var(--cyan); }

    .copyright {
      margin-top: 32px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .desktop-nav, .header-actions .btn { display: none; }
      .menu-toggle { display: inline-block; }
      .hero-content { grid-template-columns: 1fr; padding: 42px 30px; }
      .entry-board { max-width: 620px; }
      .grid-4, .guarantee-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .milestone-wrap, .news-layout, .mobile-card { grid-template-columns: 1fr; }
      .compare-table { grid-template-columns: 1fr; }
      .phone-panel { max-width: 420px; }
    }

    @media (max-width: 768px) {
      .site-container { width: min(100% - 28px, var(--container)); }
      .nav-shell { min-height: 68px; }
      .brand-logo { font-size: 18px; }
      .section { padding: 58px 0; }
      .section-tight { padding: 46px 0; }
      .section-head { display: block; }
      .hero { min-height: auto; padding: 22px 0 38px; }
      .hero-stage { min-height: auto; }
      .series-bar { overflow-x: auto; flex-wrap: nowrap; }
      .series-item { flex: 0 0 auto; }
      .hero-content { min-height: auto; padding: 34px 20px; }
      .hero-intro { font-size: 16px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn, .cta-content .btn { width: 100%; }
      .hero-metrics, .grid-3, .grid-2 { grid-template-columns: 1fr; }
      .news-link { grid-template-columns: 1fr; gap: 8px; }
      .cta-content { display: block; }
      .cta-content .hero-actions { margin-top: 22px; }
      .footer-grid { grid-template-columns: 1fr; }
      .mobile-card { padding: 24px; }
    }

    @media (max-width: 520px) {
      .grid-4, .guarantee-band { grid-template-columns: 1fr; }
      .card, .plan-card, .progress-panel, .recommend-box { padding: 18px; }
      .cta-band { padding: 26px 20px; }
      .task-item { align-items: flex-start; }
      .metric { min-height: 78px; }
    }

/* roulang page: category1 */
:root {
      --bg: #07070c;
      --bg-2: #12091f;
      --panel: #171021;
      --panel-2: #1d1329;
      --panel-3: #21152f;
      --text: #f7f1ff;
      --muted: #b9aacb;
      --soft: #847593;
      --line: rgba(247, 241, 255, .12);
      --pink: #ff3fa4;
      --cyan: #25f3ff;
      --amber: #ffd166;
      --violet: #8f4dff;
      --radius: 12px;
      --radius-sm: 8px;
      --shadow-pink: 0 18px 48px rgba(255, 63, 164, .18);
      --shadow-cyan: 0 18px 48px rgba(37, 243, 255, .13);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.65;
      color: var(--text);
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 14% 8%, rgba(255,63,164,.22), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(37,243,255,.16), transparent 30%),
        linear-gradient(180deg, var(--bg-2), var(--bg) 48%, #090611);
      background-size: 36px 36px, 36px 36px, auto, auto, auto;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 14px 0;
      background: rgba(7, 7, 12, .78);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(247, 241, 255, .08);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      min-height: 58px;
      padding: 8px 10px 8px 18px;
      border: 1px solid rgba(247, 241, 255, .1);
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(29,19,41,.86), rgba(18,9,31,.72));
      box-shadow: 0 14px 36px rgba(0,0,0,.28);
    }

    .brand-logo,
    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--text);
      white-space: nowrap;
    }

    .brand-logo::before,
    .footer-logo::before {
      content: "";
      width: 12px;
      height: 28px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--pink), var(--cyan));
      box-shadow: 0 0 18px rgba(255,63,164,.55);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 1;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text);
      background: rgba(255,255,255,.06);
      box-shadow: inset 0 0 0 1px rgba(255,63,164,.28);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 10px;
      font-weight: 800;
      color: var(--text);
      transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: linear-gradient(100deg, var(--pink), var(--violet) 48%, var(--cyan));
      box-shadow: 0 10px 26px rgba(255,63,164,.25), 0 0 0 1px rgba(255,255,255,.08) inset;
    }

    .btn-primary:hover {
      filter: brightness(1.12);
      box-shadow: var(--shadow-pink), var(--shadow-cyan);
    }

    .btn-secondary {
      border: 1px solid rgba(37,243,255,.38);
      background: rgba(23,16,33,.78);
      color: var(--text);
    }

    .btn-secondary:hover {
      border-color: var(--pink);
      background: rgba(255,63,164,.08);
      box-shadow: 0 12px 30px rgba(37,243,255,.12);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--line);
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 999px;
      background: var(--text);
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-panel {
      display: none;
      margin-top: 10px;
      padding: 12px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(18,9,31,.96);
    }

    .mobile-nav {
      display: grid;
      gap: 8px;
    }

    .page-hero {
      position: relative;
      padding: 74px 0 38px;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 18px 0 auto;
      height: 340px;
      background:
        linear-gradient(110deg, rgba(255,63,164,.16), transparent 42%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 26px);
      clip-path: polygon(0 10%, 100% 0, 100% 72%, 0 100%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
      align-items: center;
      gap: 34px;
    }

    .hero-copy {
      max-width: 720px;
    }

    .corner-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 13px;
      border-radius: 999px;
      color: var(--amber);
      font-size: 14px;
      font-weight: 900;
      background: rgba(255,209,102,.1);
      border: 1px solid rgba(255,209,102,.28);
      box-shadow: 0 0 20px rgba(255,209,102,.08);
    }

    .corner-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--amber);
      box-shadow: 0 0 14px rgba(255,209,102,.75);
    }

    .page-hero h1 {
      margin: 18px 0 16px;
      font-size: clamp(30px, 5vw, 54px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
    }

    .gradient-text {
      background: linear-gradient(95deg, #fff, #ffd9f0 30%, var(--cyan));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-desc {
      max-width: 660px;
      margin: 0 0 26px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      color: #e9ddf7;
      font-size: 13px;
      font-weight: 700;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.1);
    }

    .status-board {
      position: relative;
      padding: 22px;
      border-radius: 14px;
      border: 1px solid rgba(255,63,164,.28);
      background:
        linear-gradient(155deg, rgba(255,63,164,.14), transparent 46%),
        linear-gradient(180deg, rgba(33,21,47,.96), rgba(18,9,31,.92));
      box-shadow: var(--shadow-pink);
      overflow: hidden;
    }

    .status-board::after {
      content: "精选";
      position: absolute;
      top: 14px;
      right: -34px;
      width: 128px;
      height: 32px;
      display: grid;
      place-items: center;
      transform: rotate(30deg);
      color: #140814;
      font-size: 14px;
      font-weight: 900;
      background: linear-gradient(90deg, var(--amber), var(--pink));
    }

    .board-title {
      margin: 0 0 16px;
      color: var(--text);
      font-size: 18px;
      font-weight: 900;
    }

    .entry-stack {
      display: grid;
      gap: 12px;
    }

    .entry-line {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 12px;
      min-height: 64px;
      padding: 13px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(7,7,12,.42);
    }

    .entry-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #140814;
      background: linear-gradient(135deg, var(--pink), var(--cyan));
    }

    .entry-line strong {
      display: block;
      font-size: 15px;
      line-height: 1.35;
    }

    .entry-line span {
      color: var(--soft);
      font-size: 13px;
    }

    .entry-state {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 58px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(260px, .38fr);
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-kicker {
      margin: 0 0 8px;
      color: var(--cyan);
      font-size: 14px;
      font-weight: 900;
    }

    .section-title {
      margin: 0;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.22;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-summary {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 14px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(23,16,33,.78);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.045);
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
    }

    .tag:hover,
    .tag.active {
      transform: translateY(-1px);
      color: var(--text);
      border-color: transparent;
      background: linear-gradient(100deg, rgba(255,63,164,.92), rgba(37,243,255,.82));
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: start;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .task-card {
      min-height: 245px;
      display: flex;
      flex-direction: column;
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(140deg, rgba(255,63,164,.08), transparent 38%),
        linear-gradient(180deg, var(--panel-2), var(--panel));
      box-shadow: 0 12px 30px rgba(0,0,0,.24);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .task-card:hover {
      transform: translateY(-2px);
      border-color: rgba(37,243,255,.42);
      box-shadow: var(--shadow-cyan);
      background:
        linear-gradient(140deg, rgba(37,243,255,.1), transparent 42%),
        linear-gradient(180deg, var(--panel-3), var(--panel));
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 8px;
      color: var(--cyan);
      font-size: 12px;
      font-weight: 900;
      background: rgba(37,243,255,.08);
      border: 1px solid rgba(37,243,255,.24);
    }

    .heat {
      color: var(--amber);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .task-card h2 {
      margin: 0 0 10px;
      font-size: 20px;
      line-height: 1.35;
      font-weight: 900;
    }

    .task-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .mini-tag {
      display: inline-flex;
      align-items: center;
      min-height: 27px;
      padding: 0 9px;
      border-radius: 999px;
      color: #dbccec;
      font-size: 12px;
      font-weight: 700;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.08);
    }

    .card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding-top: 20px;
    }

    .update-time {
      color: var(--soft);
      font-size: 13px;
      font-weight: 700;
    }

    .card-action {
      color: var(--text);
      font-size: 14px;
      font-weight: 900;
      transition: color .2s ease;
    }

    .card-action:hover {
      color: var(--cyan);
    }

    .side-panel {
      position: sticky;
      top: 104px;
      display: grid;
      gap: 16px;
    }

    .panel-card {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.1);
      background: linear-gradient(180deg, rgba(33,21,47,.94), rgba(23,16,33,.92));
      box-shadow: 0 12px 34px rgba(0,0,0,.24);
    }

    .panel-card h2,
    .panel-card h3 {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 900;
    }

    .progress-track {
      height: 10px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    }

    .progress-fill {
      width: 78%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
      box-shadow: 0 0 22px rgba(37,243,255,.38);
    }

    .progress-note {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .mini-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      min-height: 42px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
      font-size: 14px;
    }

    .mini-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .mini-list strong {
      color: var(--text);
      font-weight: 800;
    }

    .side-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .flow-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .flow-item {
      position: relative;
      min-height: 170px;
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(23,16,33,.8);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .flow-item:hover {
      transform: translateY(-2px);
      border-color: rgba(255,63,164,.36);
      box-shadow: var(--shadow-pink);
    }

    .flow-number {
      width: 38px;
      height: 38px;
      margin-bottom: 18px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: #140814;
      font-weight: 900;
      background: linear-gradient(135deg, var(--amber), var(--pink));
    }

    .flow-item h2 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 900;
    }

    .flow-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .notice-band {
      padding: 24px;
      border-radius: 14px;
      border: 1px solid rgba(255,209,102,.22);
      background:
        linear-gradient(90deg, rgba(255,209,102,.1), rgba(255,63,164,.08), rgba(37,243,255,.07)),
        rgba(23,16,33,.82);
    }

    .notice-band h2 {
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: 900;
    }

    .notice-band p {
      margin: 0;
      color: var(--muted);
    }

    .faq-grid {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(23,16,33,.82);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .faq-item:hover {
      border-color: rgba(37,243,255,.34);
      box-shadow: 0 12px 30px rgba(37,243,255,.09);
    }

    .faq-item h2 {
      margin: 0 0 8px;
      font-size: 17px;
      font-weight: 900;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(110deg, rgba(255,63,164,.28), rgba(143,77,255,.2) 46%, rgba(37,243,255,.22)),
        linear-gradient(180deg, #21152f, #12091f);
      box-shadow: var(--shadow-pink), var(--shadow-cyan);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px);
      opacity: .36;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
    }

    .cta-panel h2 {
      margin: 0 0 8px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.25;
      font-weight: 900;
    }

    .cta-panel p {
      margin: 0;
      color: #eadff6;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 52px 0 28px;
      border-top: 1px solid rgba(255,255,255,.1);
      background: linear-gradient(180deg, rgba(7,7,12,.3), rgba(7,7,12,.92));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) .6fr .6fr;
      gap: 28px;
      padding-bottom: 30px;
    }

    .footer-text {
      max-width: 470px;
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-title {
      margin: 0 0 12px;
      font-size: 15px;
      font-weight: 900;
      color: var(--text);
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease;
    }

    .footer-links a:hover {
      color: var(--cyan);
    }

    .copyright {
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--soft);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .site-container {
        width: min(100% - 32px, var(--container));
      }

      .hero-grid,
      .content-layout,
      .section-head,
      .cta-content {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .flow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .desktop-nav,
      .header-actions > .btn {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .mobile-panel.is-open {
        display: block;
      }

      .nav-shell {
        min-height: 56px;
        padding-left: 14px;
      }

      .page-hero {
        padding: 48px 0 26px;
      }

      .status-board {
        padding: 18px;
      }

      .section {
        padding: 46px 0;
      }

      .entry-grid,
      .side-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .task-card {
        min-height: 220px;
      }

      .filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 16px;
        scrollbar-width: thin;
      }

      .tag {
        flex: 0 0 auto;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .brand-logo {
        font-size: 15px;
      }

      .hero-actions,
      .cta-actions {
        display: grid;
      }

      .btn {
        width: 100%;
        min-height: 46px;
      }

      .entry-line {
        grid-template-columns: auto 1fr;
      }

      .entry-state {
        grid-column: 2;
      }

      .flow-list {
        grid-template-columns: 1fr;
      }

      .card-foot {
        align-items: flex-start;
        flex-direction: column;
      }

      .cta-panel {
        padding: 24px;
      }
    }
