/* roulang page: index */
:root {
      --sand: #F7E9D2;
      --cream: #FFF8EF;
      --apricot: #F2B66D;
      --coral: #FF8A5B;
      --cocoa: #6B3F2A;
      --deep: #2F2522;
      --brown: #8E5A44;
      --line: rgba(107, 63, 42, .16);
      --muted: #76645a;
      --olive: #7A8B57;
      --amber: #D9822B;
      --shadow: 0 22px 60px rgba(107, 63, 42, .12);
      --soft-shadow: 0 12px 34px rgba(107, 63, 42, .09);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-pill: 999px;
      --max: 1220px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--deep);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 16% 12%, rgba(255, 138, 91, .22), transparent 28%),
        radial-gradient(circle at 86% 6%, rgba(242, 182, 109, .24), transparent 30%),
        linear-gradient(135deg, #fff8ef 0%, #f7e9d2 48%, #ead7c0 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      opacity: .38;
      background-image:
        radial-gradient(circle, rgba(107, 63, 42, .16) 1px, transparent 1px),
        repeating-linear-gradient(35deg, transparent 0 34px, rgba(107, 63, 42, .045) 35px 36px);
      background-size: 34px 34px, 220px 220px;
      pointer-events: none;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.22) 12.2% 12.4%, transparent 12.8%),
        radial-gradient(circle at 72% 46%, rgba(255, 138, 91, .12), transparent 20%);
      pointer-events: none;
    }

    a { color: inherit; text-decoration: none; transition: color .2s ease, transform .2s ease, opacity .2s ease; }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font-family: inherit; }
    button:focus, a:focus, input:focus, textarea:focus { outline: 3px solid rgba(255, 138, 91, .35); outline-offset: 3px; }

    .site-shell { min-height: 100vh; }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
    .section { padding: 88px 0; position: relative; }
    .section.compact { padding: 64px 0; }
    .section-title { margin-bottom: 34px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      background: rgba(255, 248, 239, .72);
      border: 1px solid var(--line);
      color: var(--brown);
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(107, 63, 42, .06);
    }
    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--coral);
      box-shadow: 0 0 0 6px rgba(255, 138, 91, .14);
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.14;
      letter-spacing: -.03em;
      margin-bottom: 22px;
      color: #fff8ef;
    }
    h2 {
      font-size: clamp(28px, 3.4vw, 38px);
      line-height: 1.22;
      letter-spacing: -.02em;
      margin: 14px 0 12px;
      color: var(--deep);
    }
    h3 { font-size: 21px; line-height: 1.35; color: var(--deep); margin-bottom: 10px; }
    .lead { font-size: 17px; color: rgba(255, 248, 239, .82); max-width: 720px; }
    .section-desc { color: var(--muted); max-width: 760px; font-size: 16px; }

    .glass-nav {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all .28s ease;
      pointer-events: none;
    }
    .nav-frame {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      border: 1px solid rgba(255, 248, 239, .44);
      border-radius: 26px;
      background: rgba(255, 248, 239, .24);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 42px rgba(47, 37, 34, .14);
      pointer-events: auto;
    }
    .glass-nav.is-scrolled { top: 8px; }
    .glass-nav.is-scrolled .nav-frame {
      background: rgba(255, 248, 239, .9);
      border-color: rgba(107, 63, 42, .12);
      box-shadow: 0 16px 38px rgba(107, 63, 42, .12);
    }
    .top-bar, .top-bar ul { background: transparent; }
    .top-bar { padding: 10px 14px; border-radius: 26px; }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--deep);
      letter-spacing: -.02em;
      white-space: nowrap;
    }
    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: conic-gradient(from 45deg, var(--coral), var(--apricot), var(--cream), var(--coral));
      border: 2px solid rgba(255, 248, 239, .78);
      box-shadow: 0 7px 18px rgba(255, 138, 91, .26);
      position: relative;
    }
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 11px;
      border-radius: 50%;
      background: var(--deep);
    }
    .nav-menu a {
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      color: rgba(47, 37, 34, .8);
      font-weight: 700;
      font-size: 14px;
    }
    .nav-menu a:hover, .nav-menu a.active {
      color: var(--deep);
      background: rgba(255, 138, 91, .16);
    }
    .nav-search {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 230px;
      padding: 8px 12px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: var(--radius-pill);
      background: rgba(255, 248, 239, .68);
      color: var(--muted);
      font-size: 13px;
    }
    .nav-search input {
      border: 0;
      box-shadow: none;
      margin: 0;
      height: 24px;
      background: transparent;
      color: var(--deep);
      font-size: 13px;
    }
    .nav-search input::placeholder { color: rgba(118, 100, 90, .88); }
    .menu-icon::after { background: var(--deep); box-shadow: 0 7px 0 var(--deep), 0 14px 0 var(--deep); }
    .off-canvas {
      background: var(--cream);
      padding: 22px;
    }
    .mobile-menu a {
      display: block;
      padding: 13px 12px;
      border-radius: 16px;
      font-weight: 800;
    }
    .mobile-menu a.active, .mobile-menu a:hover { background: rgba(255, 138, 91, .16); }

    .button, .button.primary, .button.secondary {
      border-radius: var(--radius-pill);
      font-weight: 800;
      padding: 14px 22px;
      transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
    }
    .button.primary {
      background: linear-gradient(135deg, var(--coral), var(--apricot));
      color: #fff;
      box-shadow: 0 14px 28px rgba(255, 138, 91, .28);
    }
    .button.primary:hover {
      transform: translateY(-3px);
      filter: brightness(1.04);
      box-shadow: 0 18px 38px rgba(255, 138, 91, .34);
      color: #fff;
    }
    .button.secondary {
      color: var(--deep);
      background: rgba(255, 248, 239, .76);
      border: 1px solid rgba(255, 248, 239, .52);
    }
    .button.secondary:hover {
      color: var(--deep);
      background: #fff8ef;
      transform: translateY(-2px);
      box-shadow: var(--soft-shadow);
    }
    .button.hollow {
      border: 1px solid rgba(107, 63, 42, .2);
      color: var(--deep);
      background: rgba(255, 248, 239, .5);
    }

    .hero {
      min-height: 760px;
      display: flex;
      align-items: center;
      padding: 142px 0 78px;
      background:
        linear-gradient(135deg, rgba(47,37,34,.96), rgba(107,63,42,.9) 48%, rgba(142,90,68,.84)),
        radial-gradient(circle at 18% 70%, rgba(255,138,91,.36), transparent 28%),
        radial-gradient(circle at 78% 20%, rgba(242,182,109,.28), transparent 30%);
      position: relative;
      overflow: hidden;
      border-bottom-left-radius: 46px;
      border-bottom-right-radius: 46px;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255,248,239,.08) 1px, transparent 1px),
        linear-gradient(rgba(255,248,239,.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,248,239,.22) 2px, transparent 3px);
      background-size: 84px 84px, 84px 84px, 180px 180px;
      mask-image: linear-gradient(90deg, #000, transparent 88%);
      opacity: .5;
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 680px;
      height: 220px;
      left: 12%;
      bottom: 72px;
      border-bottom: 2px dashed rgba(255, 248, 239, .3);
      border-radius: 50%;
      transform: rotate(-6deg);
    }
    .hero .container { position: relative; z-index: 1; }
    .hero-panel {
      padding: 34px;
      border-radius: var(--radius-xl);
      background: rgba(255, 248, 239, .08);
      border: 1px solid rgba(255, 248, 239, .18);
      box-shadow: 0 28px 70px rgba(0,0,0,.2);
      backdrop-filter: blur(10px);
    }
    .hero-map-card {
      min-height: 100%;
      padding: 28px;
      border-radius: var(--radius-xl);
      background: rgba(255, 248, 239, .92);
      border: 1px solid rgba(255, 248, 239, .7);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .hero-map-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 2px dashed rgba(107, 63, 42, .16);
      border-radius: 28px;
      pointer-events: none;
    }
    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      position: relative;
      z-index: 1;
    }
    .entry-tile {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(107, 63, 42, .12);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .entry-tile:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 138, 91, .42);
      box-shadow: var(--soft-shadow);
    }
    .tile-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,138,91,.22), rgba(242,182,109,.28));
      margin-bottom: 10px;
      color: var(--cocoa);
      font-size: 20px;
    }
    .entry-tile strong { display: block; color: var(--deep); margin-bottom: 4px; }
    .entry-tile span { display: block; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .compliance-strip {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 22px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(217, 130, 43, .14);
      border: 1px solid rgba(217, 130, 43, .26);
      color: #fff2df;
      font-size: 14px;
    }
    .compliance-strip .badge-18 {
      flex: 0 0 auto;
      background: var(--amber);
      color: #fff;
      padding: 5px 10px;
      border-radius: var(--radius-pill);
      font-weight: 900;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
    .hero-stats {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      color: rgba(255, 248, 239, .86);
    }
    .stat-pill {
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 248, 239, .12);
      border: 1px solid rgba(255, 248, 239, .16);
      font-size: 13px;
    }
    .avatar-wall {
      display: flex;
      align-items: center;
      margin: 22px 0 0;
    }
    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 3px solid var(--cream);
      margin-left: -10px;
      background: linear-gradient(135deg, var(--coral), var(--apricot));
      box-shadow: 0 8px 18px rgba(47,37,34,.15);
    }
    .avatar:first-child { margin-left: 0; }
    .avatar:nth-child(2n) { background: linear-gradient(135deg, #ead7c0, #b86a45); }
    .avatar:nth-child(3n) { background: linear-gradient(135deg, #fff8ef, #7a8b57); }
    .bubble-note {
      margin-left: 14px;
      padding: 11px 14px;
      border-radius: 18px;
      background: rgba(255,248,239,.18);
      color: rgba(255,248,239,.88);
      border: 1px solid rgba(255,248,239,.16);
      font-size: 13px;
      max-width: 260px;
    }
    .faux-list {
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }
    .rank-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px dashed rgba(107, 63, 42, .14);
      color: var(--deep);
      font-size: 14px;
    }
    .rank-row:last-child { border-bottom: 0; }
    .rank-row b { color: var(--coral); }
    .rank-row small { color: var(--muted); }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 248, 239, .78);
      box-shadow: var(--soft-shadow);
      padding: 24px;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      height: 100%;
      overflow: hidden;
      position: relative;
    }
    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 138, 91, .4);
      box-shadow: var(--shadow);
    }
    .card.soft { background: rgba(255,255,255,.58); }
    .node-card::before {
      content: attr(data-node);
      position: absolute;
      top: 18px;
      right: 18px;
      color: rgba(107, 63, 42, .18);
      font-weight: 900;
      font-size: 28px;
    }
    .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 11px;
      border-radius: var(--radius-pill);
      background: rgba(255, 138, 91, .12);
      color: var(--brown);
      border: 1px solid rgba(255, 138, 91, .18);
      font-size: 13px;
      font-weight: 700;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .tag:hover { transform: translateY(-2px); border-color: rgba(255, 138, 91, .42); background: rgba(255, 138, 91, .18); }
    .tag.green { background: rgba(122, 139, 87, .12); border-color: rgba(122, 139, 87, .22); color: #56643e; }
    .tag.amber { background: rgba(217, 130, 43, .12); border-color: rgba(217, 130, 43, .24); color: #8c541f; }

    .news-board {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
      gap: 24px;
    }
    .news-list {
      margin: 0;
      list-style: none;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--line);
      background: rgba(255,248,239,.74);
      box-shadow: var(--soft-shadow);
    }
    .news-list li + li { border-top: 1px dashed rgba(107, 63, 42, .14); }
    .news-list a {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 20px 22px;
    }
    .news-list a:hover { background: rgba(255, 138, 91, .08); }
    .news-date {
      color: var(--brown);
      font-weight: 800;
      font-size: 13px;
    }
    .news-title { font-weight: 900; color: var(--deep); }
    .news-desc { color: var(--muted); font-size: 14px; margin-top: 3px; }
    .arrow { color: var(--coral); font-weight: 900; }
    .recommend-panel {
      border-radius: var(--radius-xl);
      padding: 26px;
      background: linear-gradient(145deg, rgba(107,63,42,.94), rgba(142,90,68,.9));
      color: var(--cream);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .recommend-panel::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -50px;
      bottom: -70px;
      background: rgba(255, 138, 91, .24);
    }
    .recommend-panel p { color: rgba(255,248,239,.78); }
    .mini-check {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
      position: relative;
      z-index: 1;
    }
    .mini-check li {
      padding: 10px 0 10px 28px;
      position: relative;
      border-bottom: 1px solid rgba(255,248,239,.14);
      font-size: 14px;
    }
    .mini-check li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--apricot);
      font-weight: 900;
    }

    .quick-answer {
      border-radius: var(--radius-xl);
      padding: 28px;
      background: rgba(255,248,239,.7);
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
    }
    .accordion {
      background: transparent;
      border: 0;
    }
    .accordion-item {
      margin-bottom: 12px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.56);
    }
    .accordion-title {
      min-height: 58px;
      display: flex;
      align-items: center;
      color: var(--deep);
      font-weight: 900;
      font-size: 16px;
      padding: 18px 22px;
      border: 0;
    }
    .accordion-title:hover, .accordion-title:focus {
      background: rgba(255, 138, 91, .1);
      color: var(--cocoa);
    }
    .accordion-title::before { color: var(--coral); font-size: 20px; }
    .accordion-content {
      border: 0;
      background: rgba(255,248,239,.58);
      color: var(--muted);
      padding: 0 22px 20px;
    }

    .safety-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }
    .safety-callout {
      padding: 30px;
      border-radius: var(--radius-xl);
      background: rgba(217, 130, 43, .12);
      border: 1px solid rgba(217, 130, 43, .26);
      box-shadow: var(--soft-shadow);
    }
    .safety-callout strong {
      display: inline-flex;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      background: rgba(217, 130, 43, .16);
      color: #80501e;
      margin-bottom: 14px;
    }
    .step-list {
      display: grid;
      gap: 14px;
    }
    .step-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,248,239,.74);
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(107, 63, 42, .06);
    }
    .step-num {
      flex: 0 0 38px;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--coral), var(--apricot));
      color: #fff;
      font-weight: 900;
    }

    .story-band {
      border-radius: 38px;
      padding: 38px;
      background:
        radial-gradient(circle at 80% 18%, rgba(255,138,91,.18), transparent 28%),
        linear-gradient(135deg, rgba(255,248,239,.86), rgba(247,233,210,.78));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .reviews {
      columns: 3 260px;
      column-gap: 18px;
    }
    .review-bubble {
      display: inline-block;
      width: 100%;
      margin: 0 0 18px;
      padding: 20px;
      border-radius: 24px 24px 24px 8px;
      background: rgba(255,248,239,.82);
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
      break-inside: avoid;
    }
    .review-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: var(--brown);
      font-size: 13px;
      font-weight: 800;
    }
    .review-head .avatar {
      width: 32px;
      height: 32px;
      border-width: 2px;
      margin-left: 0;
    }
    .metric-bars { display: grid; gap: 12px; margin-top: 18px; }
    .metric {
      display: grid;
      grid-template-columns: 90px 1fr 42px;
      gap: 12px;
      align-items: center;
      color: var(--muted);
      font-size: 13px;
    }
    .bar {
      height: 9px;
      border-radius: var(--radius-pill);
      background: rgba(107, 63, 42, .1);
      overflow: hidden;
    }
    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--coral), var(--apricot));
    }

    .price-card {
      padding: 28px;
      border-radius: 30px;
      background: rgba(255,248,239,.8);
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .price-card.featured {
      border-color: rgba(255, 138, 91, .45);
      box-shadow: 0 24px 54px rgba(255, 138, 91, .16);
      background: linear-gradient(180deg, rgba(255,248,239,.94), rgba(255,234,212,.78));
    }
    .price-card .price {
      font-size: 34px;
      font-weight: 900;
      color: var(--cocoa);
      margin: 14px 0;
    }
    .feature-list {
      margin: 18px 0 22px;
      padding: 0;
      list-style: none;
    }
    .feature-list li {
      padding: 9px 0 9px 26px;
      position: relative;
      color: var(--muted);
      border-bottom: 1px dashed rgba(107, 63, 42, .14);
    }
    .feature-list li::before {
      content: "•";
      position: absolute;
      left: 7px;
      color: var(--coral);
      font-size: 22px;
      line-height: 1;
    }

    .app-panel {
      border-radius: 38px;
      padding: 36px;
      background:
        linear-gradient(135deg, rgba(47,37,34,.94), rgba(107,63,42,.92)),
        radial-gradient(circle at 18% 30%, rgba(242,182,109,.32), transparent 24%);
      color: var(--cream);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }
    .app-panel::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px dashed rgba(255,248,239,.18);
      border-radius: 30px;
      pointer-events: none;
    }
    .app-panel h2 { color: var(--cream); }
    .app-panel p { color: rgba(255,248,239,.78); }
    .app-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .app-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 15px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255,248,239,.2);
      background: rgba(255,248,239,.1);
      font-weight: 800;
    }

    .cta-camp {
      padding: 44px;
      border-radius: 40px;
      background:
        radial-gradient(circle at 10% 80%, rgba(255,138,91,.2), transparent 24%),
        linear-gradient(135deg, rgba(255,248,239,.9), rgba(247,233,210,.88));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-camp::before {
      content: "";
      position: absolute;
      width: 68%;
      height: 90px;
      left: 16%;
      bottom: -24px;
      border-top: 2px dashed rgba(107, 63, 42, .18);
      border-radius: 50%;
    }
    .cta-camp > * { position: relative; z-index: 1; }

    .site-footer {
      padding: 58px 0 30px;
      color: rgba(255,248,239,.78);
      background: linear-gradient(135deg, #2f2522, #6b3f2a);
      border-top-left-radius: 42px;
      border-top-right-radius: 42px;
    }
    .site-footer .brand { color: var(--cream); margin-bottom: 14px; }
    .footer-title {
      color: var(--cream);
      font-weight: 900;
      margin-bottom: 12px;
    }
    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
    }
    .footer-links a { color: rgba(255,248,239,.74); }
    .footer-links a:hover { color: var(--apricot); }
    .disclaimer {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,248,239,.14);
      font-size: 13px;
      color: rgba(255,248,239,.62);
    }

    .age-modal {
      border-radius: 30px;
      border: 1px solid rgba(107,63,42,.16);
      background: var(--cream);
      color: var(--deep);
      box-shadow: 0 36px 90px rgba(47,37,34,.28);
      padding: 32px;
      max-width: 560px;
    }
    .age-modal .badge-18 {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      background: rgba(217, 130, 43, .16);
      color: #80501e;
      font-weight: 900;
      margin-bottom: 14px;
    }
    .reveal-overlay { background: rgba(47,37,34,.58); backdrop-filter: blur(8px); }

    @media screen and (max-width: 1024px) {
      .nav-search { display: none; }
      .hero { min-height: auto; padding-top: 128px; }
      .news-board, .safety-grid { grid-template-columns: 1fr; }
      .section { padding: 72px 0; }
    }

    @media screen and (max-width: 767px) {
      .container, .nav-frame { width: min(100% - 24px, var(--max)); }
      .glass-nav { top: 10px; }
      .top-bar { padding: 8px 10px; }
      .brand { font-size: 14px; }
      .brand-mark { width: 30px; height: 30px; }
      .hero { padding: 112px 0 54px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; }
      .hero-panel, .hero-map-card, .story-band, .app-panel, .cta-camp { padding: 24px; border-radius: 28px; }
      .entry-grid { grid-template-columns: 1fr; }
      .hero-actions .button, .cta-camp .button, .price-card .button { width: 100%; margin-right: 0; }
      .news-list a { grid-template-columns: 1fr; gap: 6px; }
      .arrow { display: none; }
      .metric { grid-template-columns: 76px 1fr 36px; }
      .section { padding: 56px 0; }
      .section.compact { padding: 44px 0; }
      .compliance-strip { align-items: flex-start; }
      .reviews { columns: 1; }
    }

    @media screen and (max-width: 520px) {
      h1 { font-size: 33px; }
      h2 { font-size: 28px; }
      .hero-stats { display: grid; grid-template-columns: 1fr; }
      .bubble-note { display: none; }
      .card, .quick-answer, .price-card { padding: 20px; border-radius: 22px; }
    }

