/* roulang page: index */
:root {
      --bg: #f7efe4;
      --bg-alt: #fffaf2;
      --panel: rgba(255, 250, 242, 0.95);
      --panel-strong: #fff8ee;
      --text: #2f241c;
      --muted: #7f6d60;
      --line: #ead8c6;
      --line-strong: #dfc3a7;
      --primary: #d97b38;
      --primary-2: #ef9a58;
      --primary-dark: #b95f21;
      --accent: #f7c58d;
      --shadow: 0 18px 45px rgba(82, 56, 35, 0.10);
      --shadow-soft: 0 10px 24px rgba(82, 56, 35, 0.08);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --max: 1220px;
      --ease: all .25s ease;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(239, 154, 88, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(247, 197, 141, 0.14), transparent 24%),
        linear-gradient(180deg, #fbf5ec 0%, #f8efe2 100%);
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      line-height: 1.75;
      font-size: 16px;
      padding-bottom: 88px;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; text-decoration: none; transition: var(--ease); }
    a:hover, a:focus { color: var(--primary-dark); }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font: inherit; }
    ::selection { background: rgba(217, 123, 56, 0.18); }

    .page-shell { position: relative; overflow: clip; }
    .grid-container { max-width: var(--max); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      backdrop-filter: blur(18px);
      background: rgba(255, 248, 239, 0.82);
      border-bottom: 1px solid rgba(234, 216, 198, 0.9);
      transition: var(--ease);
    }
    .site-header.is-stuck {
      background: rgba(255, 248, 239, 0.95);
      box-shadow: 0 8px 24px rgba(74, 45, 22, 0.08);
    }
    .top-bar, .top-bar ul { background: transparent; }
    .top-bar {
      padding: 0.95rem 0;
      align-items: center;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      font-weight: 800;
      letter-spacing: .02em;
    }
    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(217, 123, 56, .24);
      color: #fff;
      flex: 0 0 42px;
    }
    .brand-mark svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
    .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
    .brand-text strong { font-size: 1.02rem; }
    .brand-text span { font-size: .76rem; color: var(--muted); font-weight: 500; margin-top: .2rem; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: .55rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-links a {
      padding: .62rem .95rem;
      border-radius: 999px;
      color: #554538;
      font-size: .95rem;
      font-weight: 600;
    }
    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a.active {
      background: rgba(217, 123, 56, 0.12);
      color: var(--primary-dark);
    }

    .search-mini {
      position: relative;
      min-width: 240px;
      max-width: 320px;
      width: 100%;
    }
    .search-mini input,
    .hero-search input,
    .demo-form input {
      width: 100%;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.88);
      padding: .92rem 1rem .92rem 3rem;
      margin: 0;
      box-shadow: none;
      transition: var(--ease);
      color: var(--text);
    }
    .search-mini input:focus,
    .hero-search input:focus,
    .demo-form input:focus,
    .demo-form select:focus,
    textarea:focus {
      border-color: rgba(217, 123, 56, .75);
      box-shadow: 0 0 0 4px rgba(217, 123, 56, 0.12);
      background: #fff;
    }
    .search-mini svg,
    .hero-search svg,
    .demo-form .prefix-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      width: 18px;
      height: 18px;
      pointer-events: none;
    }

    .button,
    .btn {
      border-radius: 999px;
      font-weight: 700;
      transition: var(--ease);
      padding: .9rem 1.2rem;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
    }
    .button.primary,
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color: #fff;
      box-shadow: 0 14px 28px rgba(217, 123, 56, 0.24);
    }
    .button.primary:hover,
    .btn-primary:hover,
    .button.primary:focus,
    .btn-primary:focus {
      background: linear-gradient(135deg, var(--primary-dark) 0%, #e98a49 100%);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 32px rgba(217, 123, 56, 0.28);
    }
    .button.ghost,
    .btn-ghost {
      background: rgba(255,255,255,0.88);
      color: var(--text);
      border-color: var(--line);
    }
    .button.ghost:hover,
    .btn-ghost:hover,
    .button.ghost:focus,
    .btn-ghost:focus {
      background: rgba(247, 197, 141, .18);
      color: var(--primary-dark);
      border-color: rgba(217, 123, 56, .34);
      transform: translateY(-1px);
    }
    .button.small,
    .btn.small { padding: .72rem 1rem; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .4rem .72rem;
      border-radius: 999px;
      background: rgba(217, 123, 56, 0.10);
      color: var(--primary-dark);
      border: 1px solid rgba(217, 123, 56, 0.16);
      font-size: .86rem;
      font-weight: 700;
    }
    .badge.neutral { background: rgba(255,255,255,.72); color: #6c5a4e; border-color: var(--line); }
    .badge.soft { background: rgba(247, 197, 141, .18); }

    .section { padding: 84px 0; position: relative; }
    .section.tight { padding: 60px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .section-head h2,
    .section-head h3 {
      margin: 0;
      line-height: 1.18;
      letter-spacing: -.02em;
    }
    .section-head p {
      margin: .35rem 0 0;
      color: var(--muted);
      max-width: 62ch;
    }

    .hero {
      padding: 42px 0 82px;
      position: relative;
      overflow: hidden;
    }
    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(12px);
      pointer-events: none;
    }
    .hero::before {
      width: 260px; height: 260px;
      background: rgba(239, 154, 88, 0.16);
      top: 18px; right: -60px;
    }
    .hero::after {
      width: 320px; height: 320px;
      background: rgba(247, 197, 141, 0.17);
      bottom: -70px; left: -120px;
    }
    .hero-card,
    .panel,
    .feature-card,
    .info-card,
    .proof-card,
    .faq-card,
    .side-card,
    .cta-card,
    .update-list,
    .mock-box {
      background: var(--panel);
      border: 1px solid rgba(234, 216, 198, 0.9);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
    }
    .hero-card {
      padding: 28px;
      position: relative;
      overflow: hidden;
    }
    .hero-kicker {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      margin-bottom: 1rem;
    }
    .hero h1 {
      margin: 0;
      font-size: clamp(2rem, 4.8vw, 3.5rem);
      line-height: 1.12;
      letter-spacing: -.03em;
      max-width: 12ch;
    }
    .hero-lead {
      margin: 1rem 0 1.3rem;
      max-width: 56ch;
      color: #58493f;
      font-size: 1.06rem;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .8rem;
      margin: 1.15rem 0 1.2rem;
    }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: .8rem;
      margin-top: 1.35rem;
    }
    .metric {
      padding: .95rem 1rem;
      background: rgba(255,255,255,0.82);
      border-radius: 18px;
      border: 1px solid var(--line);
    }
    .metric strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: .15rem;
    }
    .metric span {
      font-size: .88rem;
      color: var(--muted);
    }

    .hero-visual {
      padding: 22px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background:
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,250,242,.9));
    }
    .visual-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .8rem;
    }
    .tag-tile {
      min-height: 88px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(247, 197, 141, .22), rgba(255,255,255,.92));
      border: 1px solid rgba(217, 123, 56, .16);
      padding: .9rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 8px 18px rgba(82, 56, 35, 0.06);
    }
    .tag-tile strong { font-size: 1rem; }
    .tag-tile span { color: var(--muted); font-size: .86rem; }
    .tag-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
    }
    .tag-chip {
      padding: .42rem .72rem;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      color: #665548;
      font-size: .88rem;
      font-weight: 600;
    }
    .steps-card {
      padding: 1rem;
      background: rgba(255,255,255,.88);
      border: 1px dashed rgba(217, 123, 56, .28);
      border-radius: 22px;
    }
    .steps-card ol {
      margin: 0;
      padding-left: 1.2rem;
      color: #5e4d42;
    }
    .steps-card li { margin: .32rem 0; }

    .trust-strip {
      padding: 16px 0 6px;
    }
    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .85rem;
    }
    .trust-item {
      padding: .95rem 1rem;
      border-radius: 20px;
      background: rgba(255,255,255,.76);
      border: 1px solid var(--line);
      display: flex;
      gap: .8rem;
      align-items: flex-start;
      box-shadow: 0 8px 18px rgba(82, 56, 35, 0.05);
    }
    .trust-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: rgba(217, 123, 56, 0.12);
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 38px;
      font-size: 1rem;
      font-weight: 800;
    }
    .trust-item strong { display: block; margin-bottom: .1rem; }
    .trust-item span { color: var(--muted); font-size: .92rem; }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.2fr .9fr .9fr;
      gap: 1rem;
    }
    .feature-card {
      padding: 1.2rem;
      position: relative;
      overflow: hidden;
      min-height: 220px;
    }
    .feature-card::after {
      content: "";
      position: absolute;
      inset: auto -12px -12px auto;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(239,154,88,.18), rgba(239,154,88,0));
      pointer-events: none;
    }
    .feature-card h3 {
      margin: .5rem 0 .7rem;
      font-size: 1.22rem;
    }
    .feature-card p { margin: 0; color: var(--muted); }
    .feature-list {
      margin: 1rem 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: .65rem;
    }
    .feature-list li {
      display: flex;
      gap: .65rem;
      align-items: flex-start;
      color: #5c4c41;
    }
    .feature-list li::before {
      content: "●";
      color: var(--primary);
      margin-top: .06rem;
      font-size: .8rem;
    }
    .feature-card.highlight {
      background: linear-gradient(180deg, rgba(255, 250, 242, .96), rgba(255, 241, 226, .95));
    }

    .demo-wrap {
      padding: 1rem;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,250,242,.9));
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
    .demo-flow {
      display: grid;
      grid-template-columns: 1fr .95fr;
      gap: 1rem;
      align-items: stretch;
    }
    .demo-timeline,
    .demo-preview {
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 1.1rem;
      height: 100%;
    }
    .timeline {
      display: grid;
      gap: .9rem;
      margin-top: .5rem;
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: .8rem;
      align-items: start;
      padding: .65rem 0;
    }
    .timeline-num {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(217,123,56,.12);
      border: 1px solid rgba(217,123,56,.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-weight: 800;
    }
    .timeline-item strong { display: block; margin-bottom: .15rem; }
    .timeline-item p { margin: 0; color: var(--muted); font-size: .95rem; }
    .demo-form {
      display: grid;
      gap: .75rem;
      margin-top: 1rem;
    }
    .demo-form .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem;
    }
    .demo-form select,
    .demo-form textarea {
      width: 100%;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.92);
      margin: 0;
      box-shadow: none;
      min-height: 52px;
    }
    .demo-form textarea {
      min-height: 116px;
      resize: vertical;
      padding: 1rem;
    }
    .demo-hint {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-top: .8rem;
    }

    .mock-box {
      padding: 1rem;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,248,239,.95));
    }
    .mock-search {
      display: flex;
      gap: .65rem;
      align-items: center;
      padding: .8rem .9rem;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      margin-bottom: .9rem;
    }
    .mock-search input {
      border: 0;
      margin: 0;
      padding: 0;
      box-shadow: none;
      background: transparent;
    }
    .result-list {
      display: grid;
      gap: .8rem;
    }
    .result-item {
      padding: .95rem;
      border-radius: 18px;
      background: rgba(255,255,255,.92);
      border: 1px solid var(--line);
    }
    .result-item .row-top {
      display: flex;
      justify-content: space-between;
      gap: .75rem;
      align-items: center;
      margin-bottom: .45rem;
    }
    .result-item h4 {
      margin: 0;
      font-size: 1rem;
    }
    .result-item p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }
    .inline-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .65rem; }
    .inline-tags span {
      padding: .28rem .56rem;
      border-radius: 999px;
      background: rgba(217,123,56,.08);
      color: var(--primary-dark);
      font-size: .8rem;
      font-weight: 700;
      border: 1px solid rgba(217,123,56,.12);
    }

    .update-layout {
      display: grid;
      grid-template-columns: 1.35fr .95fr;
      gap: 1rem;
      align-items: start;
    }
    .update-list {
      padding: 1rem;
    }
    .update-list ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: .7rem;
    }
    .update-list li {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: .85rem;
      align-items: center;
      padding: .85rem .9rem;
      border-radius: 18px;
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
    }
    .update-date {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      border-radius: 12px;
      background: rgba(247, 197, 141, .22);
      color: #7a4c22;
      font-weight: 800;
      font-size: .9rem;
    }
    .update-list a {
      font-weight: 700;
      display: inline-block;
      margin-bottom: .18rem;
    }
    .update-list p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .side-stack {
      display: grid;
      gap: 1rem;
      position: sticky;
      top: 98px;
    }
    .side-card {
      padding: 1rem;
    }
    .mini-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
    }
    .mini-tags .tag-chip { background: rgba(255,255,255,.86); }
    .notice-box {
      padding: .9rem 1rem;
      border-radius: 18px;
      background: rgba(217,123,56,.10);
      border: 1px solid rgba(217,123,56,.16);
      color: #644d3f;
    }

    .proof-layout {
      display: grid;
      grid-template-columns: .98fr 1.02fr;
      gap: 1rem;
      align-items: stretch;
    }
    .avatar-wall {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: .6rem;
      margin-top: .9rem;
    }
    .avatar {
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
      font-size: .9rem;
      background: linear-gradient(135deg, #f0a15b 0%, #d96f30 100%);
      box-shadow: 0 10px 18px rgba(82,56,35,.08);
    }
    .avatar.alt { background: linear-gradient(135deg, #f7c58d 0%, #e07f3d 100%); color: #5b371b; }
    .avatar.dim { background: linear-gradient(135deg, #e9d7c3 0%, #cda889 100%); color: #5a4639; }
    .bubble-stack {
      display: grid;
      gap: .8rem;
    }
    .bubble {
      padding: .95rem 1rem;
      border-radius: 22px;
      background: rgba(255,255,255,.9);
      border: 1px solid var(--line);
      box-shadow: 0 10px 18px rgba(82,56,35,.06);
    }
    .bubble strong { display: block; margin-bottom: .12rem; }
    .bubble p { margin: 0; color: var(--muted); font-size: .93rem; }
    .bubble small { color: var(--primary-dark); font-weight: 700; }
    .proof-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: .75rem;
      margin-top: 1rem;
    }
    .stat-card {
      padding: .95rem;
      border-radius: 18px;
      background: rgba(255,255,255,.84);
      border: 1px solid var(--line);
    }
    .stat-card strong {
      display: block;
      font-size: 1.25rem;
      margin-bottom: .18rem;
      color: var(--primary-dark);
    }
    .stat-card span { color: var(--muted); font-size: .9rem; }

    .faq-wrap { display: grid; gap: 1rem; }
    .accordion {
      background: transparent;
      border: 0;
    }
    .accordion-item {
      background: rgba(255,255,255,.84);
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      margin-bottom: .85rem;
      box-shadow: 0 10px 18px rgba(82,56,35,.05);
    }
    .accordion-title {
      color: var(--text);
      font-weight: 700;
      font-size: 1rem;
      padding: 1rem 1.1rem;
      border: 0;
      background: transparent;
    }
    .accordion-title:hover,
    .accordion-title:focus {
      background: rgba(247, 197, 141, .12);
      color: var(--primary-dark);
    }
    .accordion-content {
      border: 0;
      background: rgba(255,250,242,.95);
      color: #594b40;
      padding: .2rem 1.1rem 1rem;
    }

    .final-cta {
      padding-bottom: 106px;
    }
    .cta-card {
      padding: 1.35rem;
      background: linear-gradient(135deg, rgba(255,250,242,.98), rgba(255,239,224,.98));
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 1rem;
      align-items: center;
    }
    .cta-card h2 { margin: 0 0 .45rem; line-height: 1.18; }
    .cta-card p { margin: 0; color: #655448; }
    .cta-actions {
      display: flex;
      justify-content: flex-end;
      gap: .75rem;
      flex-wrap: wrap;
    }

    .site-footer {
      padding: 44px 0 36px;
      background: rgba(245, 236, 224, 0.75);
      border-top: 1px solid rgba(234, 216, 198, 0.92);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .9fr .9fr;
      gap: 1rem;
      align-items: start;
    }
    .footer-copy {
      color: var(--muted);
      max-width: 58ch;
      margin-top: .85rem;
    }
    .footer-links {
      display: grid;
      gap: .7rem;
    }
    .footer-links a {
      color: #5e4f44;
      font-weight: 600;
    }
    .footer-links a:hover { color: var(--primary-dark); }
    .footer-note {
      margin-top: 1rem;
      color: #89776a;
      font-size: .92rem;
    }

    .bottom-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 70;
      padding: .7rem 0;
      background: linear-gradient(180deg, rgba(247,239,228,0.28), rgba(247,239,228,0.94));
      backdrop-filter: blur(16px);
      border-top: 1px solid rgba(234, 216, 198, 0.88);
    }
    .bottom-bar {
      max-width: 1180px;
      margin: 0 auto;
      padding: .8rem 1rem;
      border-radius: 22px;
      background: rgba(255,255,255,.9);
      border: 1px solid rgba(234, 216, 198, 0.92);
      box-shadow: 0 14px 34px rgba(82,56,35,.10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .bottom-copy {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      align-items: center;
      color: #5f4f43;
      font-weight: 600;
    }
    .bottom-copy strong { color: var(--text); }
    .bottom-tags { display: flex; flex-wrap: wrap; gap: .5rem; }

    .off-canvas,
    .off-canvas-content { background: transparent; }
    .mobile-panel {
      padding: 1rem;
      height: 100%;
      background: linear-gradient(180deg, #fffaf2, #f7efe4);
    }
    .mobile-panel .brand { margin-bottom: 1rem; }
    .mobile-nav {
      display: grid;
      gap: .45rem;
      margin-top: 1rem;
    }
    .mobile-nav a {
      padding: .85rem 1rem;
      border-radius: 16px;
      background: rgba(255,255,255,.85);
      border: 1px solid var(--line);
      font-weight: 700;
      color: #5c4e44;
    }
    .mobile-nav a.active { color: var(--primary-dark); background: rgba(247, 197, 141, .18); }
    .mobile-search { margin-top: 1rem; }

    .title-bar {
      background: transparent;
      padding: 0;
      display: none;
    }
    .menu-icon::after {
      background: var(--text);
      box-shadow: 0 7px 0 var(--text), 0 14px 0 var(--text);
    }

    .align-center { align-items: center; }
    .text-muted { color: var(--muted); }
    .spacer { height: 8px; }

    @media screen and (max-width: 1024px) {
      .nav-links { justify-content: flex-start; }
      .search-mini { min-width: 200px; }
      .hero-metrics,
      .feature-grid,
      .update-layout,
      .proof-layout,
      .footer-grid,
      .cta-card,
      .demo-flow { grid-template-columns: 1fr; }
      .side-stack { position: static; }
      .cta-actions { justify-content: flex-start; }
    }

    @media screen and (max-width: 768px) {
      .title-bar { display: block; }
      .topbar-desktop { display: none; }
      .section { padding: 62px 0; }
      .hero { padding-top: 24px; }
      .hero-card,
      .feature-card,
      .demo-timeline,
      .demo-preview,
      .update-list,
      .side-card,
      .proof-card,
      .cta-card { border-radius: 24px; }
      .hero h1 { max-width: 100%; font-size: clamp(2rem, 8vw, 2.65rem); }
      .hero-lead { font-size: 1rem; }
      .hero-metrics,
      .trust-row,
      .proof-stats,
      .visual-grid,
      .demo-form .row { grid-template-columns: 1fr; }
      .avatar-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .bottom-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
      }
      .bottom-copy { font-size: .95rem; }
      .bottom-cta { padding: .55rem .7rem; }
      body { padding-bottom: 104px; }
      .cta-actions,
      .hero-actions { width: 100%; }
      .hero-actions .button,
      .cta-actions .button { width: 100%; }
      .update-list li { grid-template-columns: 1fr; }
    }

    @media screen and (max-width: 520px) {
      .hero-card,
      .panel,
      .feature-card,
      .demo-wrap,
      .mock-box,
      .site-footer .grid-x > .cell { padding-left: .95rem; padding-right: .95rem; }
      .brand-text strong { font-size: .95rem; }
      .brand-text span { display: none; }
      .accordion-title { font-size: .96rem; }
      .avatar-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

/* roulang page: category1 */
:root{
      --bg:#f8f1e6;
      --bg-soft:#fff8ef;
      --panel:#fffdf8;
      --panel-2:#fff4e5;
      --line:#ead8c4;
      --line-strong:#d8bfa0;
      --text:#2d221a;
      --muted:#6f5d4f;
      --muted-2:#8a7767;
      --brand:#d97d35;
      --brand-deep:#bf6220;
      --brand-soft:#fde0c2;
      --accent:#f0b36c;
      --ok:#7f8d5e;
      --shadow:0 16px 38px rgba(82,56,35,.10);
      --shadow-soft:0 10px 24px rgba(82,56,35,.08);
      --shadow-hover:0 18px 42px rgba(82,56,35,.14);
      --radius:24px;
      --radius-sm:16px;
      --radius-xs:12px;
      --space-1:8px;
      --space-2:12px;
      --space-3:16px;
      --space-4:20px;
      --space-5:28px;
      --space-6:36px;
      --space-7:48px;
      --space-8:72px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      background:
        linear-gradient(180deg, #faf4ea 0%, #f8f1e6 48%, #f7efe2 100%);
      color:var(--text);
      line-height:1.75;
      letter-spacing:0;
      padding-bottom:108px;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(217,125,53,.18)}
    .grid-container{max-width:1240px}
    .page-shell{position:relative}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,243,.78);
      backdrop-filter:saturate(130%) blur(16px);
      border-bottom:1px solid rgba(234,216,196,.72);
      transition:box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }
    .site-header.is-scrolled{
      background:rgba(255,252,246,.96);
      box-shadow:0 8px 24px rgba(82,56,35,.08);
      border-bottom-color:rgba(224,202,177,.9);
    }
    .title-bar{
      padding:14px 0 10px;
      display:none;
      justify-content:space-between;
      align-items:center;
    }
    .menu-icon{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:var(--panel);
      position:relative;
      box-shadow:var(--shadow-soft);
      cursor:pointer;
    }
    .menu-icon::before,
    .menu-icon::after{
      content:"";
      position:absolute;
      left:11px;
      right:11px;
      height:2px;
      background:var(--text);
      border-radius:999px;
    }
    .menu-icon::before{top:15px;box-shadow:0 8px 0 var(--text)}
    .menu-icon::after{bottom:15px;opacity:0}
    .top-bar{
      background:transparent;
      padding:16px 0;
      align-items:center;
    }
    .top-bar,
    .top-bar ul{
      display:flex;
      align-items:center;
    }
    .top-bar-left,.top-bar-right,.top-bar-center{display:flex;align-items:center}
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, #f6dcc0, #ffd9ae);
      border:1px solid rgba(217,125,53,.18);
      box-shadow:0 10px 22px rgba(217,125,53,.14);
      flex:0 0 auto;
    }
    .brand-mark svg{
      width:26px;height:26px;
      fill:none;
      stroke:var(--brand-deep);
      stroke-width:2;
      stroke-linecap:round;
      stroke-linejoin:round;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
      line-height:1.2;
    }
    .brand-text strong{
      font-size:17px;
      letter-spacing:0;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-text span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      height:42px;
      padding:0 16px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
      font-size:15px;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible{
      color:var(--brand-deep);
      background:#fff2df;
      border-color:#f0d1b1;
      transform:translateY(-1px);
      box-shadow:0 8px 18px rgba(217,125,53,.10);
    }
    .nav-links a.active{
      color:var(--brand-deep);
      background:#fde4c7;
      border-color:#f0c596;
      box-shadow:0 8px 18px rgba(217,125,53,.10);
    }
    .search-mini{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:280px;
      height:44px;
      padding:0 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 18px rgba(82,56,35,.05);
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .search-mini svg{
      width:18px;height:18px;
      flex:0 0 auto;
      stroke:var(--muted-2);
    }
    .search-mini input{
      width:100%;
      border:none;
      outline:none;
      background:transparent;
      color:var(--text);
    }
    .search-mini input::placeholder{color:#9a8776}
    .button{
      margin:0;
      border-radius:999px;
      border:1px solid transparent;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      line-height:1;
    }
    .button.small{padding:.82rem 1.05rem;font-size:14px}
    .button.primary{
      background:var(--brand);
      color:#fff;
      box-shadow:0 14px 24px rgba(217,125,53,.22);
    }
    .button.primary:hover,
    .button.primary:focus-visible{
      background:var(--brand-deep);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 28px rgba(191,98,32,.25);
    }
    .button.ghost{
      background:#fff;
      color:var(--text);
      border-color:var(--line);
      box-shadow:0 8px 18px rgba(82,56,35,.05);
    }
    .button.ghost:hover,
    .button.ghost:focus-visible{
      background:#fff3e4;
      border-color:#f0cca7;
      color:var(--brand-deep);
      transform:translateY(-1px);
    }
    .button.secondary{
      background:var(--panel);
      color:var(--text);
      border-color:var(--line);
    }
    .button.secondary:hover,
    .button.secondary:focus-visible{
      background:#fff1de;
      border-color:#ebc7a3;
      color:var(--brand-deep);
      transform:translateY(-1px);
    }
    .button:focus-visible,
    .nav-links a:focus-visible,
    .chip:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    .pagination a:focus-visible{
      outline:2px solid rgba(217,125,53,.28);
      outline-offset:2px;
    }
    .mobile-menu{
      display:none;
      padding:0 0 16px;
    }
    .mobile-menu.is-open{display:block}
    .mobile-menu .mobile-stack{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow-soft);
      padding:14px;
    }
    .mobile-menu .nav-links{
      flex-direction:column;
      align-items:stretch;
      gap:8px;
    }
    .display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobile-menu .button{width:100%;justify-content:center}
    .hero-wrap{
      position:relative;
      padding:38px 0 14px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      background:
        radial-gradient(circle at 20% 10%, rgba(255,220,187,.95) 0, rgba(255,220,187,.45) 24%, rgba(255,220,187,0) 40%),
        radial-gradient(circle at 80% 20%, rgba(247,190,126,.58) 0, rgba(247,190,126,.14) 28%, rgba(247,190,126,0) 46%),
        linear-gradient(135deg, #fffaf2 0%, #fff4e6 44%, #fff0da 100%);
      border:1px solid rgba(234,216,196,.92);
      box-shadow:var(--shadow);
      padding:34px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:28px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(234,216,196,.95);
      color:var(--brand-deep);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
      box-shadow:0 8px 16px rgba(82,56,35,.06);
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 4px rgba(217,125,53,.12);
    }
    h1,h2,h3,h4{margin:0;color:var(--text)}
    .hero-title{
      margin-top:18px;
      font-size:clamp(32px,4.2vw,56px);
      line-height:1.15;
      font-weight:800;
      letter-spacing:-.02em;
      max-width:11ch;
    }
    .hero-desc{
      margin-top:18px;
      font-size:17px;
      color:var(--muted);
      max-width:36rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
      align-items:center;
    }
    .hero-trust{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .mini-chip,.chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:14px;
      box-shadow:0 8px 16px rgba(82,56,35,.05);
    }
    .mini-chip strong,.chip strong{color:var(--text)}
    .chip.is-active{
      background:#fde5c9;
      color:var(--brand-deep);
      border-color:#f1c99e;
    }
    .hero-visual{
      position:relative;
      min-height:420px;
      display:flex;
      align-items:stretch;
      justify-content:center;
    }
    .visual-stack{
      position:relative;
      width:100%;
      min-height:100%;
    }
    .visual-card{
      position:absolute;
      border-radius:26px;
      background:#fffefb;
      border:1px solid rgba(234,216,196,.9);
      box-shadow:var(--shadow-soft);
    }
    .visual-main{
      inset:40px 26px 18px 44px;
      padding:22px;
      background:linear-gradient(180deg, #fffaf4 0%, #fff3e5 100%);
    }
    .visual-side{
      width:170px;
      right:0;
      top:20px;
      bottom:72px;
      padding:18px;
      background:linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%);
    }
    .visual-top{
      left:0;
      bottom:18px;
      width:190px;
      padding:16px;
      background:#fff;
    }
    .visual-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff7ec;
      color:var(--brand-deep);
      border:1px solid #efcfaa;
      font-size:12px;
      font-weight:700;
      margin-bottom:12px;
    }
    .slot-list{display:grid;gap:10px;margin-top:10px}
    .slot-item{
      border-radius:18px;
      padding:12px;
      background:#fff;
      border:1px solid #ead9c5;
    }
    .slot-item strong{
      display:block;
      font-size:14px;
      margin-bottom:4px;
    }
    .slot-item span{
      display:block;
      font-size:12px;
      color:var(--muted);
    }
    .step-rail{
      display:grid;
      gap:12px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      background:rgba(255,255,255,.82);
      border:1px solid var(--line);
      border-radius:22px;
      padding:14px 16px;
      box-shadow:0 10px 20px rgba(82,56,35,.06);
    }
    .step-num{
      width:34px;
      height:34px;
      flex:0 0 auto;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:#fde3c5;
      color:var(--brand-deep);
      font-weight:800;
    }
    .step strong{display:block;font-size:15px;margin-bottom:2px}
    .step p{margin:0;color:var(--muted);font-size:13px;line-height:1.6}
    .section{
      padding:70px 0;
      position:relative;
    }
    .section.tight{padding:52px 0}
    .section-header{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:24px;
    }
    .section-title{
      font-size:clamp(24px,3vw,36px);
      font-weight:800;
      line-height:1.2;
      letter-spacing:-.01em;
    }
    .section-subtitle{
      color:var(--muted);
      max-width:56rem;
      margin-top:10px;
      font-size:16px;
    }
    .section-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      align-items:center;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:1.2fr .9fr .9fr;
      gap:18px;
    }
    .feature-card,
    .content-card,
    .aside-card,
    .talk-card,
    .faq-card,
    .page-card,
    .filter-card,
    .stat-card{
      background:var(--panel);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    }
    .feature-card:hover,
    .content-card:hover,
    .aside-card:hover,
    .talk-card:hover,
    .faq-card:hover,
    .page-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:#e6c9aa;
    }
    .feature-card{
      padding:24px;
      min-height:240px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .feature-card.is-highlight{
      background:linear-gradient(180deg, #fff7ec 0%, #fffdf8 100%);
      border-color:#ebd1b3;
    }
    .feature-card h3{
      font-size:22px;
      line-height:1.25;
      margin-bottom:10px;
    }
    .feature-card p,
    .content-card p,
    .aside-card p,
    .talk-card p,
    .faq-card p,
    .page-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .feature-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-size:12px;
    }
    .tag.primary{
      background:#fde4c9;
      color:var(--brand-deep);
      border-color:## Continuing the PHP page source
        border-color:#f0c89d;
    }
    .tag.primary .dot{background:var(--brand)}
    .tag.ok{
      background:#eef4e6;
      color:#5e6a43;
      border-color:#d7e1c7;
    }
    .card-grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .card-grid-3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:18px;
    }
    .content-card{
      padding:22px;
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .content-card::before{
      content:"";
      position:absolute;
      inset:auto -18px -26px auto;
      width:120px;
      height:120px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(240,179,108,.24), rgba(240,179,108,0) 68%);
      pointer-events:none;
    }
    .content-card .card-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom:16px;
    }
    .content-card .icon-box{
      width:48px;
      height:48px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:#fff4e4;
      border:1px solid #efd1ad;
      color:var(--brand-deep);
      flex:0 0 auto;
    }
    .content-card .icon-box svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
    .content-card h3{font-size:20px;line-height:1.35;margin:0 0 10px}
    .content-card ul{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }
    .content-card li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .content-card li::before{
      content:"";
      width:7px;
      height:7px;
      margin-top:9px;
      border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 4px rgba(217,125,53,.10);
      flex:0 0 auto;
    }
    .content-card .action-row{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .aside-card{
      padding:20px;
    }
    .aside-card .aside-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .aside-card h3{
      font-size:20px;
      line-height:1.35;
    }
    .notice-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .notice-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 0;
      border-top:1px dashed #eadccd;
      color:var(--muted);
      font-size:14px;
    }
    .notice-list li:first-child{border-top:none;padding-top:0}
    .notice-ico{
      width:26px;
      height:26px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#fff1de;
      color:var(--brand-deep);
      flex:0 0 auto;
      font-size:12px;
      font-weight:800;
    }
    .quote-wall{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:16px;
    }
    .talk-card{
      padding:18px;
      background:linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%);
    }
    .talk-head{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:800;
      background:linear-gradient(135deg, #d97d35, #f0b36c);
      box-shadow:0 10px 18px rgba(217,125,53,.18);
      flex:0 0 auto;
    }
    .talk-meta strong{display:block;font-size:15px;line-height:1.2}
    .talk-meta span{display:block;color:var(--muted-2);font-size:12px;margin-top:3px}
    .talk-card p{font-size:14px}
    .talk-footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:14px;
      padding-top:12px;
      border-top:1px solid rgba(234,216,196,.8);
      color:var(--muted-2);
      font-size:12px;
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .stat-card{
      padding:18px;
      text-align:center;
      background:linear-gradient(180deg, #fffaf4 0%, #fffdf9 100%);
    }
    .stat-card strong{
      display:block;
      font-size:30px;
      line-height:1.1;
      color:var(--brand-deep);
      margin-bottom:6px;
      letter-spacing:-.03em;
    }
    .stat-card span{color:var(--muted);font-size:13px}
    .filter-card{
      padding:18px;
      margin-bottom:18px;
      background:rgba(255,252,247,.92);
    }
    .filter-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
      flex-wrap:wrap;
    }
    .filter-top h3{
      font-size:20px;
      margin-bottom:6px;
    }
    .filter-form{
      display:grid;
      grid-template-columns:1.2fr .9fr .9fr auto;
      gap:12px;
      align-items:center;
    }
    .field{
      position:relative;
    }
    .field input,
    .field select{
      width:100%;
      height:48px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      padding:0 18px;
      color:var(--text);
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .field input:focus,
    .field select:focus{
      border-color:#e6ab6f;
      box-shadow:0 0 0 4px rgba(217,125,53,.12);
    }
    .field.search input{padding-left:46px}
    .field .field-icon{
      position:absolute;
      left:16px;
      top:50%;
      transform:translateY(-50%);
      width:18px;height:18px;
      color:var(--muted-2);
      pointer-events:none;
    }
    .field .field-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
    .tags-wrap{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-chips{margin-top:14px}
    .pagination{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:20px;
    }
    .pagination a,
    .pagination span{
      min-width:42px;
      height:42px;
      padding:0 14px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid var(--line);
      background:#fff;
      color:var(--muted);
      transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
    }
    .pagination a:hover,
    .pagination a:focus-visible{
      background:#fff0df;
      color:var(--brand-deep);
      border-color:#eabf8d;
      transform:translateY(-1px);
    }
    .pagination .current{
      background:var(--brand);
      color:#fff;
      border-color:var(--brand);
    }
    .faq-wrap .accordion{
      border:none;
      background:transparent;
    }
    .accordion-item{
      border:none;
      margin-bottom:14px;
      background:transparent;
    }
    .accordion-title{
      border-radius:20px;
      background:var(--panel);
      border:1px solid var(--line);
      color:var(--text);
      font-size:16px;
      padding:18px 52px 18px 18px;
      position:relative;
      box-shadow:0 8px 18px rgba(82,56,35,.05);
      transition:background .2s ease,border-color .2s ease,transform .2s ease;
    }
    .accordion-title:hover,
    .accordion-title:focus-visible{
      background:#fff4e7;
      border-color:#e6c49d;
      transform:translateY(-1px);
    }
    .accordion-title::before{
      content:"?";
      width:28px;
      height:28px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#fde3c7;
      color:var(--brand-deep);
      position:absolute;
      left:18px;
      top:50%;
      transform:translateY(-50%);
      font-weight:800;
      font-size:14px;
    }
    .accordion-title span{padding-left:18px;display:inline-block}
    .accordion-content{
      border:none;
      background:transparent;
      padding:12px 4px 2px;
      color:var(--muted);
    }
    .accordion-item.is-active .accordion-title{
      background:#fff4e8;
      border-color:#e2bb8f;
    }
    .accordion-item.is-active .accordion-title::before{
      background:var(--brand);
      color:#fff;
    }
    .cta-strip{
      border-radius:28px;
      padding:24px;
      background:linear-gradient(135deg, #fff8ef 0%, #fef2e2 100%);
      border:1px solid #e9cfb1;
      box-shadow:var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .cta-strip strong{
      display:block;
      font-size:24px;
      line-height:1.25;
      margin-bottom:8px;
    }
    .cta-strip p{margin:0;color:var(--muted);max-width:44rem}
    .cta-group{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
    .site-footer{
      background:#f1e5d6;
      border-top:1px solid #dec8ad;
      padding:34px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .7fr .7fr;
      gap:24px;
    }
    .footer-copy{
      margin:16px 0 0;
      color:var(--muted);
      max-width:36rem;
      font-size:14px;
    }
    .footer-note{
      margin-top:16px;
      color:var(--muted-2);
      font-size:13px;
    }
    .footer-links{
      display:grid;
      gap:10px;
      margin-top:6px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
      transition:color .2s ease, transform .2s ease;
    }
    .footer-links a:hover{color:var(--brand-deep);transform:translateX(2px)}
    .spacer{height:10px}
    .sticky-cta{
      position:fixed;
      left:0;right:0;bottom:0;
      z-index:55;
      padding:12px 0;
      background:rgba(255,250,243,.9);
      backdrop-filter:blur(14px);
      border-top:1px solid rgba(234,216,196,.92);
      box-shadow:0 -10px 24px rgba(82,56,35,.08);
    }
    .sticky-cta-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .sticky-cta .hint{
      color:var(--muted);
      font-size:14px;
    }
    .sticky-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .sticky-tags .mini-chip{height:34px;padding:0 12px;font-size:13px}
    .section-divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(217,125,53,.24), transparent);
      margin:18px 0;
    }
    .page-head-card{
      padding:26px;
      border-radius:28px;
      background:linear-gradient(180deg, #fffaf2 0%, #fff6e9 100%);
      border:1px solid #ead8c5;
      box-shadow:var(--shadow-soft);
      margin-bottom:22px;
    }
    .page-head-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      align-items:center;
    }
    .page-head-card h1{
      font-size:clamp(28px,3.6vw,46px);
      line-height:1.15;
      font-weight:800;
      max-width:13ch;
      margin-top:10px;
    }
    .page-head-card .lead{
      margin-top:14px;
      color:var(--muted);
      max-width:44rem;
      font-size:16px;
    }
    .summary-belt{
      display:grid;
      gap:12px;
    }
    .summary-card{
      padding:16px;
      border-radius:22px;
      border:1px solid #ead8c5;
      background:#fff;
      box-shadow:0 8px 16px rgba(82,56,35,.05);
    }
    .summary-card strong{
      display:block;
      font-size:15px;
      margin-bottom:6px;
    }
    .summary-card span{color:var(--muted);font-size:13px;line-height:1.65}
    .list-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0, 1fr));
      gap:18px;
      align-items:start;
    }
    .list-main{grid-column:span 8}
    .list-side{grid-column:span 4; position:sticky; top:106px}
    .entry-list{
      display:grid;
      gap:16px;
    }
    .entry-item{
      padding:20px;
      border-radius:24px;
      border:1px solid var(--line);
      background:var(--panel);
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }
    .entry-item:hover{
      transform:translateY(-3px);
      border-color:#e3bf97;
      box-shadow:var(--shadow-hover);
    }
    .entry-top{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:12px}
    .entry-top h3{font-size:20px;line-height:1.35}
    .entry-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
    .entry-cta{margin-top:16px;display:flex;flex-wrap:wrap;gap:10px}
    .entry-badge{display:inline-flex;align-items:center;gap:6px;padding:5px 10px;border-radius:999px;background:#fff1df;color:var(--brand-deep);font-size:12px;font-weight:700;border:1px solid #efc99c}
    .micro-note{font-size:12px;color:var(--muted-2)}
    .timeline{
      display:grid;
      gap:12px;
      margin-top:10px;
    }
    .timeline-step{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .timeline-mark{
      width:26px;height:26px;border-radius:50%;display:grid;place-items:center;background:#fde3c7;color:var(--brand-deep);font-weight:800;flex:0 0 auto;font-size:12px;
    }
    .timeline-step strong{display:block;font-size:14px;margin-bottom:3px}
    .timeline-step p{margin:0;font-size:13px;color:var(--muted);line-height:1.7}
    .avatar-wall{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .avatar.wall-item{
      width:38px;height:38px;font-size:12px
    }
    .pulse{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:13px;
    }
    .pulse i{
      width:8px;height:8px;border-radius:50%;background:var(--ok);display:inline-block;box-shadow:0 0 0 4px rgba(127,141,94,.12)
    }
    @media (max-width: 1219px){
      .feature-grid,.card-grid-3,.metric-row,.quote-wall,.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .hero-grid,.page-head-grid,.list-grid{grid-template-columns:1fr}
      .list-main,.list-side{grid-column:auto}
      .list-side{position:static}
      .hero-visual{min-height:360px}
    }
    @media (max-width: 1023px){
      .topbar-desktop .top-bar-center,
      .topbar-desktop .top-bar-right{display:none !important}
      .title-bar{display:flex}
      .mobile-menu{display:block}
      .hero-card,.page-head-card{padding:24px}
      .hero-grid{gap:22px}
      .section{padding:54px 0}
      .section-header{flex-direction:column;align-items:flex-start}
      .section-actions{justify-content:flex-start}
      .card-grid-2,.feature-grid,.card-grid-3,.quote-wall,.metric-row,.footer-grid{grid-template-columns:1fr}
      .filter-form{grid-template-columns:1fr 1fr}
      .filter-form .button{grid-column:1 / -1}
      .sticky-cta-inner{justify-content:center}
      .sticky-cta .hint{text-align:center}
      .hero-title{max-width:none}
      .hero-visual{min-height:300px}
      .visual-main{inset:28px 20px 16px 34px}
      .visual-side{width:145px;bottom:60px}
      .visual-top{width:170px}
    }
    @media (max-width: 639px){
      body{padding-bottom:132px}
      .grid-container{padding-left:16px;padding-right:16px}
      .hero-wrap{padding-top:24px}
      .hero-card,.page-head-card{padding:18px;border-radius:24px}
      .hero-title,.page-head-card h1{font-size:clamp(30px,8vw,36px);max-width:none}
      .hero-desc,.section-subtitle,.page-head-card .lead{font-size:15px}
      .hero-actions,.cta-group,.section-actions{flex-direction:column;align-items:stretch}
      .hero-actions .button,.cta-group .button,.section-actions .button{width:100%;justify-content:center}
      .hero-trust,.tags-wrap,.sticky-tags{gap:8px}
      .search-mini{min-width:unset;width:100%}
      .filter-form{grid-template-columns:1fr}
      .accordion-title{font-size:15px;padding:16px 46px 16px 16px}
      .accordion-title::before{left:14px}
      .accordion-title span{padding-left:14px}
      .visual-main{inset:20px 14px 12px 22px}
      .visual-side{width:126px;right:-6px;top:14px;bottom:58px;padding:12px}
      .visual-top{width:150px;left:-2px;bottom:12px;padding:12px}
      .slot-item{padding:10px}
      .content-card,.feature-card,.aside-card,.talk-card,.entry-item,.summary-card{border-radius:20px}
      .sticky-cta{padding:10px 0}
      .sticky-cta .hint{font-size:13px}
      .sticky-cta .button{width:100%}
      .footer-grid{gap:18px}
      .page-head-card h1{max-width:none}
    }
