/* roulang page: index */
:root {
      --bg: #f8f3ea;
      --surface: #fffdf8;
      --surface-strong: #fff7ed;
      --ink: #28211d;
      --muted: #766b62;
      --soft: #a39688;
      --line: #eadfce;
      --primary: #e94222;
      --primary-dark: #c93218;
      --accent: #ff8a24;
      --gold: #b9822a;
      --green: #1f8f63;
      --shadow: 0 18px 45px rgba(83, 56, 30, .12);
      --shadow-soft: 0 10px 24px rgba(83, 56, 30, .09);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1180px;
      --nav-h: 74px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(255, 247, 237, .9), rgba(248, 243, 234, .96) 36%, rgba(255, 253, 248, 1));
      line-height: 1.72;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      color: var(--ink);
      padding: 13px 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    input:focus,
    textarea:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(233, 66, 34, .22);
      outline-offset: 2px;
      border-color: var(--primary);
    }

    .site-wrap {
      overflow: hidden;
      min-height: 100vh;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .top-strip {
      background: #2b2119;
      color: #fff1de;
      font-size: 13px;
    }

    .top-strip .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 34px;
    }

    .strip-note {
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .strip-note i {
      color: var(--accent);
    }

    .strip-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .strip-tags span {
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 999px;
      padding: 2px 9px;
      color: #ffe4c2;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 248, .94);
      border-bottom: 1px solid rgba(234, 223, 206, .9);
      backdrop-filter: blur(14px);
      box-shadow: 0 6px 20px rgba(71, 47, 26, .05);
    }

    .nav-bar {
      min-height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 22px;
      color: var(--ink);
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 10px 22px rgba(233, 66, 34, .25);
      font-size: 17px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 0;
      list-style: none;
      flex: 1;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      color: #4d4239;
      font-weight: 700;
      font-size: 15px;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: #fff0e5;
      color: var(--primary-dark);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 36px;
      padding: 0 12px;
      border: 1px solid #f4d4bd;
      border-radius: 999px;
      color: #8b461d;
      background: #fff7ed;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(31, 143, 99, .12);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      color: var(--ink);
      align-items: center;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 12px 26px rgba(233, 66, 34, .23);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: #fff;
      box-shadow: 0 14px 30px rgba(233, 66, 34, .28);
    }

    .btn-secondary {
      background: #fff;
      color: var(--ink);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      border-color: #e5b088;
      background: #fff8f0;
      color: var(--primary-dark);
    }

    .btn-soft {
      background: #fff3e8;
      color: var(--primary-dark);
      border-color: #ffd7bd;
    }

    .btn-block {
      width: 100%;
    }

    .badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .badge {
      padding: 8px 11px;
      color: #8a4118;
      background: #fff1df;
      border: 1px solid #f6d4b8;
    }

    .tag {
      padding: 7px 10px;
      color: #5e5146;
      background: #f4eadc;
      border: 1px solid #eadfce;
    }

    main section {
      padding: 76px 0;
    }

    .hero {
      padding: 66px 0 34px;
      background:
        radial-gradient(circle at 16% 10%, rgba(255, 138, 36, .18), transparent 28%),
        linear-gradient(135deg, #fffdf8 0%, #fff3e5 52%, #f8ead8 100%);
      border-bottom: 1px solid var(--line);
    }

    .hero-band {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 34px 0;
    }

    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 820px;
      font-size: 48px;
      line-height: 1.16;
      letter-spacing: 0;
      margin-bottom: 18px;
      color: #221913;
      font-weight: 950;
    }

    .hero-lead {
      max-width: 760px;
      color: #594c42;
      font-size: 18px;
      line-height: 1.88;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(234, 223, 206, .9);
      color: #594c42;
      font-weight: 800;
      font-size: 14px;
    }

    .hero-points i {
      color: var(--primary);
    }

    .lead-panel {
      background: rgba(255, 253, 248, .86);
      border: 1px solid rgba(234, 223, 206, .95);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px;
      align-self: stretch;
    }

    .lead-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 16px;
    }

    .lead-panel-head strong {
      font-size: 18px;
    }

    .quick-form {
      display: grid;
      gap: 12px;
      margin-bottom: 16px;
    }

    .quick-form label {
      display: grid;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 800;
    }

    .select-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    select {
      width: 100%;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      color: var(--ink);
      padding: 0 12px;
      outline: none;
      font-weight: 700;
    }

    select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(233, 66, 34, .15);
    }

    .panel-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .summary-cell {
      background: #fff7ed;
      border: 1px solid #f3dcc9;
      border-radius: var(--radius-sm);
      padding: 12px;
    }

    .summary-cell b {
      display: block;
      color: var(--primary-dark);
      font-size: 22px;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .summary-cell span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .trust-bar {
      padding: 20px 0 0;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fffdf8;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 15px;
      box-shadow: var(--shadow-soft);
    }

    .trust-item i {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      color: var(--primary);
      background: #fff0e5;
      border-radius: var(--radius-sm);
      flex: 0 0 auto;
    }

    .trust-item strong {
      display: block;
      line-height: 1.2;
    }

    .trust-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(260px, .22fr);
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head h2 {
      font-size: 34px;
      line-height: 1.22;
      margin-bottom: 10px;
      font-weight: 950;
    }

    .section-head p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .section-side {
      justify-self: end;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .about-kpi {
      background: #fffdf8;
    }

    .kpi-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .about-block {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff8f0;
      padding: 28px;
    }

    .about-block h2 {
      font-size: 32px;
      line-height: 1.24;
      margin-bottom: 14px;
      font-weight: 950;
    }

    .about-block p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 11px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: #4f443b;
      font-weight: 750;
    }

    .check-list i {
      color: var(--green);
      margin-top: 6px;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .kpi-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .kpi-card b {
      display: block;
      font-size: 38px;
      line-height: 1;
      color: var(--primary);
      margin-bottom: 10px;
      font-weight: 950;
    }

    .kpi-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 17px;
    }

    .kpi-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .news-section {
      background: #f7efe3;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
    }

    .news-list,
    .recommend-panel,
    .card,
    .service-card,
    .topic-card,
    .step-card,
    .privacy-box,
    .faq-item,
    .cta-band {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffdf8;
      box-shadow: var(--shadow-soft);
    }

    .news-list {
      padding: 8px;
    }

    .news-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 18px;
      border-radius: var(--radius-sm);
    }

    .news-row + .news-row {
      border-top: 1px solid #efe2d1;
    }

    .news-row:hover {
      background: #fff7ed;
      transform: translateY(-1px);
    }

    .news-date {
      min-width: 74px;
      text-align: center;
      color: var(--primary-dark);
      font-weight: 950;
      background: #fff1df;
      border-radius: var(--radius-sm);
      padding: 8px 10px;
      line-height: 1.2;
    }

    .news-row h3 {
      margin-bottom: 4px;
      font-size: 18px;
      line-height: 1.35;
    }

    .news-row p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-row .arrow {
      color: var(--primary);
    }

    .recommend-panel {
      padding: 22px;
      background: #2c2119;
      color: #fff6ec;
    }

    .recommend-panel h3 {
      font-size: 24px;
      margin-bottom: 12px;
      color: #fff;
    }

    .recommend-panel p {
      color: #ead7c2;
      margin-bottom: 18px;
    }

    .recommend-list {
      list-style: none;
      margin: 0 0 20px;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .recommend-list li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .06);
    }

    .recommend-list span {
      color: #ffd3ad;
      font-weight: 900;
    }

    .service-section {
      background: #fffdf8;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .service-card {
      padding: 22px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: #f0c2a5;
    }

    .icon-box {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      margin-bottom: 16px;
    }

    .service-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .service-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 16px;
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--primary-dark);
      font-weight: 900;
      font-size: 14px;
    }

    .topic-section {
      background: #fff6ea;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .topic-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .topic-card {
      padding: 22px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
    }

    .topic-rank {
      width: 46px;
      height: 46px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: #2c2119;
      color: #ffd7a8;
      font-weight: 950;
    }

    .topic-card h3 {
      font-size: 20px;
      margin-bottom: 7px;
    }

    .topic-card p {
      margin-bottom: 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .media-section {
      background: #fffdf8;
    }

    .media-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 330px);
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 14px;
      scrollbar-color: #e4b28a #fff3e7;
    }

    .media-card {
      min-height: 240px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .media-visual {
      min-height: 106px;
      background:
        linear-gradient(135deg, rgba(233, 66, 34, .88), rgba(255, 138, 36, .82)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .24) 0 8px, transparent 8px 18px);
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 10px;
      padding: 14px;
      color: #fff;
      font-weight: 950;
    }

    .media-visual i {
      font-size: 28px;
      opacity: .95;
    }

    .media-card-body {
      padding: 18px;
    }

    .media-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .media-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .steps-section {
      background: #f7efe3;
    }

    .steps-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 22px;
      align-items: start;
    }

    .steps-intro {
      position: sticky;
      top: 104px;
      border-radius: var(--radius);
      background: #2c2119;
      color: #fff6ec;
      padding: 28px;
    }

    .steps-intro h2 {
      color: #fff;
      font-size: 30px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .steps-intro p {
      color: #ead7c2;
    }

    .step-list {
      display: grid;
      gap: 14px;
    }

    .step-card {
      padding: 20px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 15px;
      align-items: start;
    }

    .step-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fff0e5;
      color: var(--primary);
      font-weight: 950;
    }

    .step-card h3 {
      font-size: 19px;
      margin-bottom: 6px;
    }

    .step-card p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 14px;
    }

    .app-section {
      background: #fffdf8;
    }

    .app-band {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px;
      background: linear-gradient(135deg, #fffdf8, #fff1df);
      box-shadow: var(--shadow);
    }

    .app-band h2 {
      font-size: 32px;
      line-height: 1.24;
      margin-bottom: 12px;
    }

    .app-band p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .app-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .app-feature {
      border: 1px solid #efd8c2;
      background: rgba(255, 255, 255, .78);
      border-radius: var(--radius-sm);
      padding: 14px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-weight: 850;
    }

    .app-feature i {
      color: var(--primary);
      margin-top: 5px;
    }

    .cta-section {
      background: #fff6ea;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .cta-band {
      padding: 28px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      background: #2c2119;
      color: #fff6ec;
      box-shadow: none;
      border-color: #3d2d22;
    }

    .cta-band h2 {
      color: #fff;
      font-size: 30px;
      margin-bottom: 8px;
    }

    .cta-band p {
      color: #ead7c2;
      margin-bottom: 0;
    }

    .privacy-section {
      padding-top: 34px;
      background: #fffdf8;
    }

    .privacy-box {
      padding: 20px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      box-shadow: none;
      background: #fffaf3;
    }

    .privacy-box i {
      color: var(--green);
      font-size: 22px;
      margin-top: 4px;
    }

    .privacy-box h2 {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .privacy-box p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 14px;
    }

    .faq-section {
      background: #fffdf8;
    }

    .accordion {
      background: transparent;
      border: 0;
    }

    .faq-item {
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: none;
    }

    .accordion-title {
      border: 0;
      color: var(--ink);
      font-size: 17px;
      font-weight: 900;
      padding: 18px 52px 18px 20px;
      background: #fffaf3;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #fff1df;
      color: var(--primary-dark);
    }

    .accordion-title::before {
      color: var(--primary);
      right: 20px;
      margin-top: -9px;
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--line);
      background: #fffdf8;
      color: var(--muted);
      padding: 18px 20px;
    }

    .site-footer {
      background: #241b15;
      color: #ead7c2;
      padding: 52px 0 22px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 22px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-brand .brand-mark {
      box-shadow: none;
    }

    .footer-grid p {
      color: #d6c2ad;
      margin-bottom: 0;
      max-width: 540px;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 17px;
      margin-bottom: 12px;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: #d6c2ad;
    }

    .footer-links a:hover {
      color: #fff1de;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      color: #bba691;
      font-size: 13px;
      flex-wrap: wrap;
    }

    .modal {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 0;
      overflow: hidden;
      max-width: 520px;
    }

    .modal-head {
      padding: 22px 24px;
      background: #fff3e5;
      border-bottom: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: start;
    }

    .modal-head h2 {
      margin-bottom: 4px;
      font-size: 24px;
    }

    .modal-head p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .close-button {
      color: var(--ink);
      font-size: 28px;
    }

    .modal-body {
      padding: 24px;
    }

    .modal-form {
      display: grid;
      gap: 14px;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      margin: 0;
    }

    @media (max-width: 1024px) {
      h1 {
        font-size: 40px;
      }

      .hero-band,
      .kpi-layout,
      .news-layout,
      .steps-layout,
      .app-band {
        grid-template-columns: 1fr;
      }

      .steps-intro {
        position: static;
      }

      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links {
        gap: 2px;
      }

      .nav-links a {
        padding: 0 10px;
      }

      .status-pill {
        display: none;
      }
    }

    @media (max-width: 768px) {
      :root {
        --nav-h: 64px;
      }

      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .top-strip .container {
        align-items: flex-start;
        flex-direction: column;
        padding: 8px 0;
        gap: 6px;
      }

      .strip-note {
        white-space: normal;
      }

      .nav-bar {
        position: relative;
      }

      .brand {
        font-size: 18px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: #fffdf8;
        border: 1px solid var(--line);
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow);
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a {
        justify-content: center;
        border-radius: var(--radius-sm);
      }

      .nav-actions .btn {
        display: none;
      }

      main section {
        padding: 54px 0;
      }

      .hero {
        padding-top: 42px;
      }

      .hero-copy {
        padding: 0;
      }

      h1 {
        font-size: 32px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions,
      .section-side {
        width: 100%;
      }

      .hero-actions .btn,
      .section-side .btn,
      .cta-band .btn {
        width: 100%;
      }

      .panel-summary,
      .select-row,
      .kpi-grid,
      .service-grid,
      .topic-grid,
      .app-grid,
      .trust-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .section-side {
        justify-self: stretch;
        justify-content: stretch;
      }

      .news-row {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
        width: fit-content;
      }

      .topic-card,
      .step-card,
      .privacy-box {
        grid-template-columns: 1fr;
      }

      .cta-band {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 28px;
      }

      .section-head h2,
      .about-block h2,
      .app-band h2,
      .cta-band h2,
      .steps-intro h2 {
        font-size: 25px;
      }

      .lead-panel,
      .about-block,
      .app-band,
      .cta-band {
        padding: 18px;
      }

      .hero-points li,
      .badge,
      .tag {
        white-space: normal;
      }

      .media-scroll {
        grid-auto-columns: minmax(238px, 86vw);
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #f7f1e9;
      --bg-soft: #fff8ef;
      --surface: #ffffff;
      --surface-warm: #fff3e0;
      --text: #2b2520;
      --muted: #756b60;
      --light: #9d9185;
      --line: #eadfce;
      --primary: #e94724;
      --primary-dark: #c93618;
      --accent: #ff8a1f;
      --gold: #b88443;
      --green: #1f9d67;
      --radius: 8px;
      --radius-sm: 6px;
      --shadow: 0 14px 36px rgba(77, 48, 25, 0.10);
      --shadow-soft: 0 8px 22px rgba(77, 48, 25, 0.08);
      --container: 1180px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #fff9f2 0%, var(--bg) 42%, #fff 100%);
      line-height: 1.75;
      font-size: 16px;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 248, 239, .94);
      border-bottom: 1px solid rgba(234, 223, 206, .88);
      backdrop-filter: blur(16px);
      box-shadow: 0 6px 20px rgba(65, 42, 24, .05);
    }

    .nav-bar {
      min-height: 76px;
      display: flex;
      align-items: center;
      gap: 22px;
      position: relative;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand {
      font-size: 20px;
      margin-right: 10px;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 10px 20px rgba(233, 71, 36, .22);
      flex: 0 0 auto;
    }

    .menu-toggle {
      display: none;
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--text);
      border-radius: var(--radius-sm);
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
      padding: 0;
      flex: 1;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: 15px;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary-dark);
      background: #fff0e5;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
    }

    .status-pill,
    .badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-pill {
      color: #7a3b13;
      background: #fff2d8;
      border: 1px solid #f2d2a3;
      padding: 8px 12px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(31, 157, 103, .12);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 900;
      line-height: 1.2;
      transition: var(--ease);
      text-align: center;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow-soft);
    }

    .btn:focus,
    .menu-toggle:focus,
    input:focus,
    select:focus,
    textarea:focus,
    .filter-chip:focus {
      outline: 3px solid rgba(255, 138, 31, .28);
      outline-offset: 2px;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: #fff;
    }

    .btn-secondary {
      background: #fff8ef;
      color: var(--text);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      color: var(--primary-dark);
      background: #fff2e8;
    }

    .btn-ghost {
      background: #fff;
      color: var(--primary-dark);
      border-color: #f2c7ae;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 34px 0 58px;
      background:
        linear-gradient(115deg, rgba(233, 71, 36, .95) 0%, rgba(255, 138, 31, .88) 42%, rgba(255, 248, 239, .94) 42.2%, rgba(255, 248, 239, .96) 100%);
      border-bottom: 1px solid var(--line);
    }

    .top-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 14px;
      margin-bottom: 28px;
      border-radius: var(--radius);
      color: #fff;
      background: rgba(43, 37, 32, .24);
      border: 1px solid rgba(255, 255, 255, .24);
      backdrop-filter: blur(10px);
    }

    .top-strip strong {
      font-size: 14px;
    }

    .countdown {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 900;
      color: #fff8df;
      white-space: nowrap;
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, .58fr);
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      color: #7f2b12;
      background: #fff3db;
      border: 1px solid rgba(255, 218, 166, .9);
      border-radius: 999px;
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 16px;
    }

    .page-hero h1 {
      margin: 0;
      max-width: 760px;
      color: #fff;
      font-size: 44px;
      line-height: 1.16;
      font-weight: 950;
      text-wrap: balance;
    }

    .hero-copy {
      margin: 18px 0 24px;
      max-width: 720px;
      color: rgba(255, 255, 255, .94);
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-actions .btn-secondary {
      background: rgba(255, 255, 255, .96);
      border-color: rgba(255, 255, 255, .6);
    }

    .hero-panel {
      background: rgba(255, 255, 255, .96);
      border: 1px solid rgba(255, 233, 214, .95);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px;
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .panel-head h2 {
      margin: 0;
      font-size: 20px;
      font-weight: 950;
    }

    .badge {
      color: #8b330f;
      background: #fff0df;
      border: 1px solid #f4c2a6;
      padding: 6px 10px;
    }

    .entry-meter {
      display: grid;
      gap: 10px;
    }

    .meter-row {
      display: grid;
      grid-template-columns: 88px 1fr auto;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .meter-bar {
      height: 9px;
      border-radius: 999px;
      background: #f2e3d2;
      overflow: hidden;
    }

    .meter-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .quick-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .summary-item {
      padding: 12px;
      border-radius: var(--radius-sm);
      background: #fff8ef;
      border: 1px solid var(--line);
    }

    .summary-item strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      color: var(--primary-dark);
      margin-bottom: 6px;
    }

    .summary-item span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    main {
      background: linear-gradient(180deg, #fffaf3 0%, #fff 60%);
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 28px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      font-weight: 950;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .section h2 {
      margin: 0;
      font-size: 30px;
      line-height: 1.25;
      font-weight: 950;
      color: var(--text);
    }

    .section-head p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .guard-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: -28px;
      position: relative;
      z-index: 3;
    }

    .guard-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 82px;
      padding: 16px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .guard-icon {
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      background: #fff0e5;
      flex: 0 0 auto;
    }

    .guard-item strong {
      display: block;
      font-weight: 950;
      line-height: 1.3;
    }

    .guard-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .control-band {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .filter-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: end;
      padding: 22px;
      border-radius: var(--radius);
      background: var(--surface);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .filter-title {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      font-weight: 950;
      color: var(--text);
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .filter-chip {
      border: 1px solid var(--line);
      background: #fffaf4;
      color: var(--muted);
      border-radius: 999px;
      padding: 9px 14px;
      font-weight: 850;
      transition: var(--ease);
    }

    .filter-chip:hover,
    .filter-chip.active {
      color: var(--primary-dark);
      background: #fff0e5;
      border-color: #f4bea4;
    }

    .select-wrap {
      display: grid;
      gap: 8px;
      min-width: 180px;
    }

    .select-wrap label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 850;
    }

    .select-wrap select {
      height: 44px;
      margin: 0;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background-color: #fffaf4;
      box-shadow: none;
      font-weight: 800;
      color: var(--text);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      padding: 22px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      transition: var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: #f0b894;
      box-shadow: var(--shadow);
    }

    .entry-card h3 {
      margin: 10px 0 8px;
      font-size: 22px;
      font-weight: 950;
      line-height: 1.3;
    }

    .entry-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      color: #7a3b13;
      background: #fff3df;
      border: 1px solid #f2d4ad;
      padding: 5px 9px;
    }

    .tag.green {
      color: #166844;
      background: #eaf8f1;
      border-color: #bfe8d2;
    }

    .tag.red {
      color: #9a2d12;
      background: #fff0e9;
      border-color: #f3bca4;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
      margin-top: 16px;
      color: var(--light);
      font-size: 13px;
      font-weight: 750;
    }

    .entry-side {
      min-width: 132px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
      gap: 18px;
    }

    .score {
      text-align: right;
    }

    .score strong {
      display: block;
      color: var(--primary-dark);
      font-size: 30px;
      line-height: 1;
      font-weight: 950;
    }

    .score span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
    }

    .compare-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 22px;
      align-items: stretch;
    }

    .compare-card,
    .process-card,
    .privacy-box,
    .cta-panel {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .compare-card {
      padding: 24px;
    }

    .compare-card h3 {
      margin: 0 0 16px;
      font-size: 22px;
      font-weight: 950;
    }

    .compare-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px;
      background: #fff8ef;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--muted);
    }

    .compare-list i {
      color: var(--primary-dark);
      margin-top: 5px;
    }

    .process-grid {
      display: grid;
      gap: 12px;
    }

    .process-card {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 14px;
      padding: 18px;
    }

    .step-num {
      width: 54px;
      height: 54px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      font-weight: 950;
      font-size: 18px;
    }

    .process-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 950;
    }

    .process-card p {
      margin: 0;
      color: var(--muted);
    }

    .load-more {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 26px;
      padding: 16px;
      border: 1px dashed #efb28e;
      border-radius: var(--radius);
      color: var(--primary-dark);
      background: #fff7ee;
      font-weight: 900;
    }

    .privacy-box {
      padding: 22px;
      background: #fffaf4;
    }

    .privacy-box details {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      padding: 0;
    }

    .privacy-box summary {
      padding: 15px 16px;
      cursor: pointer;
      font-weight: 950;
      color: var(--text);
    }

    .privacy-box p {
      margin: 0;
      padding: 0 16px 16px;
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 920px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .faq-item button {
      width: 100%;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 18px;
      border: 0;
      background: transparent;
      color: var(--text);
      font-weight: 950;
      text-align: left;
    }

    .faq-item button i {
      color: var(--primary-dark);
      transition: var(--ease);
    }

    .faq-item.active button i {
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .cta-section {
      padding: 68px 0;
      background:
        linear-gradient(90deg, rgba(43, 37, 32, .92), rgba(122, 59, 19, .82)),
        linear-gradient(135deg, #e94724, #ff8a1f);
      color: #fff;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 28px;
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .22);
      box-shadow: none;
    }

    .cta-panel h2 {
      margin: 0;
      color: #fff;
      font-size: 30px;
      font-weight: 950;
    }

    .cta-panel p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, .86);
    }

    .cta-panel .btn-secondary {
      background: #fff;
      color: var(--primary-dark);
      border-color: #fff;
    }

    .site-footer {
      padding: 54px 0 28px;
      background: #2b2520;
      color: rgba(255, 255, 255, .82);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-brand {
      color: #fff;
      font-size: 20px;
      margin-bottom: 14px;
    }

    .site-footer p {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 255, 255, .68);
    }

    .footer-col h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 16px;
      font-weight: 950;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-top: 20px;
      color: rgba(255, 255, 255, .56);
      font-size: 14px;
    }

    .reveal {
      border: 0;
      border-radius: var(--radius);
      padding: 0;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .lead-modal {
      background: #fffaf4;
    }

    .modal-head {
      padding: 22px 24px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      position: relative;
    }

    .modal-head h2 {
      margin: 0;
      font-size: 24px;
      font-weight: 950;
      color: #fff;
    }

    .modal-head p {
      margin: 8px 0 0;
      color: rgba(255, 255, 255, .9);
    }

    .close-button {
      color: #fff;
      top: 10px;
      right: 14px;
    }

    .lead-form {
      padding: 24px;
    }

    .lead-form label {
      color: var(--text);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: none;
      margin-top: 7px;
    }

    .form-note {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .hero-layout,
      .compare-wrap {
        grid-template-columns: 1fr;
      }

      .page-hero {
        background: linear-gradient(160deg, var(--primary) 0%, var(--accent) 54%, #fff8ef 54.2%, #fff8ef 100%);
      }

      .entry-grid,
      .guard-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-bar {
        min-height: 66px;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 66px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        background: rgba(255, 248, 239, .98);
        border: 1px solid var(--line);
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow-soft);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        width: 100%;
        justify-content: center;
      }

      .nav-actions .status-pill {
        display: none;
      }

      .nav-actions .btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 14px;
      }

      .page-hero h1 {
        font-size: 34px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .top-strip {
        align-items: flex-start;
        flex-direction: column;
      }

      .filter-panel,
      .entry-card,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .entry-side {
        align-items: stretch;
      }

      .score {
        text-align: left;
      }

      .entry-side .btn {
        width: 100%;
      }

      .section {
        padding: 56px 0;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 22px, var(--container));
      }

      .brand {
        font-size: 17px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
      }

      .nav-actions .btn {
        width: 42px;
        padding: 0;
      }

      .nav-actions .btn span,
      .nav-actions .btn:not(.keep-text) {
        font-size: 0;
      }

      .nav-actions .btn i {
        font-size: 15px;
      }

      .page-hero {
        padding: 24px 0 44px;
      }

      .page-hero h1 {
        font-size: 28px;
      }

      .hero-actions .btn,
      .cta-panel .btn {
        width: 100%;
      }

      .hero-panel {
        padding: 16px;
      }

      .quick-summary,
      .guard-bar,
      .entry-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .meter-row {
        grid-template-columns: 72px 1fr;
      }

      .meter-row strong {
        grid-column: 2;
      }

      .section h2,
      .cta-panel h2 {
        font-size: 24px;
      }

      .filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .filter-chip {
        padding: 9px 10px;
      }
    }