/* roulang page: category1 */
:root {
      --sand: #F7E9D2;
      --cream: #FFF8EF;
      --apricot: #F2B66D;
      --coral: #FF8A5B;
      --cocoa: #6B3F2A;
      --dark: #2F2522;
      --mist: #EAD7C0;
      --clay: #B86A45;
      --brown: #8E5A44;
      --olive: #7A8B57;
      --amber: #D9822B;
      --paper: rgba(255, 248, 239, .82);
      --line: rgba(107, 63, 42, .16);
      --shadow: 0 22px 60px rgba(107, 63, 42, .12);
      --shadow-soft: 0 12px 30px rgba(107, 63, 42, .10);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-pill: 999px;
      --container: 1220px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--dark);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      background:
        radial-gradient(circle at 16% 12%, rgba(255, 138, 91, .16), transparent 28%),
        radial-gradient(circle at 78% 20%, rgba(242, 182, 109, .18), transparent 28%),
        linear-gradient(135deg, #fff8ef 0%, #f7e9d2 48%, #efe2d2 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .34;
      background-image:
        repeating-radial-gradient(ellipse at 20% 20%, rgba(107, 63, 42, .15) 0 1px, transparent 1px 16px),
        linear-gradient(120deg, transparent 0 45%, rgba(107, 63, 42, .10) 45% 46%, transparent 46% 100%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
      z-index: -2;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    a:hover,
    a:focus {
      color: var(--clay);
    }

    button,
    input,
    textarea,
    select {
      font-family: inherit;
    }

    button,
    .button {
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
      position: relative;
    }

    .section.compact {
      padding: 64px 0;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-title .eyebrow,
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border: 1px solid rgba(184, 106, 69, .22);
      border-radius: var(--radius-pill);
      color: var(--clay);
      background: rgba(255, 248, 239, .72);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
    }

    .section-title h2 {
      margin: 14px 0 10px;
      color: var(--dark);
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.22;
      font-weight: 850;
      letter-spacing: 0;
    }

    .section-title p {
      margin: 0;
      color: rgba(47, 37, 34, .72);
      font-size: 16px;
    }

    .site-header {
      position: fixed;
      top: 16px;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: top .25s ease, background .25s ease, box-shadow .25s ease;
    }

    .nav-shell {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 18px;
      min-height: 72px;
      padding: 12px 16px;
      border: 1px solid rgba(255, 248, 239, .52);
      border-radius: 28px;
      background: rgba(255, 248, 239, .58);
      box-shadow: 0 18px 48px rgba(107, 63, 42, .10);
      backdrop-filter: blur(18px);
    }

    .site-header.is-scrolled {
      top: 8px;
    }

    .site-header.is-scrolled .nav-shell {
      background: rgba(255, 248, 239, .94);
      border-color: rgba(107, 63, 42, .14);
      box-shadow: 0 18px 48px rgba(107, 63, 42, .16);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--dark);
      font-weight: 850;
      line-height: 1.2;
      white-space: nowrap;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, var(--cream) 0 18%, transparent 19%),
        conic-gradient(from 45deg, var(--coral), var(--apricot), var(--olive), var(--coral));
      box-shadow: inset 0 0 0 2px rgba(255, 248, 239, .86), 0 8px 18px rgba(184, 106, 69, .22);
      position: relative;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      right: 3px;
      top: 4px;
      border-radius: 50%;
      background: var(--amber);
      border: 2px solid var(--cream);
    }

    .desktop-menu {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
    }

    .desktop-menu a,
    .mobile-menu a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      padding: 9px 13px;
      border-radius: var(--radius-pill);
      color: rgba(47, 37, 34, .76);
      font-size: 14px;
      font-weight: 700;
    }

    .desktop-menu a:hover,
    .desktop-menu a:focus,
    .desktop-menu a.active,
    .mobile-menu a:hover,
    .mobile-menu a:focus,
    .mobile-menu a.active {
      color: var(--dark);
      background: rgba(255, 138, 91, .14);
      box-shadow: inset 0 0 0 1px rgba(255, 138, 91, .22);
    }

    .nav-search {
      width: 250px;
      min-height: 44px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 14px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: var(--radius-pill);
      background: rgba(255, 248, 239, .72);
      color: rgba(47, 37, 34, .58);
      font-size: 13px;
      overflow: hidden;
    }

    .nav-search span {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(107, 63, 42, .55);
      border-radius: 50%;
      position: relative;
      flex: 0 0 auto;
    }

    .nav-search span::after {
      content: "";
      position: absolute;
      width: 7px;
      height: 2px;
      right: -6px;
      bottom: -3px;
      border-radius: 2px;
      background: rgba(107, 63, 42, .55);
      transform: rotate(45deg);
    }

    .hamburger {
      display: none;
      margin-left: auto;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: 15px;
      background: rgba(255, 248, 239, .84);
      color: var(--dark);
      position: relative;
    }

    .hamburger span,
    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      height: 2px;
      border-radius: 2px;
      background: var(--dark);
      transition: transform .2s ease, opacity .2s ease;
    }

    .hamburger::before {
      top: 15px;
    }

    .hamburger span {
      top: 22px;
    }

    .hamburger::after {
      top: 29px;
    }

    .hamburger.is-open::before {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span {
      opacity: 0;
    }

    .hamburger.is-open::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-panel {
      display: none;
      width: min(calc(100% - 32px), var(--container));
      margin: 10px auto 0;
      padding: 16px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: 24px;
      background: rgba(255, 248, 239, .96);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
    }

    .mobile-menu {
      display: grid;
      gap: 8px;
    }

    .mobile-note {
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      color: rgba(47, 37, 34, .78);
      background: rgba(217, 130, 43, .12);
      border: 1px solid rgba(217, 130, 43, .24);
      font-size: 13px;
      line-height: 1.6;
    }

    .hero {
      min-height: 470px;
      padding: 128px 0 58px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 88px 0 0;
      background:
        radial-gradient(circle at 14% 64%, rgba(255, 138, 91, .18), transparent 20%),
        radial-gradient(circle at 74% 35%, rgba(242, 182, 109, .22), transparent 24%),
        linear-gradient(135deg, rgba(47, 37, 34, .94), rgba(107, 63, 42, .88));
      border-bottom-left-radius: 56px;
      border-bottom-right-radius: 56px;
      z-index: -1;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 96px 6% 0;
      opacity: .2;
      background-image:
        linear-gradient(90deg, transparent 0 49%, rgba(255, 248, 239, .44) 49% 50%, transparent 50% 100%),
        linear-gradient(0deg, transparent 0 49%, rgba(255, 248, 239, .34) 49% 50%, transparent 50% 100%);
      background-size: 76px 76px;
      z-index: -1;
    }

    .hero-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(340px, .78fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      color: var(--cream);
      padding: 26px 0 10px;
    }

    .breadcrumb-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .breadcrumb-pills a,
    .breadcrumb-pills span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 12px;
      border: 1px solid rgba(255, 248, 239, .22);
      border-radius: var(--radius-pill);
      color: rgba(255, 248, 239, .84);
      background: rgba(255, 248, 239, .08);
      font-size: 13px;
      line-height: 1.3;
    }

    .breadcrumb-pills span::before,
    .breadcrumb-pills a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--apricot);
    }

    h1 {
      max-width: 810px;
      margin: 0 0 18px;
      color: var(--cream);
      font-size: clamp(32px, 5vw, 50px);
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-copy p {
      max-width: 730px;
      margin: 0 0 24px;
      color: rgba(255, 248, 239, .78);
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .button,
    .button:visited {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 0;
      padding: 12px 18px;
      border: 0;
      border-radius: var(--radius-pill);
      font-weight: 850;
      line-height: 1.25;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .button.primary {
      color: #fff;
      background: linear-gradient(135deg, var(--coral), var(--apricot));
      box-shadow: 0 14px 28px rgba(255, 138, 91, .26);
    }

    .button.primary:hover,
    .button.primary:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(255, 138, 91, .34);
    }

    .button.secondary {
      color: var(--cream);
      background: rgba(255, 248, 239, .10);
      border: 1px solid rgba(255, 248, 239, .28);
    }

    .button.secondary:hover,
    .button.secondary:focus {
      color: var(--cream);
      background: rgba(255, 248, 239, .18);
      transform: translateY(-2px);
    }

    .button.light {
      color: var(--dark);
      background: var(--cream);
      border: 1px solid rgba(107, 63, 42, .12);
    }

    .button.light:hover,
    .button.light:focus {
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .focus-ring:focus,
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(255, 138, 91, .38);
      outline-offset: 3px;
    }

    .rank-panel {
      padding: 22px;
      border: 1px solid rgba(255, 248, 239, .18);
      border-radius: var(--radius-xl);
      background: rgba(255, 248, 239, .11);
      box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
      backdrop-filter: blur(18px);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .rank-panel::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px dashed rgba(255, 248, 239, .16);
      border-radius: 26px;
      pointer-events: none;
    }

    .rank-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 16px;
      position: relative;
    }

    .rank-head h2 {
      margin: 0;
      color: var(--cream);
      font-size: 22px;
      line-height: 1.32;
      font-weight: 850;
    }

    .rank-head p {
      margin: 4px 0 0;
      color: rgba(255, 248, 239, .66);
      font-size: 13px;
      line-height: 1.5;
    }

    .coord-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 74px;
      padding: 8px 10px;
      border-radius: var(--radius-pill);
      color: #fff;
      background: rgba(255, 138, 91, .24);
      border: 1px solid rgba(255, 138, 91, .42);
      font-size: 13px;
      font-weight: 850;
      white-space: nowrap;
    }

    .rank-list {
      display: grid;
      gap: 12px;
      position: relative;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border-radius: 20px;
      background: rgba(255, 248, 239, .12);
      border: 1px solid rgba(255, 248, 239, .14);
    }

    .rank-num {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      color: var(--dark);
      background: var(--apricot);
      font-weight: 900;
    }

    .rank-item strong {
      display: block;
      color: var(--cream);
      font-size: 15px;
      line-height: 1.35;
    }

    .rank-item small {
      display: block;
      color: rgba(255, 248, 239, .62);
      line-height: 1.45;
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 248, 239, .72);
      font-size: 12px;
      white-space: nowrap;
    }

    .status-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--olive);
      box-shadow: 0 0 0 5px rgba(122, 139, 87, .16);
    }

    .notice-strip {
      margin-top: 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 1px solid rgba(217, 130, 43, .28);
      border-radius: 22px;
      background: rgba(255, 248, 239, .88);
      color: rgba(47, 37, 34, .80);
      box-shadow: var(--shadow-soft);
    }

    .age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 52px;
      min-height: 34px;
      padding: 6px 11px;
      border-radius: var(--radius-pill);
      color: #fff;
      background: var(--amber);
      font-weight: 900;
      line-height: 1;
    }

    .filter-map {
      margin-top: -34px;
      position: relative;
      z-index: 2;
    }

    .filter-card {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 248, 239, .92);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .filter-row {
      display: grid;
      grid-template-columns: 1.2fr .85fr auto;
      gap: 14px;
      align-items: center;
    }

    .search-box {
      min-height: 52px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: 18px;
      background: #fff;
    }

    .search-box input {
      width: 100%;
      height: 50px;
      border: 0;
      box-shadow: none;
      background: transparent;
      color: var(--dark);
      margin: 0;
      padding: 0;
      font-size: 15px;
    }

    .search-box input:focus {
      border: 0;
      box-shadow: none;
      background: transparent;
    }

    .search-icon {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(107, 63, 42, .54);
      border-radius: 50%;
      position: relative;
      flex: 0 0 auto;
    }

    .search-icon::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 2px;
      right: -7px;
      bottom: -4px;
      background: rgba(107, 63, 42, .54);
      transform: rotate(45deg);
      border-radius: 2px;
    }

    .select-wrap select {
      height: 52px;
      margin: 0;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: 18px;
      background-color: #fff;
      color: var(--dark);
      box-shadow: none;
      font-size: 15px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: var(--radius-pill);
      color: rgba(47, 37, 34, .74);
      background: rgba(255, 248, 239, .78);
      font-size: 13px;
      font-weight: 700;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .tag::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coral);
    }

    .tag:hover,
    .tag.is-active {
      transform: translateY(-2px);
      border-color: rgba(255, 138, 91, .42);
      background: rgba(255, 138, 91, .12);
      color: var(--dark);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .entry-card {
      min-height: 230px;
      padding: 24px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(255, 248, 239, .96), rgba(247, 233, 210, .72));
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      right: -48px;
      top: -48px;
      width: 126px;
      height: 126px;
      border-radius: 50%;
      border: 1px dashed rgba(184, 106, 69, .30);
    }

    .entry-card::after {
      content: "";
      position: absolute;
      left: 26px;
      bottom: 20px;
      width: 58%;
      border-bottom: 1px dashed rgba(184, 106, 69, .22);
    }

    .entry-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 54px rgba(107, 63, 42, .15);
      border-color: rgba(255, 138, 91, .34);
    }

    .entry-card.tall {
      grid-row: span 2;
      min-height: 478px;
      background:
        radial-gradient(circle at 86% 16%, rgba(255, 138, 91, .18), transparent 28%),
        linear-gradient(145deg, rgba(255, 248, 239, .98), rgba(247, 233, 210, .78));
    }

    .entry-card.wide {
      grid-column: span 2;
      min-height: 226px;
    }

    .entry-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .node-icon {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 17px;
      color: var(--dark);
      background: rgba(255, 138, 91, .15);
      border: 1px solid rgba(255, 138, 91, .26);
      font-size: 22px;
      font-weight: 900;
    }

    .entry-card h3 {
      margin: 0 0 10px;
      color: var(--dark);
      font-size: 22px;
      line-height: 1.32;
      font-weight: 850;
      position: relative;
      z-index: 1;
    }

    .entry-card p {
      margin: 0 0 18px;
      color: rgba(47, 37, 34, .70);
      position: relative;
      z-index: 1;
    }

    .entry-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .entry-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(47, 37, 34, .74);
      font-size: 14px;
      line-height: 1.6;
    }

    .entry-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--olive);
      box-shadow: 0 0 0 4px rgba(122, 139, 87, .12);
    }

    .mini-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      color: var(--dark);
      background: rgba(255, 138, 91, .14);
      border: 1px solid rgba(255, 138, 91, .24);
      font-size: 13px;
      font-weight: 850;
      position: relative;
      z-index: 1;
    }

    .mini-button:hover,
    .mini-button:focus {
      color: #fff;
      background: var(--coral);
      transform: translateY(-2px);
    }

    .callout.safety-callout {
      margin: 0;
      padding: 24px;
      border: 1px solid rgba(217, 130, 43, .34);
      border-left: 6px solid var(--amber);
      border-radius: var(--radius-lg);
      background: rgba(255, 248, 239, .90);
      color: rgba(47, 37, 34, .76);
      box-shadow: var(--shadow-soft);
    }

    .safety-callout h2 {
      margin: 0 0 8px;
      color: var(--dark);
      font-size: 24px;
      font-weight: 850;
    }

    .route-board {
      position: relative;
      padding: 18px 0;
    }

    .route-board::before {
      content: "";
      position: absolute;
      left: 26px;
      top: 36px;
      bottom: 36px;
      border-left: 2px dashed rgba(184, 106, 69, .28);
    }

    .route-step {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      margin-bottom: 18px;
      position: relative;
    }

    .route-step:last-child {
      margin-bottom: 0;
    }

    .route-num {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      color: #fff;
      background: linear-gradient(135deg, var(--coral), var(--apricot));
      box-shadow: 0 12px 26px rgba(255, 138, 91, .25);
      font-weight: 900;
      z-index: 1;
    }

    .route-content {
      padding: 18px 20px;
      border: 1px solid rgba(107, 63, 42, .13);
      border-radius: var(--radius-lg);
      background: rgba(255, 248, 239, .86);
      box-shadow: var(--shadow-soft);
    }

    .route-content h3 {
      margin: 0 0 6px;
      font-size: 20px;
      color: var(--dark);
      font-weight: 850;
    }

    .route-content p {
      margin: 0;
      color: rgba(47, 37, 34, .70);
    }

    .community-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 24px;
      align-items: stretch;
    }

    .avatar-wall,
    .bubble-stack,
    .side-note,
    .faq-card {
      padding: 24px;
      border: 1px solid rgba(107, 63, 42, .14);
      border-radius: var(--radius-xl);
      background: rgba(255, 248, 239, .86);
      box-shadow: var(--shadow-soft);
    }

    .avatar-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      margin: 18px 0 22px;
    }

    .avatar {
      width: 48px;
      height: 48px;
      margin-right: -9px;
      border-radius: 50%;
      border: 3px solid var(--cream);
      background: linear-gradient(135deg, var(--coral), var(--apricot));
      box-shadow: 0 8px 18px rgba(107, 63, 42, .12);
    }

    .avatar:nth-child(2n) {
      background: linear-gradient(135deg, #EAD7C0, #7A8B57);
    }

    .avatar:nth-child(3n) {
      background: linear-gradient(135deg, #F2B66D, #B86A45);
    }

    .avatar:nth-child(4n) {
      background: linear-gradient(135deg, #FFF8EF, #FF8A5B);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .stat {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 138, 91, .10);
      border: 1px solid rgba(255, 138, 91, .18);
    }

    .stat strong {
      display: block;
      color: var(--dark);
      font-size: 24px;
      line-height: 1.15;
    }

    .stat span {
      display: block;
      color: rgba(47, 37, 34, .62);
      font-size: 13px;
    }

    .bubble-stack {
      display: grid;
      gap: 14px;
    }

    .review-bubble {
      position: relative;
      padding: 18px 18px 18px 20px;
      border: 1px solid rgba(107, 63, 42, .12);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 12px 24px rgba(107, 63, 42, .08);
    }

    .review-bubble::after {
      content: "";
      position: absolute;
      left: 28px;
      bottom: -8px;
      width: 16px;
      height: 16px;
      background: #fff;
      border-right: 1px solid rgba(107, 63, 42, .10);
      border-bottom: 1px solid rgba(107, 63, 42, .10);
      transform: rotate(45deg);
    }

    .review-bubble p {
      margin: 0 0 8px;
      color: rgba(47, 37, 34, .78);
    }

    .review-bubble small {
      color: rgba(47, 37, 34, .54);
      font-weight: 700;
    }

    .pagination-wrap {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .pagination {
      display: flex;
      gap: 8px;
      margin: 0;
    }

    .pagination li {
      margin: 0;
    }

    .pagination a,
    .pagination button,
    .pagination .current {
      min-width: 42px;
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(107, 63, 42, .14);
      color: rgba(47, 37, 34, .76);
      background: rgba(255, 248, 239, .84);
      font-weight: 800;
    }

    .pagination .current {
      color: #fff;
      background: var(--coral);
      border-color: var(--coral);
    }

    .pagination a:hover,
    .pagination a:focus {
      color: var(--dark);
      background: rgba(255, 138, 91, .14);
      transform: translateY(-2px);
    }

    .quick-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
    }

    .side-note h2,
    .faq-card h2,
    .avatar-wall h2 {
      margin: 0 0 12px;
      color: var(--dark);
      font-size: 24px;
      font-weight: 850;
      line-height: 1.25;
    }

    .side-note p,
    .avatar-wall p {
      margin: 0 0 16px;
      color: rgba(47, 37, 34, .70);
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid rgba(107, 63, 42, .13);
      border-radius: 20px;
      background: rgba(255, 248, 239, .88);
      overflow: hidden;
      box-shadow: 0 10px 22px rgba(107, 63, 42, .07);
    }

    .accordion-title {
      min-height: 58px;
      display: flex;
      align-items: center;
      padding: 17px 50px 17px 20px;
      border: 0;
      color: var(--dark);
      font-size: 16px;
      font-weight: 850;
      line-height: 1.45;
      background: transparent;
    }

    .accordion-title::before {
      right: 20px;
      color: var(--clay);
      font-size: 22px;
      margin-top: -10px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--clay);
      background: rgba(255, 138, 91, .09);
    }

    .is-active > .accordion-title {
      color: var(--dark);
      background: rgba(255, 138, 91, .10);
    }

    .accordion-content {
      padding: 0 20px 18px;
      border: 0;
      color: rgba(47, 37, 34, .72);
      background: transparent;
    }

    .cta-section {
      padding: 74px 0 92px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 44px;
      border: 1px solid rgba(255, 248, 239, .35);
      border-radius: 38px;
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 138, 91, .22), transparent 22%),
        linear-gradient(135deg, rgba(107, 63, 42, .98), rgba(47, 37, 34, .96));
      color: var(--cream);
      box-shadow: 0 28px 76px rgba(47, 37, 34, .20);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px dashed rgba(255, 248, 239, .18);
      border-radius: 28px;
      pointer-events: none;
    }

    .cta-panel h2 {
      max-width: 780px;
      margin: 0 0 12px;
      color: var(--cream);
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.2;
      font-weight: 900;
    }

    .cta-panel p {
      max-width: 800px;
      margin: 0 0 24px;
      color: rgba(255, 248, 239, .76);
    }

    .cta-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .cta-meta span {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      color: rgba(255, 248, 239, .82);
      background: rgba(255, 248, 239, .10);
      border: 1px solid rgba(255, 248, 239, .16);
      font-size: 13px;
      font-weight: 700;
    }

    .site-footer {
      padding: 62px 0 34px;
      color: rgba(255, 248, 239, .78);
      background: linear-gradient(135deg, #3A2B27, #2F2522);
    }

    .site-footer .brand {
      color: var(--cream);
      margin-bottom: 14px;
      font-size: 18px;
    }

    .site-footer p {
      max-width: 520px;
      margin: 0;
      color: rgba(255, 248, 239, .68);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-title {
      margin-bottom: 12px;
      color: var(--cream);
      font-weight: 850;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 248, 239, .66);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--apricot);
    }

    .disclaimer {
      margin-top: 38px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 248, 239, .14);
      color: rgba(255, 248, 239, .58);
      font-size: 13px;
      line-height: 1.7;
    }

    .reveal.age-modal {
      width: min(560px, calc(100% - 32px));
      padding: 0;
      border: 0;
      border-radius: 32px;
      background: var(--cream);
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(47, 37, 34, .28);
    }

    .age-modal-inner {
      padding: 32px;
      background:
        radial-gradient(circle at 86% 8%, rgba(255, 138, 91, .20), transparent 24%),
        linear-gradient(135deg, rgba(255, 248, 239, 1), rgba(247, 233, 210, .86));
    }

    .age-modal h2 {
      margin: 12px 0 10px;
      color: var(--dark);
      font-size: 28px;
      line-height: 1.25;
      font-weight: 900;
    }

    .age-modal p {
      margin: 0 0 22px;
      color: rgba(47, 37, 34, .72);
    }

    .modal-actions {
      display: grid;
      gap: 10px;
    }

    .button.exit {
      color: var(--dark);
      background: transparent;
      border: 1px solid rgba(107, 63, 42, .18);
    }

    .button.exit:hover,
    .button.exit:focus {
      background: rgba(107, 63, 42, .08);
    }

    @media (max-width: 1100px) {
      .nav-search {
        display: none;
      }

      .hero-panel,
      .community-wrap,
      .quick-grid {
        grid-template-columns: 1fr;
      }

      .entry-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .entry-card.tall {
        grid-row: span 1;
        min-height: 250px;
      }
    }

    @media (max-width: 860px) {
      .desktop-menu {
        display: none;
      }

      .hamburger {
        display: inline-block;
      }

      .mobile-panel.is-open {
        display: block;
      }

      .nav-shell {
        min-height: 66px;
        border-radius: 22px;
      }

      .brand {
        white-space: normal;
      }

      .brand span:last-child {
        max-width: 210px;
      }

      .hero {
        min-height: auto;
        padding-top: 116px;
      }

      .hero::before {
        border-bottom-left-radius: 36px;
        border-bottom-right-radius: 36px;
      }

      .hero-panel {
        gap: 18px;
      }

      .rank-item {
        grid-template-columns: 36px 1fr;
      }

      .rank-item .status-dot {
        grid-column: 2;
      }

      .filter-row {
        grid-template-columns: 1fr;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .entry-card.wide {
        grid-column: span 1;
      }

      .section {
        padding: 62px 0;
      }

      .cta-panel {
        padding: 30px 22px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .site-header {
        top: 10px;
      }

      .nav-shell {
        width: min(calc(100% - 20px), var(--container));
        padding: 10px;
      }

      .brand-mark {
        width: 30px;
        height: 30px;
      }

      .brand span:last-child {
        max-width: 170px;
        font-size: 14px;
      }

      .hero {
        padding-top: 104px;
      }

      .hero-copy p {
        font-size: 15px;
      }

      .hero-actions,
      .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .button {
        width: 100%;
      }

      .notice-strip {
        align-items: flex-start;
      }

      .filter-card,
      .entry-card,
      .avatar-wall,
      .bubble-stack,
      .side-note,
      .faq-card {
        padding: 18px;
        border-radius: 24px;
      }

      .stat-grid {
        grid-template-columns: 1fr;
      }

      .route-step {
        grid-template-columns: 44px 1fr;
        gap: 12px;
      }

      .route-num {
        width: 44px;
        height: 44px;
        border-radius: 16px;
      }

      .route-board::before {
        left: 21px;
      }

      .pagination {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
