/* roulang page: index */
:root {
      --green: #168c5b;
      --green-dark: #0d6844;
      --green-soft: #e9f7ef;
      --mint: #f4faf6;
      --lime: #dff3a7;
      --yellow: #f5c957;
      --ink: #17352c;
      --text: #30463e;
      --muted: #71827b;
      --line: #dce8e1;
      --white: #ffffff;
      --bg: #fbfdfb;
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 26px;
      --shadow-sm: 0 8px 24px rgba(23, 53, 44, .06);
      --shadow-md: 0 18px 48px rgba(23, 53, 44, .11);
      --container: 1200px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      font-size: 16px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { color: var(--ink); line-height: 1.25; letter-spacing: 0; }
    h1 { font-size: clamp(40px, 5vw, 62px); margin-bottom: 22px; font-weight: 800; }
    h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; font-weight: 800; }
    h3 { font-size: 20px; margin-bottom: 10px; font-weight: 750; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }
    button { cursor: pointer; }
    :focus-visible { outline: 3px solid rgba(245, 201, 87, .95); outline-offset: 3px; }
    .container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: "";
      width: 22px;
      height: 3px;
      border-radius: 4px;
      background: var(--green);
    }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }
    .section-head p { max-width: 630px; margin-bottom: 0; color: var(--muted); }
    .section { padding: 94px 0; }
    .section.alt { background: var(--mint); }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 21px;
      border: 1px solid transparent;
      border-radius: 13px;
      font-weight: 750;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button.primary { color: #fff; background: var(--green); box-shadow: 0 10px 20px rgba(22, 140, 91, .18); }
    .button.primary:hover { background: var(--green-dark); box-shadow: 0 14px 28px rgba(22, 140, 91, .25); }
    .button.secondary { color: var(--green-dark); background: #fff; border-color: var(--line); }
    .button.secondary:hover { border-color: var(--green); background: var(--green-soft); }
    .button.text { min-height: auto; padding: 4px 0; color: var(--green-dark); border-radius: 0; }
    .button.text:hover { color: var(--green); transform: none; }
    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 2px 10px;
      border-radius: 20px;
      color: var(--green-dark);
      background: var(--green-soft);
      font-size: 12px;
      font-weight: 750;
    }
    .pill.dark { color: #fff; background: var(--ink); }
    .pill.yellow { color: #684f08; background: #fff5d2; }

    .site-header { padding: 22px 0 0; position: relative; z-index: 10; }
    .nav-panel {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 78px;
      padding: 12px 14px 12px 22px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, .96);
      box-shadow: var(--shadow-sm);
    }
    .brand {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 11px;
      color: var(--ink);
      font-size: 19px;
      font-weight: 850;
      white-space: nowrap;
    }
    .brand-mark {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      color: #fff;
      background: var(--green);
      border-radius: 11px;
      font-size: 15px;
      font-weight: 900;
    }
    .nav-entries {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .nav-entries::-webkit-scrollbar { display: none; }
    .nav-entry {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: max-content;
      padding: 9px 13px;
      border: 1px solid transparent;
      border-radius: 12px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      transition: .2s ease;
    }
    .nav-entry:hover { color: var(--green-dark); background: var(--green-soft); }
    .nav-entry.active { color: var(--green-dark); background: var(--green-soft); border-color: #c7e7d4; }
    .entry-icon {
      display: grid;
      width: 25px;
      height: 25px;
      place-items: center;
      border-radius: 8px;
      color: var(--green-dark);
      background: #fff;
      font-size: 12px;
    }
    .nav-cta { flex: 0 0 auto; min-height: 44px; padding: 0 17px; font-size: 13px; }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 76px 0 82px;
      background:
        linear-gradient(90deg, rgba(244, 250, 246, .94), rgba(255,255,255,.98) 47%, rgba(245,250,247,.85)),
        repeating-linear-gradient(0deg, transparent 0 42px, rgba(22,140,91,.045) 43px),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(22,140,91,.045) 43px);
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -80px;
      top: 80px;
      width: 300px;
      height: 160px;
      border: 1px solid #d4ebdc;
      border-radius: 90px;
      transform: rotate(-17deg);
      pointer-events: none;
    }
    .hero-grid { display: grid; grid-template-columns: 5fr 7fr; align-items: center; gap: 58px; position: relative; z-index: 1; }
    .hero-copy { max-width: 560px; }
    .hero-copy .lead { max-width: 530px; margin-bottom: 28px; color: var(--text); font-size: 18px; line-height: 1.85; }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 34px; }
    .hero-note { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
    .hero-note::before { content: "✓"; display: grid; width: 20px; height: 20px; place-items: center; color: var(--green-dark); background: var(--green-soft); border-radius: 50%; font-weight: 900; }
    .hero-points { display: flex; flex-wrap: wrap; gap: 10px; }
    .hero-point { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
    .hero-point strong { color: var(--ink); font-size: 17px; }
    .stage {
      position: relative;
      min-height: 450px;
      padding: 22px;
      border: 1px solid #d7e8dd;
      border-radius: 28px;
      background: #fff;
      box-shadow: var(--shadow-md);
    }
    .stage-top { display: flex; align-items: center; justify-content: space-between; padding: 3px 5px 18px; }
    .window-dots { display: flex; gap: 6px; }
    .window-dots i { display: block; width: 8px; height: 8px; border-radius: 50%; background: #cde2d4; }
    .stage-label { color: var(--muted); font-size: 12px; font-weight: 700; }
    .stage-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 15px; }
    .stage-main { min-height: 355px; padding: 21px; border-radius: 18px; background: var(--mint); }
    .stage-main h3 { margin: 12px 0 18px; font-size: 24px; }
    .stage-main p { color: var(--muted); font-size: 13px; }
    .index-line { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #d8e9de; font-size: 13px; }
    .index-line:last-child { border-bottom: 0; }
    .index-line b { color: var(--ink); }
    .status { color: var(--green-dark); font-size: 12px; font-weight: 800; }
    .status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--green); }
    .stage-side { display: flex; flex-direction: column; gap: 15px; }
    .mini-panel { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
    .mini-panel.accent { color: #fff; background: var(--ink); border-color: var(--ink); }
    .mini-panel h4 { margin: 0 0 12px; font-size: 15px; }
    .mini-panel p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
    .mini-panel.accent p { color: #b8d4c5; }
    .number { color: var(--green); font-size: 30px; font-weight: 850; line-height: 1; }
    .accent .number { color: var(--lime); }
    .progress { height: 9px; margin: 12px 0 7px; overflow: hidden; border-radius: 9px; background: #dbe8df; }
    .progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: var(--green); }
    .accent .progress { background: #365549; }
    .float-tag { position: absolute; right: -22px; top: 106px; padding: 10px 14px; border: 1px solid #cbe7d5; border-radius: 12px; color: var(--green-dark); background: #fff; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 800; }

    .steps-wrap { position: relative; }
    .steps-wrap::before { content: ""; position: absolute; top: 42px; left: 10%; right: 10%; height: 1px; background: #cfe4d7; }
    .step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
    .step-card { padding: 25px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: .2s ease; }
    .step-card:hover, .content-card:hover, .feature-card:hover { transform: translateY(-3px); border-color: #a8d8bb; box-shadow: var(--shadow-sm); }
    .step-num { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .step-num strong { color: var(--green); font-size: 25px; }
    .check { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 14px; font-weight: 900; }
    .step-card p { min-height: 58px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

    .preview-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 25px; align-items: stretch; }
    .preview-main { padding: 30px; border-radius: var(--radius-lg); color: #fff; background: var(--ink); }
    .preview-main h3 { color: #fff; font-size: 28px; }
    .preview-main p { color: #bad1c4; }
    .preview-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 30px; }
    .preview-tags span { padding: 6px 11px; border: 1px solid #3b6253; border-radius: 8px; color: #d5ede0; font-size: 12px; }
    .preview-list { margin: 0; padding: 0; list-style: none; }
    .preview-list li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-top: 1px solid #345749; color: #e9f6ed; font-size: 14px; }
    .preview-list small { color: #9fc4ae; }
    .preview-side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .feature-card { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: .2s ease; }
    .feature-card.wide { grid-column: 1 / -1; background: var(--green-soft); }
    .feature-icon { display: grid; width: 38px; height: 38px; margin-bottom: 24px; place-items: center; border-radius: 12px; color: var(--green-dark); background: #d7f0df; font-weight: 900; }
    .feature-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

    .progress-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 26px; align-items: stretch; }
    .progress-summary { padding: 30px; border: 1px solid #cfe7d7; border-radius: var(--radius-lg); background: var(--green-soft); }
    .progress-summary .big-number { margin: 12px 0 20px; color: var(--green-dark); font-size: 64px; font-weight: 850; line-height: 1; }
    .progress-summary p { color: var(--text); font-size: 14px; }
    .progress-summary .progress { height: 11px; background: #c9e5d1; }
    .progress-summary .progress span { width: 72%; background: var(--green-dark); }
    .task-list { padding: 14px 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
    .task { display: flex; align-items: center; gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--line); }
    .task:last-child { border-bottom: 0; }
    .task-icon { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: var(--green-dark); background: var(--green-soft); font-weight: 900; }
    .task.pending .task-icon { color: var(--muted); background: #f0f3f1; }
    .task strong { display: block; color: var(--ink); font-size: 15px; }
    .task span { display: block; color: var(--muted); font-size: 12px; }

    .info-section { background: #fff; }
    .info-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; }
    .content-card { display: flex; gap: 19px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); transition: .2s ease; }
    .content-card + .content-card { margin-top: 13px; }
    .content-index { display: grid; flex: 0 0 auto; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--green-dark); background: var(--green-soft); font-size: 13px; font-weight: 850; }
    .content-card h3 { margin-bottom: 5px; font-size: 17px; }
    .content-card p { margin-bottom: 9px; color: var(--muted); font-size: 13px; line-height: 1.65; }
    .meta { display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: 11px; }
    .info-aside { padding: 27px; border-radius: var(--radius-lg); background: var(--ink); }
    .info-aside h3 { color: #fff; }
    .info-aside > p { color: #b9d1c4; font-size: 14px; }
    .aside-line { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-top: 1px solid #365749; color: #e8f5ed; font-size: 14px; }
    .aside-line span { color: var(--lime); font-size: 12px; font-weight: 800; }

    .faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; }
    .faq-intro p { color: var(--muted); }
    .accordion { margin: 0; border: 0; background: transparent; }
    .accordion-item { margin-bottom: 10px; border: 1px solid var(--line); border-radius: 13px; background: #fff; overflow: hidden; }
    .accordion-title { padding: 17px 20px; border: 0; color: var(--ink); font-size: 15px; font-weight: 750; }
    .accordion-title:hover, .accordion-title:focus { color: var(--green-dark); background: var(--green-soft); }
    .accordion-content { border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.8; }

    .cta-section { padding: 84px 0; }
    .cta-box { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 42px 48px; border: 1px solid #c7e7d2; border-radius: var(--radius-lg); background: var(--green-soft); }
    .cta-box h2 { margin-bottom: 9px; }
    .cta-box p { max-width: 640px; margin-bottom: 0; color: var(--text); }
    .cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 13px; }

    .site-footer { padding: 36px 0 27px; border-top: 1px solid var(--line); background: #f5f8f6; }
    .footer-top { display: flex; align-items: start; justify-content: space-between; gap: 40px; padding-bottom: 30px; }
    .footer-brand p { max-width: 350px; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 30px; }
    .footer-links a { color: var(--muted); font-size: 13px; font-weight: 700; }
    .footer-links a:hover { color: var(--green-dark); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

    @media (max-width: 1024px) {
      .nav-panel { flex-wrap: wrap; }
      .nav-entries { order: 3; width: 100%; margin-left: 0; }
      .hero-grid { gap: 30px; }
      .stage { min-height: 420px; }
      .float-tag { right: 10px; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 32px, var(--container)); }
      .section { padding: 68px 0; }
      .site-header { padding-top: 14px; }
      .nav-panel { padding: 12px; }
      .brand { font-size: 16px; }
      .nav-cta { margin-left: auto; }
      .hero { padding: 58px 0 65px; }
      .hero-grid, .preview-layout, .progress-layout, .info-layout, .faq-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: none; }
      .stage { min-height: 0; }
      .section-head { display: block; }
      .section-head p { margin-top: 15px; }
      .step-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-wrap::before { display: none; }
      .cta-box { display: block; padding: 32px 25px; }
      .cta-actions { margin-top: 25px; }
      .footer-top { display: block; }
      .footer-links { margin-top: 24px; }
    }
    @media (max-width: 520px) {
      h1 { font-size: 40px; }
      .hero-copy .lead { font-size: 16px; }
      .nav-cta { width: 100%; margin-left: 0; }
      .nav-entries { padding-bottom: 2px; }
      .stage { padding: 13px; border-radius: 20px; }
      .stage-body { grid-template-columns: 1fr; }
      .stage-side { display: grid; grid-template-columns: 1fr 1fr; }
      .float-tag { display: none; }
      .step-grid, .preview-side { grid-template-columns: 1fr; }
      .feature-card.wide { grid-column: auto; }
      .task-list { padding: 10px 18px; }
      .task { gap: 11px; }
      .footer-bottom { display: block; }
      .footer-bottom span { display: block; margin-top: 7px; }
    }

/* roulang page: category1 */
:root {
            --primary: #168c5b;
            --primary-dark: #0f7048;
            --primary-soft: #eaf7f0;
            --primary-pale: #f4fbf7;
            --ink: #17352c;
            --text: #29443b;
            --muted: #6b7e77;
            --line: #dce8e1;
            --line-strong: #bfdbca;
            --surface: #ffffff;
            --surface-alt: #f5f8f6;
            --yellow: #f5c451;
            --orange: #ee8b4a;
            --cyan: #2c9fa0;
            --shadow-sm: 0 8px 24px rgba(23, 53, 44, 0.07);
            --shadow-md: 0 18px 48px rgba(23, 53, 44, 0.11);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 26px;
            --transition: 180ms ease;
            --container: 1220px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            color: var(--text);
            background: var(--surface);
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.75;
            letter-spacing: 0;
            -webkit-font-smoothing: antialiased;
        }

        body,
        button,
        input {
            letter-spacing: 0;
        }

        a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        button,
        .button {
            font-family: inherit;
            cursor: pointer;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(22, 140, 91, 0.28);
            outline-offset: 3px;
        }

        img {
            display: block;
            max-width: 100%;
        }

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
        }

        h1,
        h2,
        h3 {
            color: var(--ink);
            font-weight: 800;
            letter-spacing: 0;
        }

        h1 {
            margin-bottom: 20px;
            font-size: 48px;
            line-height: 1.2;
        }

        h2 {
            margin-bottom: 16px;
            font-size: 34px;
            line-height: 1.3;
        }

        h3 {
            margin-bottom: 10px;
            font-size: 21px;
            line-height: 1.4;
        }

        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-right: auto;
            margin-left: auto;
        }

        .site-header {
            position: relative;
            z-index: 20;
            padding: 18px 0 8px;
            background: var(--surface);
        }

        .nav-panel {
            display: flex;
            align-items: center;
            gap: 18px;
            min-height: 82px;
            padding: 12px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
        }

        .brand {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 11px;
            color: var(--ink);
            font-size: 18px;
            font-weight: 800;
            white-space: nowrap;
        }

        .brand:hover {
            color: var(--primary-dark);
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            color: #fff;
            background: var(--primary);
            box-shadow: 0 8px 18px rgba(22, 140, 91, 0.22);
            font-size: 16px;
            font-weight: 900;
        }

        .nav-entries {
            display: flex;
            flex: 1;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .nav-entry {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            min-height: 52px;
            padding: 9px 14px;
            border: 1px solid transparent;
            border-radius: 12px;
            color: var(--text);
            background: var(--surface-alt);
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .nav-entry:hover {
            border-color: var(--line-strong);
            color: var(--primary-dark);
            background: var(--primary-pale);
            transform: translateY(-2px);
        }

        .nav-entry.active {
            border-color: #a9d8bd;
            color: var(--primary-dark);
            background: var(--primary-soft);
            box-shadow: inset 0 -3px 0 var(--primary);
        }

        .entry-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            color: var(--primary-dark);
            background: #fff;
            font-size: 15px;
            line-height: 1;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            margin: 0;
            padding: 13px 20px;
            border: 1px solid transparent;
            border-radius: 13px;
            font-size: 15px;
            font-weight: 800;
            line-height: 1.2;
        }

        .button.primary {
            color: #fff;
            background: var(--primary);
        }

        .button.primary:hover,
        .button.primary:active {
            color: #fff;
            background: var(--primary-dark);
            box-shadow: 0 12px 24px rgba(22, 140, 91, 0.22);
            transform: translateY(-2px);
        }

        .button.secondary {
            border-color: var(--line-strong);
            color: var(--primary-dark);
            background: #fff;
        }

        .button.secondary:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            background: var(--primary-pale);
            transform: translateY(-2px);
        }

        .nav-cta {
            flex: 0 0 auto;
            white-space: nowrap;
        }

        main {
            display: block;
        }

        .category-hero {
            position: relative;
            padding: 54px 0 76px;
            overflow: hidden;
            background-color: var(--surface);
            background-image:
                linear-gradient(rgba(22, 140, 91, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(22, 140, 91, 0.045) 1px, transparent 1px);
            background-size: 34px 34px;
        }

        .category-hero::after {
            position: absolute;
            right: 0;
            bottom: 30px;
            width: 18%;
            height: 12px;
            content: "";
            background: var(--yellow);
        }

        .title-board {
            position: relative;
            z-index: 1;
            padding: 42px;
            border: 1px solid var(--line);
            border-radius: var(--radius-xl);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: var(--shadow-md);
        }

        .eyebrow,
        .badge,
        .status-badge,
        .content-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 800;
            line-height: 1.2;
        }

        .eyebrow {
            margin-bottom: 18px;
            padding: 8px 12px;
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .eyebrow::before,
        .status-badge::before {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            content: "";
            background: var(--primary);
            box-shadow: 0 0 0 4px rgba(22, 140, 91, 0.12);
        }

        .hero-copy {
            max-width: 720px;
            margin-bottom: 25px;
            color: var(--muted);
            font-size: 17px;
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

        .hero-actions .text-link {
            padding: 10px 5px;
            font-weight: 800;
        }

        .index-dashboard {
            height: 100%;
            padding: 25px;
            border: 1px solid #cae2d3;
            border-radius: var(--radius-lg);
            background: var(--primary-pale);
        }

        .dashboard-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 21px;
        }

        .dashboard-code {
            color: var(--ink);
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
        }

        .status-badge {
            padding: 7px 10px;
            color: var(--primary-dark);
            background: #fff;
        }

        .entry-matrix {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .matrix-item {
            min-height: 91px;
            padding: 15px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: #fff;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
        }

        .matrix-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .matrix-item span {
            display: block;
            margin-bottom: 7px;
            color: var(--primary);
            font-size: 12px;
            font-weight: 900;
        }

        .matrix-item strong {
            color: var(--ink);
            font-size: 15px;
        }

        .section {
            padding: 86px 0;
        }

        .section.soft {
            background: var(--surface-alt);
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 34px;
        }

        .section-head-copy {
            max-width: 720px;
        }

        .section-head p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 16px;
        }

        .section-kicker {
            display: block;
            margin-bottom: 9px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 900;
        }

        .filter-shell {
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .filter-label {
            margin: 0 0 13px 4px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .filter-bar {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 2px 2px 7px;
            scrollbar-width: thin;
            scrollbar-color: var(--line-strong) transparent;
        }

        .filter-button {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            gap: 8px;
            min-height: 44px;
            padding: 10px 15px;
            border: 1px solid var(--line);
            border-radius: 11px;
            color: var(--text);
            background: var(--surface-alt);
            font-size: 14px;
            font-weight: 800;
            transition: all var(--transition);
        }

        .filter-button:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            background: var(--primary-pale);
        }

        .filter-button.active {
            border-color: var(--primary);
            color: #fff;
            background: var(--primary);
        }

        .filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 23px;
            height: 23px;
            padding: 0 6px;
            border-radius: 7px;
            color: var(--muted);
            background: #fff;
            font-size: 11px;
        }

        .filter-button.active .filter-count {
            color: var(--primary-dark);
        }

        .content-layout {
            align-items: stretch;
        }

        .featured-entry {
            position: relative;
            min-height: 100%;
            padding: 34px;
            overflow: hidden;
            border: 1px solid #c8e0d1;
            border-radius: var(--radius-lg);
            background: var(--primary-pale);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .featured-entry:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .featured-entry::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 110px;
            height: 7px;
            content: "";
            background: var(--primary);
        }

        .entry-number {
            display: block;
            margin-bottom: 35px;
            color: rgba(22, 140, 91, 0.18);
            font-size: 68px;
            font-weight: 900;
            line-height: 1;
        }

        .content-tag {
            margin-bottom: 15px;
            padding: 7px 10px;
            color: var(--primary-dark);
            background: #fff;
        }

        .featured-entry h3 {
            max-width: 480px;
            font-size: 28px;
        }

        .featured-entry p {
            max-width: 560px;
            color: var(--muted);
        }

        .entry-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            margin: 24px 0 28px;
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .entry-meta span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .entry-meta span::before {
            width: 7px;
            height: 7px;
            border-radius: 2px;
            content: "";
            background: var(--primary);
        }

        .visual-preview {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 10px;
            margin-top: 32px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
        }

        .preview-main,
        .preview-side {
            min-height: 115px;
            padding: 14px;
            border-radius: 9px;
        }

        .preview-main {
            background: var(--surface-alt);
        }

        .preview-side {
            color: #fff;
            background: var(--ink);
        }

        .preview-line {
            height: 8px;
            margin-bottom: 9px;
            border-radius: 4px;
            background: #dbe7e0;
        }

        .preview-line.short {
            width: 60%;
        }

        .preview-line.green {
            width: 76%;
            background: #80c5a0;
        }

        .preview-side strong,
        .preview-side small {
            display: block;
        }

        .preview-side strong {
            margin-top: 16px;
            font-size: 23px;
        }

        .preview-side small {
            color: #b9cec5;
        }

        .entry-stack {
            display: grid;
            gap: 14px;
            height: 100%;
        }

        .entry-row {
            display: grid;
            grid-template-columns: 54px minmax(0, 1fr) auto;
            align-items: center;
            gap: 18px;
            min-height: 142px;
            padding: 21px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: #fff;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
        }

        .entry-row:hover {
            border-color: var(--line-strong);
            box-shadow: var(--shadow-sm);
            transform: translateX(3px);
        }

        .row-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 12px;
            color: var(--primary-dark);
            background: var(--primary-soft);
            font-size: 15px;
            font-weight: 900;
        }

        .entry-row h3 {
            margin-bottom: 5px;
            font-size: 18px;
        }

        .entry-row p {
            margin-bottom: 7px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        .row-state {
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
        }

        .icon-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            border-radius: 10px;
            color: var(--primary-dark);
            background: var(--surface-alt);
            font-size: 18px;
            font-weight: 900;
        }

        .icon-link:hover {
            border-color: var(--primary);
            color: #fff;
            background: var(--primary);
            transform: translateX(2px);
        }

        .more-row {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 28px;
        }

        .path-panel {
            padding: 32px;
            border-radius: var(--radius-lg);
            color: #fff;
            background: var(--ink);
        }

        .path-panel h2,
        .path-panel h3 {
            color: #fff;
        }

        .path-panel > p {
            max-width: 610px;
            color: #bdd0c8;
        }

        .path-track {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 30px;
        }

        .path-track::before {
            position: absolute;
            top: 24px;
            right: 10%;
            left: 10%;
            height: 2px;
            content: "";
            background: #3d5c51;
        }

        .path-step {
            position: relative;
            z-index: 1;
            padding: 17px;
            border: 1px solid #3d5c51;
            border-radius: 12px;
            background: #203f35;
        }

        .path-step.complete {
            border-color: #5caf80;
        }

        .step-dot {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            margin-bottom: 13px;
            border: 2px solid #698078;
            border-radius: 50%;
            color: #d5e2dd;
            background: var(--ink);
            font-size: 13px;
            font-weight: 900;
        }

        .path-step.complete .step-dot {
            border-color: #6ed39a;
            color: var(--ink);
            background: #6ed39a;
        }

        .path-step strong,
        .path-step small {
            display: block;
        }

        .path-step strong {
            color: #fff;
            font-size: 15px;
        }

        .path-step small {
            margin-top: 5px;
            color: #a9beb5;
            line-height: 1.55;
        }

        .quick-panel {
            height: 100%;
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .quick-panel h3 {
            font-size: 22px;
        }

        .quick-list {
            margin: 21px 0 25px;
            padding: 0;
            list-style: none;
        }

        .quick-list li {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            padding: 13px 0;
            border-bottom: 1px solid var(--line);
            color: var(--text);
            font-size: 14px;
        }

        .quick-list li::before {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 7px;
            color: var(--primary-dark);
            content: "✓";
            background: var(--primary-soft);
            font-size: 12px;
            font-weight: 900;
        }

        .faq-wrap {
            max-width: 920px;
            margin: 0 auto;
        }

        .accordion {
            margin: 30px 0 0;
            border: 0;
            background: transparent;
        }

        .accordion-item {
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: #fff;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .accordion-item:hover,
        .accordion-item.is-active {
            border-color: var(--line-strong);
            box-shadow: var(--shadow-sm);
        }

        .accordion-title {
            padding: 21px 58px 21px 22px;
            border: 0;
            color: var(--ink);
            font-size: 16px;
            font-weight: 800;
            line-height: 1.5;
        }

        .accordion-title:hover,
        .accordion-title:focus {
            color: var(--primary-dark);
            background: var(--primary-pale);
        }

        .accordion-title::before {
            top: 50%;
            right: 22px;
            margin-top: -12px;
            color: var(--primary);
            font-size: 24px;
        }

        .accordion-content {
            padding: 0 22px 22px;
            border: 0;
            color: var(--muted);
            background: #fff;
            font-size: 15px;
            line-height: 1.8;
        }

        .cta-section {
            padding: 32px 0 90px;
        }

        .cta-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 42px;
            padding: 43px;
            border: 1px solid #bfdfcc;
            border-radius: var(--radius-xl);
            background: var(--primary-soft);
            box-shadow: var(--shadow-sm);
        }

        .cta-panel h2 {
            margin-bottom: 10px;
        }

        .cta-panel p {
            max-width: 700px;
            margin-bottom: 0;
            color: var(--muted);
        }

        .cta-actions {
            display: flex;
            flex: 0 0 auto;
            gap: 10px;
        }

        .site-footer {
            padding: 56px 0 26px;
            border-top: 1px solid var(--line);
            background: var(--surface-alt);
        }

        .footer-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 50px;
            padding-bottom: 36px;
        }

        .footer-brand {
            max-width: 470px;
        }

        .footer-brand p {
            margin: 18px 0 0;
            color: var(--muted);
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px;
        }

        .footer-links a {
            padding: 9px 12px;
            border: 1px solid var(--line);
            border-radius: 9px;
            color: var(--text);
            background: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .footer-links a:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            background: var(--primary-pale);
            transform: translateY(-2px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 24px;
            border-top: 1px solid var(--line);
            color: var(--muted);
            font-size: 12px;
        }

        @media (max-width: 1024px) {
            h1 {
                font-size: 42px;
            }

            .nav-panel {
                flex-wrap: wrap;
            }

            .nav-entries {
                order: 3;
                width: 100%;
                overflow-x: auto;
                padding-top: 3px;
            }

            .nav-cta {
                margin-left: auto;
            }

            .title-board {
                padding: 34px;
            }

            .index-dashboard {
                margin-top: 25px;
            }

            .content-layout > .cell:first-child {
                margin-bottom: 18px;
            }

            .featured-entry {
                min-height: auto;
            }

            .path-track {
                grid-template-columns: 1fr 1fr;
            }

            .path-track::before {
                display: none;
            }

            .quick-panel {
                margin-top: 18px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 29px;
            }

            .container {
                width: min(calc(100% - 28px), var(--container));
            }

            .site-header {
                padding-top: 12px;
            }

            .nav-panel {
                gap: 10px;
                padding: 10px;
                border-radius: 16px;
            }

            .brand {
                font-size: 16px;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
            }

            .nav-cta {
                min-height: 42px;
                padding: 10px 13px;
                font-size: 13px;
            }

            .nav-entry {
                min-height: 47px;
                padding: 8px 12px;
            }

            .category-hero {
                padding: 35px 0 58px;
            }

            .title-board {
                padding: 27px;
                border-radius: 20px;
            }

            .hero-copy {
                font-size: 16px;
            }

            .section {
                padding: 68px 0;
            }

            .section-head {
                display: block;
            }

            .section-head .button {
                margin-top: 18px;
            }

            .entry-row {
                grid-template-columns: 48px minmax(0, 1fr) 40px;
                gap: 12px;
            }

            .cta-panel {
                display: block;
                padding: 32px;
            }

            .cta-actions {
                margin-top: 24px;
            }

            .footer-top,
            .footer-bottom {
                display: block;
            }

            .footer-links {
                justify-content: flex-start;
                margin-top: 26px;
            }

            .footer-bottom span {
                display: block;
                margin-bottom: 7px;
            }
        }

        @media (max-width: 520px) {
            body {
                font-size: 15px;
            }

            h1 {
                font-size: 31px;
                line-height: 1.28;
            }

            h2 {
                font-size: 26px;
            }

            .brand {
                width: 100%;
            }

            .nav-cta {
                width: 100%;
                margin-left: 0;
            }

            .nav-entries {
                order: 2;
            }

            .nav-cta {
                order: 3;
            }

            .title-board {
                padding: 22px;
            }

            .entry-matrix {
                grid-template-columns: 1fr;
            }

            .hero-actions,
            .cta-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .hero-actions .button,
            .cta-actions .button {
                width: 100%;
            }

            .hero-actions .text-link {
                text-align: center;
            }

            .section {
                padding: 54px 0;
            }

            .filter-shell {
                padding: 13px;
            }

            .featured-entry {
                padding: 24px;
            }

            .entry-number {
                margin-bottom: 25px;
                font-size: 55px;
            }

            .featured-entry h3 {
                font-size: 24px;
            }

            .visual-preview {
                grid-template-columns: 1fr;
            }

            .entry-row {
                grid-template-columns: 42px minmax(0, 1fr);
                min-height: 0;
                padding: 17px;
            }

            .row-number {
                width: 42px;
                height: 42px;
            }

            .icon-link {
                display: none;
            }

            .path-panel,
            .quick-panel {
                padding: 23px;
            }

            .path-track {
                grid-template-columns: 1fr;
            }

            .cta-panel {
                padding: 26px 22px;
            }

            .footer-links {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
            }
        }
