/* roulang page: index */
:root {
      --bg: #11100f;
      --bg-soft: #191715;
      --panel: #211d19;
      --panel-2: #29231d;
      --text: #f7efe6;
      --muted: #b9aaa0;
      --weak: #887c73;
      --line: rgba(255, 232, 204, .14);
      --line-strong: rgba(255, 199, 125, .34);
      --brand: #d85b3f;
      --brand-dark: #a83d2b;
      --gold: #f5b866;
      --copper: #b97647;
      --green: #8dbb9a;
      --cream: #fff4e6;
      --shadow: 0 18px 50px rgba(0, 0, 0, .34);
      --radius: 8px;
      --radius-sm: 6px;
      --sidebar: 248px;
      --container: 1180px;
      --ease: .22s ease;
    }

    * {
      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(--text);
      background:
        radial-gradient(circle at 78% 8%, rgba(216, 91, 63, .2), transparent 32%),
        linear-gradient(135deg, #0f0e0d 0%, #191613 42%, #120f0e 100%);
      line-height: 1.72;
      letter-spacing: 0;
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .34;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, #000, transparent 82%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .site-shell {
      display: grid;
      grid-template-columns: var(--sidebar) 1fr;
      min-height: 100vh;
    }

    .side-nav {
      position: sticky;
      top: 0;
      height: 100vh;
      padding: 24px 18px;
      border-right: 1px solid var(--line);
      background: rgba(17, 16, 15, .88);
      backdrop-filter: blur(18px);
      display: flex;
      flex-direction: column;
      gap: 24px;
      z-index: 20;
    }

    .mobile-header {
      display: none;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      color: #1a100b;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold), var(--brand));
      box-shadow: 0 10px 26px rgba(216, 91, 63, .24);
      flex: 0 0 auto;
    }

    .brand-name {
      font-size: 16px;
      font-weight: 850;
      line-height: 1.25;
      word-break: break-word;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .nav-group {
      display: grid;
      gap: 8px;
    }

    .nav-label {
      color: var(--weak);
      font-size: 12px;
      padding: 0 10px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      color: var(--muted);
      transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--text);
      background: rgba(255, 244, 230, .055);
      border-color: var(--line);
      outline: none;
      transform: translateX(2px);
    }

    .nav-link.active {
      color: var(--cream);
      background: linear-gradient(135deg, rgba(216, 91, 63, .24), rgba(245, 184, 102, .08));
      border-color: var(--line-strong);
    }

    .nav-icon {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 6px;
      background: rgba(255,255,255,.06);
      color: var(--gold);
      flex: 0 0 auto;
      font-size: 13px;
    }

    .side-note {
      margin-top: auto;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 244, 230, .045);
    }

    .side-note strong {
      display: block;
      color: var(--gold);
      font-size: 14px;
      margin-bottom: 6px;
    }

    .side-note span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    .page {
      min-width: 0;
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin-inline: auto;
    }

    .top-strip {
      background: linear-gradient(90deg, rgba(216, 91, 63, .92), rgba(245, 184, 102, .9));
      color: #21130e;
      font-weight: 800;
      font-size: 14px;
      text-align: center;
      padding: 8px 18px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 38px);
      display: flex;
      align-items: center;
      padding: 76px 0 58px;
      border-bottom: 1px solid var(--line);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 7%;
      right: 7%;
      bottom: -1px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,184,102,.7), transparent);
    }

    .hero-stage {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      position: relative;
      padding: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(41, 35, 29, .92), rgba(23, 21, 19, .86)),
        url("data:image/svg+xml,%3Csvg width='520' height='360' viewBox='0 0 520 360' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='520' height='360' fill='%23171513'/%3E%3Cpath d='M0 260 C120 160 210 330 330 210 S440 90 520 140 L520 360 L0 360Z' fill='%2328201b'/%3E%3Ccircle cx='410' cy='74' r='46' fill='%23d85b3f' opacity='.36'/%3E%3Ccircle cx='82' cy='92' r='28' fill='%23f5b866' opacity='.24'/%3E%3C/svg%3E");
      background-size: cover;
      box-shadow: var(--shadow);
    }

    .burst {
      position: absolute;
      right: 24px;
      top: 22px;
      width: 92px;
      height: 92px;
      display: grid;
      place-items: center;
      text-align: center;
      color: #1f120c;
      font-weight: 900;
      line-height: 1.1;
      font-size: 14px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 61% 24%, 87% 13%, 76% 39%, 100% 50%, 76% 61%, 87% 87%, 61% 76%, 50% 100%, 39% 76%, 13% 87%, 24% 61%, 0% 50%, 24% 39%, 13% 13%, 39% 24%);
      transform: rotate(8deg);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border: 1px solid rgba(245, 184, 102, .32);
      border-radius: 999px;
      color: var(--gold);
      background: rgba(0,0,0,.22);
      font-size: 13px;
      font-weight: 800;
    }

    h1 {
      margin: 22px 0 16px;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.06;
      letter-spacing: 0;
      max-width: 820px;
    }

    .hero-desc {
      width: min(100%, 680px);
      color: var(--muted);
      font-size: 17px;
      margin: 0 0 24px;
    }

    .hero-actions,
    .section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 11px 17px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 850;
      transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--brand));
      color: #21130e;
      box-shadow: 0 14px 34px rgba(216, 91, 63, .24);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(216, 91, 63, .32);
      outline: none;
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255, 244, 230, .06);
      border-color: var(--line-strong);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(255, 244, 230, .1);
      border-color: rgba(245, 184, 102, .55);
      transform: translateY(-2px);
      outline: none;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .metric {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(0,0,0,.22);
    }

    .metric b {
      display: block;
      color: var(--gold);
      font-size: 24px;
      line-height: 1.1;
    }

    .metric span {
      color: var(--muted);
      font-size: 12px;
    }

    .hero-board {
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 14px;
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .entry-card,
    .content-card,
    .quote,
    .news-panel,
    .guide-card,
    .faq-item,
    .subscribe-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(41, 35, 29, .86), rgba(25, 23, 21, .92));
      box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    }

    .entry-card {
      min-height: 158px;
      padding: 18px;
      position: relative;
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: var(--line-strong);
      background: linear-gradient(180deg, rgba(54, 42, 32, .92), rgba(25, 23, 21, .96));
    }

    .entry-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(245,184,102,.16), transparent 42%);
      opacity: .8;
    }

    .entry-card > * {
      position: relative;
    }

    .entry-card .icon {
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: #21130e;
      background: var(--gold);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .entry-card h3,
    .content-card h3,
    .guide-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.35;
    }

    .entry-card p,
    .content-card p,
    .guide-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: rgba(255, 244, 230, .045);
      font-size: 12px;
      line-height: 1.2;
    }

    .badge {
      color: #25160d;
      background: var(--gold);
      border-color: transparent;
      font-weight: 900;
    }

    main section {
      padding: 78px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(260px, .45fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-kicker {
      color: var(--gold);
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 8px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(26px, 3vw, 42px);
      line-height: 1.18;
      letter-spacing: 0;
    }

    .section-desc {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .story-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 18px;
      align-items: stretch;
    }

    .story-visual {
      min-height: 360px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.6)),
        url("data:image/svg+xml,%3Csvg width='640' height='460' viewBox='0 0 640 460' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='640' height='460' fill='%23211d19'/%3E%3Crect x='42' y='58' width='250' height='120' rx='8' fill='%23332820'/%3E%3Crect x='326' y='78' width='260' height='80' rx='8' fill='%23412e25'/%3E%3Crect x='76' y='224' width='188' height='142' rx='8' fill='%23d85b3f' opacity='.62'/%3E%3Crect x='300' y='212' width='252' height='154' rx='8' fill='%23f5b866' opacity='.48'/%3E%3Ccircle cx='508' cy='94' r='68' fill='%238dbb9a' opacity='.28'/%3E%3C/svg%3E");
      background-size: cover;
      display: flex;
      align-items: flex-end;
      padding: 22px;
    }

    .story-visual .caption {
      width: 100%;
      padding: 16px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(17, 16, 15, .72);
      color: var(--cream);
    }

    .story-list {
      display: grid;
      gap: 14px;
    }

    .story-item {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 16px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 244, 230, .045);
      transition: border-color var(--ease), transform var(--ease), background var(--ease);
    }

    .story-item:hover {
      transform: translateY(-2px);
      border-color: var(--line-strong);
      background: rgba(255, 244, 230, .07);
    }

    .story-num {
      color: var(--gold);
      font-size: 30px;
      font-weight: 900;
      line-height: 1;
    }

    .story-item h3 {
      margin: 0 0 5px;
      font-size: 18px;
    }

    .story-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .content-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
    }

    .featured-card {
      min-height: 430px;
      padding: 24px;
      border: 1px solid var(--line-strong);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72)),
        url("data:image/svg+xml,%3Csvg width='760' height='520' viewBox='0 0 760 520' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='760' height='520' fill='%23110f0e'/%3E%3Cpath d='M0 338 C130 198 210 420 350 260 C485 105 572 205 760 96 L760 520 L0 520Z' fill='%2329231d'/%3E%3Crect x='54' y='62' width='300' height='86' rx='8' fill='%23f5b866' opacity='.34'/%3E%3Crect x='420' y='96' width='226' height='226' rx='8' fill='%23d85b3f' opacity='.44'/%3E%3C/svg%3E");
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: var(--shadow);
    }

    .featured-card h3 {
      margin: 12px 0 10px;
      font-size: clamp(24px, 3vw, 38px);
      line-height: 1.16;
    }

    .featured-card p {
      color: var(--muted);
      margin: 0 0 18px;
      max-width: 620px;
    }

    .content-stack {
      display: grid;
      gap: 14px;
    }

    .content-card {
      padding: 18px;
      transition: transform var(--ease), border-color var(--ease);
    }

    .content-card:hover {
      transform: translateY(-3px);
      border-color: var(--line-strong);
    }

    .score {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }

    .score strong {
      color: var(--gold);
      font-size: 22px;
    }

    .quote-wall {
      display: grid;
      grid-template-columns: 1fr .82fr 1fr;
      gap: 16px;
      align-items: start;
    }

    .quote {
      padding: 18px;
      position: relative;
      transition: transform var(--ease), border-color var(--ease);
    }

    .quote:hover {
      transform: translateY(-3px);
      border-color: var(--line-strong);
    }

    .quote.large {
      margin-top: 28px;
      background: linear-gradient(180deg, rgba(216, 91, 63, .18), rgba(33, 29, 25, .94));
    }

    .quote p {
      margin: 0;
      color: var(--cream);
      font-size: 15px;
    }

    .quote-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .avatars {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid var(--bg);
      margin-left: -8px;
      background: linear-gradient(135deg, var(--gold), var(--brand));
      display: grid;
      place-items: center;
      color: #23140d;
      font-weight: 900;
      font-size: 13px;
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .guide-card {
      padding: 18px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .guide-card .step {
      color: var(--gold);
      font-weight: 900;
      font-size: 13px;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 14px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 25px;
      top: 10px;
      bottom: 10px;
      width: 1px;
      background: var(--line-strong);
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      align-items: start;
    }

    .timeline-dot {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-sm);
      background: var(--panel-2);
      border: 1px solid var(--line-strong);
      display: grid;
      place-items: center;
      color: var(--gold);
      font-weight: 900;
      z-index: 1;
    }

    .timeline-card {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 244, 230, .045);
    }

    .timeline-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
    }

    .timeline-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 18px;
      align-items: start;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(255, 244, 230, .035);
    }

    .news-item {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px 18px;
      border-bottom: 1px solid var(--line);
      transition: background var(--ease);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(245, 184, 102, .07);
    }

    .news-date {
      color: var(--gold);
      font-weight: 850;
      font-size: 13px;
    }

    .news-item a {
      font-weight: 850;
      color: var(--text);
    }

    .news-item p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    .news-arrow {
      color: var(--gold);
      font-weight: 900;
    }

    .news-panel {
      padding: 18px;
      position: sticky;
      top: 24px;
    }

    .news-panel h3 {
      margin: 0 0 12px;
      font-size: 20px;
    }

    .hot-links {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .hot-links a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--muted);
      transition: color var(--ease), border-color var(--ease), background var(--ease);
    }

    .hot-links a:hover,
    .hot-links a:focus-visible {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(255, 244, 230, .06);
      outline: none;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 18px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      border: 0;
      color: var(--text);
      background: transparent;
      padding: 16px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      text-align: left;
      font-weight: 850;
    }

    .faq-question:focus-visible {
      outline: 2px solid rgba(245, 184, 102, .72);
      outline-offset: -2px;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .faq-question span:last-child {
      color: var(--gold);
      font-size: 22px;
      transition: transform var(--ease);
    }

    .subscribe-section {
      padding-bottom: 90px;
    }

    .subscribe-card {
      padding: 28px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 26px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(216, 91, 63, .22), rgba(245, 184, 102, .09)),
        rgba(33, 29, 25, .92);
      border-color: var(--line-strong);
    }

    .subscribe-card h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 3.2vw, 44px);
      line-height: 1.15;
    }

    .subscribe-card p {
      margin: 0;
      color: var(--muted);
    }

    .form {
      display: grid;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      color: var(--text);
      background: rgba(17, 16, 15, .76);
      padding: 10px 12px;
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease);
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(245, 184, 102, .12);
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: rgba(11, 10, 9, .9);
      padding: 34px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 26px;
      align-items: start;
    }

    .footer-title {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 900;
    }

    .footer-text,
    .footer-links a,
    .copyright {
      color: var(--muted);
      font-size: 13px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--gold);
      outline: none;
    }

    .copyright {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    @media (max-width: 1100px) {
      :root {
        --sidebar: 220px;
      }

      .hero-stage,
      .story-grid,
      .content-layout,
      .subscribe-card {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .news-layout,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .news-panel {
        position: static;
      }
    }

    @media (max-width: 820px) {
      .site-shell {
        display: block;
      }

      .side-nav {
        display: none;
      }

      .mobile-header {
        position: sticky;
        top: 0;
        z-index: 30;
        display: block;
        border-bottom: 1px solid var(--line);
        background: rgba(17, 16, 15, .92);
        backdrop-filter: blur(16px);
      }

      .mobile-bar {
        width: min(100% - 28px, var(--container));
        margin-inline: auto;
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        color: var(--text);
        background: rgba(255, 244, 230, .06);
      }

      .mobile-menu {
        display: none;
        width: min(100% - 28px, var(--container));
        margin: 0 auto 14px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--panel);
      }

      .mobile-menu.open {
        display: grid;
        gap: 8px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      main section {
        padding: 56px 0;
      }

      .hero {
        padding: 46px 0 44px;
      }

      .hero-copy {
        padding: 28px 20px;
      }

      .burst {
        width: 76px;
        height: 76px;
        right: 14px;
        top: 14px;
        font-size: 12px;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .quote-wall {
        grid-template-columns: 1fr;
      }

      .quote.large {
        margin-top: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .top-strip {
        font-size: 12px;
        padding: 7px 12px;
      }

      .brand-name {
        font-size: 14px;
      }

      .hero-metrics,
      .entry-matrix,
      .guide-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .section-actions {
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .story-item,
      .news-item {
        grid-template-columns: 1fr;
      }

      .news-arrow {
        display: none;
      }

      .subscribe-card {
        padding: 20px;
      }

      .copyright {
        display: grid;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #12100f;
      --bg-soft: #1a1715;
      --bg-panel: #211d1a;
      --bg-card: #28231f;
      --text: #f8efe3;
      --muted: #b6a89a;
      --weak: #81756c;
      --line: rgba(248, 239, 227, 0.12);
      --line-strong: rgba(218, 156, 83, 0.42);
      --amber: #e4a449;
      --amber-deep: #b76b32;
      --wine: #7f2430;
      --copper: #c87947;
      --green: #6c8a6a;
      --smoke: #9aadc1;
      --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
      --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.24);
      --radius-sm: 6px;
      --radius: 8px;
      --radius-lg: 10px;
      --side: 292px;
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
      line-height: 1.72;
      color: var(--text);
      background:
        radial-gradient(circle at 75% 12%, rgba(183, 107, 50, 0.18), transparent 32%),
        linear-gradient(135deg, #12100f 0%, #191411 46%, #0f0e0d 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.24;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(to bottom, #000, transparent 86%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .site-shell {
      display: grid;
      grid-template-columns: var(--side) minmax(0, 1fr);
      min-height: 100vh;
    }

    .side-nav {
      position: sticky;
      top: 0;
      height: 100vh;
      padding: 26px 20px;
      background: rgba(18, 16, 15, 0.88);
      border-right: 1px solid var(--line);
      backdrop-filter: blur(18px);
      display: flex;
      flex-direction: column;
      gap: 28px;
      z-index: 20;
    }

    .brand {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 10px;
      border: 1px solid rgba(228, 164, 73, 0.2);
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(228, 164, 73, 0.12), rgba(127, 36, 48, 0.18));
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .brand:hover {
      transform: translateY(-2px);
      border-color: rgba(228, 164, 73, 0.48);
      background: linear-gradient(135deg, rgba(228, 164, 73, 0.18), rgba(127, 36, 48, 0.22));
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      color: #1b130c;
      font-weight: 900;
      background: linear-gradient(135deg, var(--amber), #f1c879);
      box-shadow: 0 12px 26px rgba(228, 164, 73, 0.2);
    }

    .brand-name {
      display: block;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0;
      white-space: normal;
    }

    .brand-sub {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .nav-group {
      display: grid;
      gap: 8px;
    }

    .nav-label {
      color: var(--weak);
      font-size: 12px;
      font-weight: 700;
      padding: 0 10px 4px;
    }

    .nav-link {
      min-height: 44px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      color: var(--muted);
      border: 1px solid transparent;
      border-radius: var(--radius);
      transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--text);
      background: rgba(255, 255, 255, 0.055);
      border-color: var(--line);
      outline: none;
    }

    .nav-link:active {
      transform: translateY(1px);
    }

    .nav-link.active {
      color: var(--text);
      background: rgba(228, 164, 73, 0.14);
      border-color: rgba(228, 164, 73, 0.36);
    }

    .nav-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: #f6d7aa;
      background: rgba(228, 164, 73, 0.14);
      font-size: 13px;
      font-weight: 800;
    }

    .side-note {
      margin-top: auto;
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(108, 138, 106, 0.28);
      background: rgba(108, 138, 106, 0.1);
      color: var(--muted);
      font-size: 13px;
    }

    .side-note strong {
      display: block;
      color: var(--text);
      margin-bottom: 4px;
    }

    .mobile-bar {
      display: none;
      position: sticky;
      top: 0;
      z-index: 30;
      padding: 12px 16px;
      background: rgba(18, 16, 15, 0.92);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }

    .mobile-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .mobile-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 900;
    }

    .mobile-brand .brand-mark {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
    }

    .menu-toggle {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      display: grid;
      place-items: center;
      transition: background var(--ease), border-color var(--ease);
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      background: rgba(228, 164, 73, 0.12);
      border-color: rgba(228, 164, 73, 0.4);
      outline: none;
    }

    .mobile-menu {
      display: none;
      margin-top: 12px;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .mobile-menu.open {
      display: grid;
    }

    .main-area {
      min-width: 0;
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 78px 0;
      border-bottom: 1px solid rgba(248, 239, 227, 0.08);
    }

    .section.compact {
      padding: 58px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #f1c879;
      font-size: 13px;
      font-weight: 800;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(228, 164, 73, 0.34);
      background: rgba(228, 164, 73, 0.1);
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--amber);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 18px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.08;
      letter-spacing: 0;
      max-width: 820px;
    }

    h2 {
      margin-bottom: 14px;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.18;
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 8px;
      font-size: 19px;
      line-height: 1.35;
    }

    .lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero {
      position: relative;
      padding: 64px 0 48px;
      min-height: 720px;
      display: grid;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(190px, 0.72fr) minmax(360px, 1.4fr) minmax(190px, 0.72fr);
      gap: 24px;
      align-items: center;
    }

    .hero-copy {
      grid-column: 1 / -1;
      text-align: center;
      display: grid;
      justify-items: center;
      margin-bottom: 12px;
    }

    .hero-stage {
      position: relative;
      min-height: 420px;
      padding: 22px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(228, 164, 73, 0.22);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent),
        radial-gradient(circle at 50% 18%, rgba(228, 164, 73, 0.24), transparent 36%),
        var(--bg-panel);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      inset: auto 24px 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(228, 164, 73, 0.8), transparent);
    }

    .screen-panel {
      position: relative;
      z-index: 1;
      height: 100%;
      min-height: 376px;
      border-radius: var(--radius);
      border: 1px solid rgba(248, 239, 227, 0.14);
      background: #171411;
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
    }

    .screen-top {
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 14px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }

    .signal {
      display: flex;
      gap: 5px;
    }

    .signal span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
    }

    .signal span:nth-child(2) {
      background: var(--copper);
    }

    .signal span:nth-child(3) {
      background: var(--green);
    }

    .matrix {
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr 0.78fr;
      gap: 16px;
      align-content: stretch;
    }

    .score-card {
      padding: 18px;
      border: 1px solid rgba(228, 164, 73, 0.3);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(228, 164, 73, 0.16), rgba(127, 36, 48, 0.18));
    }

    .score-value {
      display: block;
      font-size: 54px;
      line-height: 1;
      font-weight: 900;
      color: #f5c777;
    }

    .score-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .rank-list {
      display: grid;
      gap: 10px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 11px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.07);
    }

    .rank-no {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #1d130b;
      background: var(--amber);
      font-weight: 900;
      font-size: 12px;
    }

    .rank-item strong {
      font-size: 14px;
    }

    .rank-item span:last-child {
      color: #f2c983;
      font-size: 12px;
      font-weight: 800;
    }

    .bubble-stack {
      display: grid;
      gap: 12px;
    }

    .quote-bubble {
      padding: 13px;
      border-radius: var(--radius);
      background: rgba(154, 173, 193, 0.1);
      border: 1px solid rgba(154, 173, 193, 0.18);
      color: var(--muted);
      font-size: 13px;
    }

    .quote-bubble strong {
      display: block;
      color: var(--text);
      margin-bottom: 4px;
    }

    .value-rail {
      display: grid;
      gap: 14px;
    }

    .value-card {
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.045);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .value-card:hover {
      transform: translateY(-3px);
      border-color: rgba(228, 164, 73, 0.4);
      background: rgba(255, 255, 255, 0.07);
    }

    .value-card .tag {
      margin-bottom: 9px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 3px 9px;
      border-radius: 999px;
      color: #f6d7aa;
      background: rgba(228, 164, 73, 0.12);
      border: 1px solid rgba(228, 164, 73, 0.24);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .badge.green {
      color: #cce3c8;
      background: rgba(108, 138, 106, 0.16);
      border-color: rgba(108, 138, 106, 0.32);
    }

    .badge.wine {
      color: #ffd2d7;
      background: rgba(127, 36, 48, 0.2);
      border-color: rgba(127, 36, 48, 0.36);
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 26px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      font-weight: 900;
      transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
    }

    .btn-primary {
      color: #19110b;
      background: linear-gradient(135deg, var(--amber), #f4ca7d);
      box-shadow: 0 14px 28px rgba(228, 164, 73, 0.22);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      background: linear-gradient(135deg, #f0b861, #ffd993);
      box-shadow: 0 18px 36px rgba(228, 164, 73, 0.3);
      outline: none;
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255, 255, 255, 0.045);
      border-color: rgba(248, 239, 227, 0.18);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(228, 164, 73, 0.42);
      background: rgba(228, 164, 73, 0.1);
      outline: none;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
      gap: 30px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
    }

    .overview-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 24px;
      align-items: start;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .pick-card {
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(40, 35, 31, 0.82);
      transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
    }

    .pick-card:hover {
      transform: translateY(-4px);
      border-color: rgba(228, 164, 73, 0.42);
      background: rgba(45, 39, 34, 0.95);
      box-shadow: var(--shadow-soft);
    }

    .pick-visual {
      min-height: 132px;
      padding: 16px;
      display: grid;
      align-content: end;
      gap: 12px;
      background:
        linear-gradient(135deg, rgba(127, 36, 48, 0.5), rgba(228, 164, 73, 0.16)),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: auto, 22px 22px;
      border-bottom: 1px solid var(--line);
      transition: filter var(--ease);
    }

    .pick-card:hover .pick-visual {
      filter: saturate(1.12) brightness(1.04);
    }

    .meter {
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.1);
      overflow: hidden;
    }

    .meter span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--amber), var(--copper));
    }

    .pick-body {
      padding: 18px;
    }

    .pick-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .pick-body p {
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 14px;
    }

    .mini-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 14px;
    }

    .mini-list li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .mini-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      flex: 0 0 7px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--amber);
    }

    .aside-panel {
      position: sticky;
      top: 28px;
      display: grid;
      gap: 16px;
    }

    .trust-card,
    .step-card,
    .faq-item,
    .contact-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.045);
      box-shadow: var(--shadow-soft);
    }

    .trust-card {
      padding: 18px;
    }

    .trust-card p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 14px;
    }

    .avatar-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0;
    }

    .avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #1c130d;
      background: linear-gradient(135deg, #f2c879, #b76b32);
      border: 2px solid rgba(18, 16, 15, 0.9);
      font-size: 12px;
      font-weight: 900;
    }

    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .stat-card {
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.045);
    }

    .stat-card strong {
      display: block;
      color: #f4c879;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .proof-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 24px;
      align-items: stretch;
    }

    .review-board {
      padding: 22px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(228, 164, 73, 0.22);
      background: linear-gradient(145deg, rgba(228,164,73,0.11), rgba(255,255,255,0.045));
    }

    .rating {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 12px;
    }

    .rating strong {
      color: #f4c879;
      font-size: 48px;
      line-height: 1;
    }

    .rating span {
      color: var(--muted);
    }

    .bubble-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .bubble {
      padding: 16px;
      border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 2px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.052);
    }

    .bubble p {
      color: var(--muted);
      margin-bottom: 12px;
      font-size: 14px;
    }

    .bubble .who {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--text);
      font-weight: 800;
      font-size: 13px;
    }

    .route-timeline {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      counter-reset: step;
    }

    .step-card {
      position: relative;
      padding: 18px;
      min-height: 184px;
      overflow: hidden;
    }

    .step-card::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-grid;
      place-items: center;
      width: 36px;
      height: 36px;
      margin-bottom: 18px;
      border-radius: var(--radius-sm);
      color: #17100b;
      background: var(--amber);
      font-weight: 900;
    }

    .step-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .step-card::after {
      content: "";
      position: absolute;
      right: -28px;
      bottom: -28px;
      width: 88px;
      height: 88px;
      border: 1px solid rgba(228,164,73,0.28);
      transform: rotate(18deg);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px;
      border: 0;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 900;
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      background: rgba(228,164,73,0.13);
      color: #f4c879;
    }

    .faq-question:hover,
    .faq-question:focus-visible {
      background: rgba(255,255,255,0.04);
      outline: none;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span:last-child {
      background: rgba(228,164,73,0.24);
    }

    .contact-band {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(228,164,73,0.28);
      background:
        linear-gradient(135deg, rgba(127,36,48,0.32), rgba(228,164,73,0.12)),
        rgba(255,255,255,0.045);
      box-shadow: var(--shadow);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
      gap: 24px;
      padding: 28px;
      align-items: center;
    }

    .contact-grid p {
      color: var(--muted);
    }

    .subscribe-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(18, 16, 15, 0.58);
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 44px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(248,239,227,0.14);
      color: var(--text);
      background: rgba(255,255,255,0.06);
      padding: 10px 12px;
      outline: none;
      transition: border-color var(--ease), background var(--ease);
    }

    .field input:focus,
    .field select:focus {
      border-color: rgba(228,164,73,0.6);
      background: rgba(255,255,255,0.08);
    }

    .form-note {
      margin: 0;
      color: var(--weak);
      font-size: 12px;
    }

    .site-footer {
      padding: 38px 0 26px;
      background: rgba(12, 11, 10, 0.84);
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.7fr 0.7fr;
      gap: 28px;
    }

    .footer-title {
      margin-bottom: 10px;
      color: var(--text);
      font-weight: 900;
    }

    .footer-text {
      margin: 0;
      color: var(--muted);
      max-width: 520px;
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color var(--ease), transform var(--ease);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #f4c879;
      transform: translateX(2px);
      outline: none;
    }

    .copyright {
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1180px) {
      :root {
        --side: 260px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .value-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .overview-layout,
      .proof-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .aside-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .route-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .site-shell {
        display: block;
      }

      .side-nav {
        display: none;
      }

      .mobile-bar {
        display: block;
      }

      .container {
        width: min(100% - 32px, var(--container));
      }

      .hero {
        min-height: auto;
        padding: 46px 0 34px;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .feature-grid,
      .stats-strip,
      .bubble-grid,
      .footer-grid,
      .aside-panel {
        grid-template-columns: 1fr;
      }

      .matrix {
        grid-template-columns: 1fr;
      }

      .screen-panel {
        min-height: auto;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 620px) {
      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 26px;
      }

      .lead {
        font-size: 15px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .value-rail,
      .route-timeline {
        grid-template-columns: 1fr;
      }

      .hero-stage,
      .contact-grid {
        padding: 16px;
      }

      .score-value {
        font-size: 42px;
      }

      .rank-item {
        grid-template-columns: auto 1fr;
      }

      .rank-item span:last-child {
        grid-column: 2;
      }
    }

/* roulang page: category2 */
:root{
  --bg:#120f0d;
  --bg-soft:#181310;
  --panel:#1c1713;
  --panel-2:#221c18;
  --line:#342a23;
  --line-strong:#4b3a2f;
  --text:#f5efe9;
  --muted:#b9aca0;
  --faint:#87796e;
  --brand:#e7b46a;
  --brand-2:#c67a52;
  --brand-3:#8c3742;
  --accent:#6f7f72;
  --ok:#86b68d;
  --warn:#c98955;
  --shadow:0 18px 48px rgba(0,0,0,.34);
  --shadow-soft:0 10px 24px rgba(0,0,0,.22);
  --radius:10px;
  --radius-sm:8px;
  --gap:18px;
  --container:1180px;
  --nav-w:286px;
  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 120px),
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 1px, rgba(255,255,255,0) 1px 10px),
    linear-gradient(180deg, #14110f 0%, #0f0c0a 100%);
  font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
  letter-spacing:0;
  min-height:100vh;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(231,180,106,.06), transparent 22%),
    linear-gradient(180deg, rgba(198,122,82,.04), transparent 20%);
  opacity:.7;
  z-index:0;
}

a{color:inherit;text-decoration:none}
button,input,select,textarea{
  font:inherit;
  color:inherit;
}
img{max-width:100%;display:block}
p,h1,h2,h3,h4,h5,h6{margin:0}
ul{margin:0;padding:0;list-style:none}
svg{display:block}

.page-shell{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:var(--nav-w) minmax(0,1fr);
  min-height:100vh;
}

.side-nav{
  position:sticky;
  top:0;
  align-self:start;
  height:100vh;
  padding:22px 18px 18px;
  border-right:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    rgba(10,8,7,.78);
  backdrop-filter:blur(8px);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:6px 6px 14px;
  border-bottom:1px solid var(--line);
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg, rgba(231,180,106,.2), rgba(140,55,66,.14));
  border:1px solid rgba(231,180,106,.34);
  color:var(--brand);
  font-weight:700;
  letter-spacing:0;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

.brand-name{
  display:block;
  font-size:1.02rem;
  line-height:1.18;
  font-weight:700;
  letter-spacing:0;
}

.brand-sub{
  display:block;
  margin-top:4px;
  font-size:.84rem;
  color:var(--muted);
}

.nav-group{
  display:flex;
  flex-direction:column;
  gap:7px;
  padding:0 2px;
}

.nav-label{
  font-size:.75rem;
  color:var(--faint);
  text-transform:none;
  letter-spacing:0;
}

.nav-link{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:44px;
  padding:0 12px;
  border-radius:10px;
  border:1px solid transparent;
  color:#e8ddd3;
  background:transparent;
  transition:background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease), color .18s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible{
  background:rgba(255,255,255,.045);
  border-color:rgba(255,255,255,.08);
  transform:translateX(2px);
  outline:none;
}

.nav-link.active,
.nav-link[aria-current="page"]{
  background:linear-gradient(145deg, rgba(231,180,106,.14), rgba(198,122,82,.08));
  border-color:rgba(231,180,106,.3);
  color:#fff4e5;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

.nav-icon{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(255,255,255,.05);
  color:var(--brand);
  font-size:.76rem;
  flex:0 0 auto;
}

.side-note{
  margin-top:auto;
  padding:14px 14px 15px;
  border-radius:10px;
  border:1px solid rgba(231,180,106,.16);
  background:linear-gradient(180deg, rgba(231,180,106,.08), rgba(255,255,255,.02));
  color:#e8ddd2;
}

.side-note strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
  font-size:.94rem;
}

.side-note span{
  display:block;
  font-size:.86rem;
  color:var(--muted);
}

.mobile-topbar{
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
}

.menu-toggle{
  appearance:none;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#f4eadf;
  width:42px;
  height:42px;
  border-radius:10px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible{
  background:rgba(255,255,255,.08);
  border-color:rgba(231,180,106,.3);
  transform:translateY(-1px);
  outline:none;
}

.content{
  min-width:0;
  padding:24px 24px 0;
}

.container{
  width:min(100%, var(--container));
  margin:0 auto;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(310px,.9fr);
  gap:20px;
  align-items:stretch;
  padding:18px 0 12px;
}

.hero-copy,
.hero-panel,
.section,
.site-footer{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), rgba(24,19,16,.68);
  box-shadow:var(--shadow-soft);
}

.hero-copy{
  padding:34px 32px 28px;
  position:relative;
  overflow:hidden;
}

.hero-copy::after{
  content:"";
  position:absolute;
  right:-50px;
  top:-50px;
  width:180px;
  height:180px;
  background:radial-gradient(circle at center, rgba(231,180,106,.12), transparent 68%);
  pointer-events:none;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(231,180,106,.25);
  background:rgba(231,180,106,.08);
  color:#f5d7ac;
  font-size:.84rem;
}

.hero h1{
  margin-top:16px;
  font-size:clamp(2rem, 3vw, 3.2rem);
  line-height:1.1;
  letter-spacing:0;
  color:#fff7ef;
}

.hero-summary{
  margin-top:16px;
  max-width:64ch;
  color:var(--muted);
  font-size:1rem;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn{
  appearance:none;
  border:1px solid transparent;
  border-radius:10px;
  padding:0 16px;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  letter-spacing:0;
  font-weight:600;
}

.btn-primary{
  background:linear-gradient(135deg, var(--brand), #d59158);
  color:#1d120d;
  box-shadow:0 10px 22px rgba(231,180,106,.16);
}

.btn-primary:hover,
.btn-primary:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 14px 24px rgba(231,180,106,.22);
  outline:none;
}

.btn-secondary{
  background:rgba(255,255,255,.03);
  color:#f0e5d8;
  border-color:rgba(255,255,255,.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible{
  transform:translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color:rgba(231,180,106,.28);
  outline:none;
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.chip,
.tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.03);
  color:#e7dbcf;
  font-size:.82rem;
}

.tag{
  min-height:26px;
  padding:0 9px;
  font-size:.76rem;
  color:#d8c7b8;
  background:rgba(255,255,255,.035);
}

.hero-panel{
  padding:18px;
  display:grid;
  gap:12px;
}

.panel-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.panel-title h2,
.section-head h2{
  font-size:1.22rem;
  line-height:1.2;
  letter-spacing:0;
}

.panel-title span,
.section-head p{
  color:var(--muted);
  font-size:.9rem;
}

.recommend-grid{
  display:grid;
  gap:12px;
}

.recommend-card{
  padding:14px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transition:transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.recommend-card:hover{
  transform:translateY(-2px);
  border-color:rgba(231,180,106,.24);
  background:rgba(255,255,255,.05);
}

.recommend-card.featured{
  background:linear-gradient(145deg, rgba(231,180,106,.12), rgba(255,255,255,.03));
  border-color:rgba(231,180,106,.3);
}

.recommend-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.recommend-top strong{
  font-size:.98rem;
}

.recommend-card p{
  margin-top:8px;
  color:var(--muted);
  font-size:.88rem;
}

.inline-list{
  margin-top:10px;
  display:grid;
  gap:7px;
}

.inline-list li{
  display:flex;
  align-items:flex-start;
  gap:8px;
  color:#e9ddd1;
  font-size:.88rem;
}

.inline-list li::before{
  content:"";
  width:8px;
  height:8px;
  margin-top:.42em;
  border-radius:50%;
  background:var(--brand);
  flex:0 0 auto;
  box-shadow:0 0 0 3px rgba(231,180,106,.12);
}

.section{
  margin-top:18px;
  padding:22px;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.section-head h2{
  font-size:1.3rem;
}

.section-head p{
  max-width:60ch;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}

.service-card{
  min-height:170px;
  padding:16px;
  border-radius:10px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  transition:transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.service-card:hover{
  transform:translateY(-2px);
  border-color:rgba(231,180,106,.22);
  background:rgba(255,255,255,.045);
}

.service-icon{
  width:40px;
  height:40px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(231,180,106,.1);
  border:1px solid rgba(231,180,106,.22);
  color:#f3cf95;
  font-size:1rem;
}

.service-card h3{
  margin-top:14px;
  font-size:1rem;
  line-height:1.25;
}

.service-card p{
  margin-top:10px;
  color:var(--muted);
  font-size:.9rem;
}

.service-card .tag-row{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.stat-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}

.stat-card{
  padding:16px;
  border-radius:10px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.stat-card strong{
  display:block;
  color:#fff;
  font-size:2rem;
  line-height:1;
  letter-spacing:0;
}

.stat-card span{
  display:block;
  margin-top:8px;
  color:#eadfcc;
  font-weight:600;
}

.stat-card p{
  margin-top:8px;
  color:var(--muted);
  font-size:.88rem;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
  gap:16px;
}

.voice-board,
.tips-board,
.faq-board,
.form-board{
  padding:16px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.avatar-wall{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:10px;
  margin-top:6px;
}

.avatar{
  width:100%;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(145deg, rgba(231,180,106,.08), rgba(255,255,255,.02));
  color:#f5d9b2;
  font-size:.82rem;
  font-weight:700;
}

.quote-list{
  display:grid;
  gap:10px;
}

.quote{
  padding:12px 12px 12px 14px;
  border-left:3px solid rgba(231,180,106,.5);
  background:rgba(255,255,255,.025);
  border-radius:0 10px 10px 0;
}

.quote p{
  color:#f2e8db;
  font-size:.92rem;
}

.quote span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:.8rem;
}

.note-grid{
  display:grid;
  gap:10px;
}

.note{
  padding:13px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.note strong{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:.94rem;
}

.note p{
  margin-top:8px;
  color:var(--muted);
  font-size:.88rem;
}

.step-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.step{
  padding:16px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}

.step-index{
  display:inline-grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:8px;
  background:rgba(231,180,106,.12);
  border:1px solid rgba(231,180,106,.26);
  color:#f4d4a0;
  font-weight:700;
  font-size:.85rem;
}

.step h3{
  margin-top:12px;
  font-size:1rem;
}

.step p{
  margin-top:8px;
  color:var(--muted);
  font-size:.9rem;
}

.compare-wrap{
  margin-top:14px;
  overflow:auto;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.compare{
  width:100%;
  border-collapse:collapse;
  min-width:680px;
}

.compare th,
.compare td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,.06);
  vertical-align:top;
}

.compare th{
  color:#f7ead9;
  font-size:.88rem;
  background:rgba(255,255,255,.03);
}

.compare td{
  color:var(--muted);
  font-size:.92rem;
}

.compare tr:last-child td{
  border-bottom:0;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:0 9px;
  border-radius:999px;
  background:rgba(231,180,106,.08);
  color:#f4d4a0;
  border:1px solid rgba(231,180,106,.16);
  font-size:.76rem;
}

.faq-list{
  display:grid;
  gap:10px;
}

.faq-item{
  overflow:hidden;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.faq-q{
  width:100%;
  appearance:none;
  border:0;
  background:transparent;
  color:inherit;
  padding:15px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  text-align:left;
  transition:background .18s var(--ease);
}

.faq-q:hover,
.faq-q:focus-visible{
  background:rgba(255,255,255,.03);
  outline:none;
}

.faq-q strong{
  font-size:1rem;
  line-height:1.3;
}

.faq-q span{
  width:28px;
  height:28px;
  border-radius:8px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#f2d5aa;
  transition:transform .18s var(--ease);
}

.faq-item.open .faq-q span{
  transform:rotate(45deg);
}

.faq-a{
  display:none;
  padding:0 16px 16px;
  color:var(--muted);
  font-size:.92rem;
}

.faq-item.open .faq-a{
  display:block;
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(270px,.9fr);
  gap:16px;
}

.form{
  display:grid;
  gap:12px;
}

.field-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  color:#f5e7d7;
  font-size:.9rem;
}

.field input,
.field select,
.field textarea{
  width:100%;
  min-height:44px;
  padding:11px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(7,6,5,.36);
  color:var(--text);
  outline:none;
  transition:border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.field input::placeholder,
.field textarea::placeholder{
  color:#8f8278;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(231,180,106,.34);
  box-shadow:0 0 0 3px rgba(231,180,106,.09);
  background:rgba(10,8,7,.52);
}

.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}

.help-list{
  display:grid;
  gap:10px;
}

.help-item{
  padding:13px 14px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}

.help-item strong{
  display:block;
  margin-bottom:6px;
  color:#fff5e7;
}

.help-item span{
  color:var(--muted);
  font-size:.88rem;
}

.site-footer{
  margin-top:18px;
  padding:24px 0 18px;
  border-radius:12px 12px 0 0;
  border-bottom:0;
  background:linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.01)), rgba(14,11,9,.9);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:18px;
}

.footer-title{
  color:#fff;
  font-weight:700;
  margin-bottom:10px;
}

.footer-text{
  color:var(--muted);
  font-size:.92rem;
  max-width:36ch;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}

.footer-links a{
  color:#e8d7c6;
  font-size:.92rem;
  transition:color .18s var(--ease), opacity .18s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible{
  color:#fff4e6;
  outline:none;
}

.copyright{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:#bbaea2;
  font-size:.86rem;
}

.subtle-divider{
  margin:18px 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}

.content-section{
  margin-top:18px;
}

.fixed-anchor{
  scroll-margin-top:18px;
}

button,
a,
input,
select,
textarea{
  -webkit-tap-highlight-color:transparent;
}

:focus-visible{
  outline:2px solid rgba(231,180,106,.55);
  outline-offset:2px;
}

@media (max-width:1180px){
  .page-shell{
    grid-template-columns:248px minmax(0,1fr);
  }
  .hero{
    grid-template-columns:1fr;
  }
  .service-grid,
  .stat-row,
  .step-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .content-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .avatar-wall{
    grid-template-columns:repeat(8, 1fr);
  }
}

@media (max-width:920px){
  .page-shell{
    grid-template-columns:1fr;
  }
  .side-nav{
    position:sticky;
    top:0;
    z-index:20;
    height:auto;
    padding:14px 14px 12px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .mobile-topbar{
    display:flex;
  }
  .nav-panel{
    display:none;
    gap:14px;
    padding-top:12px;
  }
  .side-nav.open .nav-panel{
    display:grid;
  }
  .content{
    padding:18px 14px 0;
  }
  .brand{
    padding:0;
    border-bottom:0;
  }
  .side-note{
    margin-top:0;
  }
  .service-grid,
  .stat-row,
  .step-grid{
    grid-template-columns:1fr;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
  .copyright{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:640px){
  .hero-copy,
  .hero-panel,
  .section{
    padding:18px 16px;
  }
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .field-row{
    grid-template-columns:1fr;
  }
  .avatar-wall{
    grid-template-columns:repeat(4, 1fr);
  }
  .btn{
    width:100%;
  }
  .btn-row{
    display:grid;
    grid-template-columns:1fr;
  }
  .nav-link{
    min-height:42px;
  }
}
