/* roulang page: index */
:root {
      --bg: #070707;
      --bg-alt: #101010;
      --panel: rgba(15, 15, 15, 0.96);
      --panel-soft: rgba(20, 17, 11, 0.92);
      --line: rgba(216, 183, 106, 0.20);
      --line-strong: rgba(241, 211, 139, 0.38);
      --line-soft: rgba(255, 255, 255, 0.08);
      --gold: #d8b76a;
      --gold-2: #f1d38b;
      --red: #7a1e2c;
      --violet: #2b193d;
      --text: #f5f1e8;
      --muted: #aa9f8b;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
      --radius: 14px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.98)),
        repeating-linear-gradient(90deg, rgba(216,183,106,.045) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 120px);
      color: var(--text);
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(122,30,44,0.08), transparent 18%, transparent 82%, rgba(43,25,61,0.08));
      opacity: 0.9;
      z-index: 0;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }
    ::selection { background: rgba(216,183,106,.28); color: #fff8e1; }

    .container-shell {
      width: min(1280px, calc(100% - 2rem));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .panel {
      background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(10,10,10,.98));
      border: 1px solid rgba(216,183,106,.18);
      box-shadow: var(--shadow);
      border-radius: var(--radius);
    }

    .panel-soft {
      background: linear-gradient(180deg, rgba(24,20,14,.95), rgba(12,12,12,.96));
      border: 1px solid rgba(216,183,106,.16);
      border-radius: var(--radius);
    }

    .rule {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(216,183,106,.34), transparent);
    }

    .gold-outline {
      border: 1px solid rgba(216,183,106,.24);
      box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      border: 1px solid rgba(216,183,106,.22);
      background: rgba(255,255,255,.03);
      color: #f0e4bd;
      padding: 0.45rem 0.8rem;
      font-size: 12px;
      line-height: 1;
      letter-spacing: 0;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      border: 1px solid rgba(216,183,106,.18);
      background: rgba(255,255,255,.02);
      color: #e8debf;
      padding: 0.52rem 0.78rem;
      font-size: 12px;
      line-height: 1;
      white-space: nowrap;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .chip:hover {
      transform: translateY(-1px);
      border-color: rgba(241,211,139,.45);
      background: rgba(241,211,139,.06);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      min-height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(241,211,139,.3);
      background: linear-gradient(135deg, #f1d38b, #c99b46);
      color: #140f06;
      padding: .78rem 1rem;
      font-weight: 700;
      transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
      box-shadow: 0 12px 24px rgba(201,155,70,.18);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
      box-shadow: 0 14px 28px rgba(201,155,70,.24);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      min-height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(216,183,106,.22);
      background: rgba(255,255,255,.03);
      color: #f5f1e8;
      padding: .78rem 1rem;
      font-weight: 600;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      border-color: rgba(241,211,139,.42);
      background: rgba(241,211,139,.06);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .4rem;
      min-height: 44px;
      border-radius: 12px;
      border: 1px solid transparent;
      background: transparent;
      color: #e8debf;
      padding: .78rem .95rem;
      font-weight: 600;
      transition: color .18s ease, background .18s ease, border-color .18s ease;
    }

    .btn-ghost:hover {
      color: #fff7dc;
      background: rgba(255,255,255,.04);
      border-color: rgba(216,183,106,.16);
    }

    .input-dark {
      width: 100%;
      min-height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(216,183,106,.20);
      background: rgba(10,10,10,.88);
      color: #f5f1e8;
      padding: .8rem 1rem;
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .input-dark::placeholder { color: #8d8374; }
    .input-dark:focus {
      border-color: rgba(241,211,139,.55);
      box-shadow: 0 0 0 3px rgba(216,183,106,.16);
      background: rgba(13,13,13,.96);
    }

    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

    .faq-answer[hidden] { display: none; }

    .floating-action {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 45;
    }

    @media (max-width: 1023px) {
      .floating-action { left: 1rem; right: 1rem; }
    }

/* roulang page: category2 */
:root {
      --bg: #070707;
      --panel: #101010;
      --panel-2: #15110b;
      --text: #f5f1e8;
      --muted: #bfae94;
      --weak: #8f8576;
      --gold: #d8b76a;
      --gold-2: #f1d38b;
      --red: #7a1e2c;
      --purple: #2b193d;
      --green: #62b486;
      --line: rgba(216, 183, 106, .22);
      --line-soft: rgba(216, 183, 106, .14);
      --shadow: 0 22px 70px rgba(0, 0, 0, .44);
      --radius: 14px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      background:
        radial-gradient(circle at 12% 18%, rgba(122, 30, 44, .32), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(43, 25, 61, .46), transparent 30%),
        linear-gradient(180deg, #070707 0%, #0c0908 42%, #070707 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(rgba(216, 183, 106, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 183, 106, .035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.18));
      pointer-events: none;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    button:disabled {
      cursor: not-allowed;
      color: #8d8069;
      border-color: rgba(216, 183, 106, .12);
      background: rgba(255, 255, 255, .04);
    }

    .container-shell {
      width: min(100% - 32px, 1220px);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line-soft);
      background: rgba(7, 7, 7, .88);
      backdrop-filter: blur(16px);
    }

    .logo-mark {
      display: inline-flex;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      border: 1px solid rgba(216, 183, 106, .3);
      background: linear-gradient(180deg, rgba(216, 183, 106, .16), rgba(122, 30, 44, .18));
      color: var(--gold-2);
      font-weight: 800;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    }

    .nav-search {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 46px;
      border-radius: 13px;
      border: 1px solid rgba(216, 183, 106, .22);
      background: rgba(18, 15, 12, .76);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .nav-search:focus-within {
      border-color: rgba(241, 211, 139, .72);
      box-shadow: 0 0 0 4px rgba(216, 183, 106, .12);
      background: rgba(22, 18, 13, .92);
    }

    .nav-search input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      color: var(--text);
      background: transparent;
    }

    .nav-search input::placeholder {
      color: #8f8576;
    }

    .chip {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
      border-radius: 999px;
      border: 1px solid rgba(216, 183, 106, .14);
      background: rgba(255, 255, 255, .035);
      padding: 8px 14px;
      color: #d8cfbf;
      font-size: 14px;
      font-weight: 600;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .chip:hover,
    .chip.active {
      transform: translateY(-1px);
      border-color: rgba(241, 211, 139, .42);
      background: rgba(241, 211, 139, .08);
      color: #fff2c9;
      box-shadow: 0 8px 24px rgba(216, 183, 106, .08);
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 12px;
      padding: 10px 16px;
      font-size: 14px;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    .btn-primary {
      border: 1px solid rgba(255, 235, 177, .42);
      color: #171008;
      background: linear-gradient(135deg, #f1d38b, #d8b76a 58%, #b98845);
      box-shadow: 0 18px 36px rgba(216, 183, 106, .16);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 48px rgba(216, 183, 106, .22);
      filter: brightness(1.04);
    }

    .btn-secondary {
      border: 1px solid rgba(216, 183, 106, .24);
      color: #fff2cf;
      background: rgba(216, 183, 106, .06);
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      border-color: rgba(241, 211, 139, .5);
      background: rgba(216, 183, 106, .11);
      box-shadow: 0 14px 28px rgba(0,0,0,.24);
    }

    .btn-ghost {
      border: 1px solid rgba(255,255,255,.08);
      color: #d8cfbf;
      background: rgba(255,255,255,.035);
    }

    .btn-ghost:hover {
      color: #fff2cf;
      border-color: rgba(216,183,106,.28);
      background: rgba(255,255,255,.06);
    }

    .section {
      padding: 76px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid rgba(216, 183, 106, .26);
      background: rgba(216, 183, 106, .07);
      padding: 7px 12px;
      color: #f1d38b;
      font-size: 13px;
      font-weight: 700;
    }

    .hero-panel,
    .club-panel,
    .timeline-panel,
    .faq-card,
    .cta-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        rgba(12, 10, 9, .86);
      box-shadow: var(--shadow);
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      padding: 28px;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: auto -20% -42% 28%;
      height: 280px;
      background: radial-gradient(circle, rgba(241,211,139,.18), transparent 60%);
      pointer-events: none;
    }

    .badge-card {
      position: relative;
      overflow: hidden;
      min-height: 148px;
      border-radius: 14px;
      border: 1px solid rgba(216,183,106,.2);
      background: linear-gradient(145deg, rgba(21,17,11,.92), rgba(43,25,61,.32));
      padding: 18px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .badge-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-top: 1px solid rgba(255,242,207,.14);
      pointer-events: none;
    }

    .badge-card:hover {
      transform: translateY(-3px);
      border-color: rgba(241,211,139,.48);
      box-shadow: 0 24px 46px rgba(0,0,0,.34), 0 0 0 1px rgba(241,211,139,.06);
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(98,180,134,.12);
    }

    .status-dot.warn {
      background: var(--gold-2);
      box-shadow: 0 0 0 4px rgba(241,211,139,.12);
    }

    .status-dot.red {
      background: #d36a76;
      box-shadow: 0 0 0 4px rgba(122,30,44,.2);
    }

    .metric {
      border-radius: 14px;
      border: 1px solid rgba(216,183,106,.17);
      background: rgba(255,255,255,.035);
      padding: 18px;
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr) auto;
      gap: 18px;
      border-bottom: 1px solid rgba(216,183,106,.12);
      padding: 22px;
      transition: background .2s ease;
    }

    .timeline-item:last-child {
      border-bottom: 0;
    }

    .timeline-item:hover {
      background: rgba(241,211,139,.035);
    }

    .timeline-index {
      display: flex;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      border: 1px solid rgba(216,183,106,.28);
      color: var(--gold-2);
      background: rgba(216,183,106,.08);
      font-weight: 900;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      border: 1px solid rgba(216,183,106,.16);
      background: rgba(255,255,255,.035);
      padding: 5px 9px;
      color: #cfc3ad;
      font-size: 12px;
      font-weight: 700;
    }

    .rule {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(216,183,106,.32), transparent);
    }

    .form-control {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(216,183,106,.2);
      background: rgba(10,10,10,.72);
      padding: 12px 13px;
      color: var(--text);
      outline: 0;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .form-control:focus {
      border-color: rgba(241,211,139,.68);
      box-shadow: 0 0 0 4px rgba(216,183,106,.12);
      background: rgba(15,13,11,.92);
    }

    .form-control::placeholder {
      color: #827767;
    }

    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      text-align: left;
      color: #f5f1e8;
      font-weight: 800;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 18px;
      color: #bfae94;
      font-size: 14px;
      line-height: 1.8;
    }

    .faq-card.open .faq-answer {
      display: block;
    }

    .faq-card.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-icon {
      color: var(--gold-2);
      transition: transform .2s ease;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0,0,0,.72);
      backdrop-filter: blur(10px);
    }

    .modal-backdrop.open {
      display: flex;
    }

    .modal-card {
      width: min(100%, 560px);
      max-height: 90vh;
      overflow: auto;
      border-radius: 18px;
      border: 1px solid rgba(241,211,139,.34);
      background:
        linear-gradient(180deg, rgba(216,183,106,.08), transparent 28%),
        #0b0a09;
      box-shadow: 0 36px 90px rgba(0,0,0,.62);
    }

    .mobile-scroll {
      scrollbar-width: none;
    }

    .mobile-scroll::-webkit-scrollbar {
      display: none;
    }

    @media (max-width: 1024px) {
      .section {
        padding: 58px 0;
      }

      .timeline-item {
        grid-template-columns: 58px minmax(0, 1fr);
      }

      .timeline-item .timeline-action {
        grid-column: 2;
      }
    }

    @media (max-width: 768px) {
      .container-shell {
        width: min(100% - 24px, 1220px);
      }

      .hero-panel {
        padding: 20px;
      }

      .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
      }

      .timeline-item .timeline-action {
        grid-column: auto;
      }

      .timeline-index {
        width: 44px;
        height: 44px;
      }

      .modal-backdrop {
        align-items: flex-end;
        padding: 0;
      }

      .modal-card {
        max-height: 90vh;
        border-radius: 18px 18px 0 0;
      }
    }

    @media (max-width: 520px) {
      .btn-primary,
      .btn-secondary,
      .btn-ghost {
        width: 100%;
      }

      .chip {
        min-height: 36px;
        padding: 7px 12px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#070707;
      --bg-soft:#101010;
      --bg-panel:#15110B;
      --line:rgba(216,183,106,.20);
      --line-strong:rgba(216,183,106,.34);
      --text:#F5F1E8;
      --muted:#BFAF94;
      --muted-2:#9E9483;
      --gold:#D8B76A;
      --gold-2:#F1D38B;
      --wine:#7A1E2C;
      --violet:#2B193D;
      --shadow:0 18px 40px rgba(0,0,0,.36);
      --radius:14px;
    }
    html{scroll-behavior:smooth}
    body{
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      background:
        linear-gradient(135deg, rgba(122,30,44,.10), transparent 24%),
        linear-gradient(225deg, rgba(43,25,61,.14), transparent 28%),
        linear-gradient(180deg, rgba(16,16,16,.94) 0%, rgba(7,7,7,1) 28%),
        var(--bg);
      color:var(--text);
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
      background-size: 100% 34px, 34px 100%;
      opacity:.14;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.22));
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button, input, select, textarea{font:inherit}
    ::selection{background:rgba(241,211,139,.28);color:#fff}
    .container-shell{max-width:1240px;margin:0 auto;padding-left:16px;padding-right:16px}
    .panel{
      background: linear-gradient(180deg, rgba(16,16,16,.98), rgba(11,11,11,.98));
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .panel-soft{
      background: linear-gradient(180deg, rgba(21,17,11,.88), rgba(12,12,12,.96));
      border:1px solid rgba(216,183,106,.14);
      border-radius:12px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      min-height:38px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.18);
      background:rgba(255,255,255,.015);
      color:#D8CFBF;
      padding:0 .95rem;
      font-size:13px;
      line-height:1;
      transition:transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .chip:hover,.chip:focus-visible{
      background:rgba(241,211,139,.08);
      border-color:rgba(241,211,139,.34);
      color:#FFF2CF;
      transform:translateY(-1px);
      box-shadow:0 0 0 1px rgba(241,211,139,.12) inset;
    }
    .chip.active{
      background:rgba(241,211,139,.11);
      border-color:rgba(241,211,139,.42);
      color:#FFF2CF;
      box-shadow:0 0 0 1px rgba(241,211,139,.20) inset;
    }
    .btn-primary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      min-height:44px;
      border-radius:12px;
      border:1px solid rgba(241,211,139,.38);
      background:linear-gradient(180deg, rgba(241,211,139,1), rgba(216,183,106,.96));
      color:#1a1207;
      padding:0 1rem;
      font-weight:700;
      transition:transform .18s ease, filter .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow:0 10px 24px rgba(216,183,106,.14);
    }
    .btn-primary:hover,.btn-primary:focus-visible{
      transform:translateY(-1px);
      filter:brightness(1.02);
      border-color:rgba(255,241,199,.62);
      box-shadow:0 0 0 1px rgba(255,241,199,.12), 0 14px 32px rgba(216,183,106,.18);
    }
    .btn-secondary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      min-height:44px;
      border-radius:12px;
      border:1px solid rgba(216,183,106,.28);
      background:rgba(255,255,255,.02);
      color:#F3E9D3;
      padding:0 1rem;
      font-weight:700;
      transition:transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
    }
    .btn-secondary:hover,.btn-secondary:focus-visible{
      transform:translateY(-1px);
      background:rgba(241,211,139,.08);
      border-color:rgba(241,211,139,.44);
      color:#FFF2CF;
    }
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.35rem;
      min-height:40px;
      border-radius:10px;
      border:1px solid rgba(216,183,106,.18);
      background:transparent;
      color:#DCCCAD;
      padding:0 .85rem;
      font-weight:600;
      transition:transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
    }
    .btn-ghost:hover,.btn-ghost:focus-visible{
      transform:translateY(-1px);
      background:rgba(216,183,106,.08);
      color:#FFF2CF;
      border-color:rgba(241,211,139,.34);
    }
    .input-field{
      width:100%;
      min-height:44px;
      border-radius:12px;
      border:1px solid rgba(216,183,106,.22);
      background:rgba(7,7,7,.84);
      color:var(--text);
      padding:0 .95rem;
      outline:none;
      transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    }
    .input-field::placeholder{color:#8E8576}
    .input-field:focus{
      border-color:rgba(241,211,139,.72);
      box-shadow:0 0 0 4px rgba(216,183,106,.12);
      background:rgba(7,7,7,.96);
    }
    .textarea-field{
      width:100%;
      min-height:120px;
      border-radius:12px;
      border:1px solid rgba(216,183,106,.22);
      background:rgba(7,7,7,.84);
      color:var(--text);
      padding:.9rem .95rem;
      outline:none;
      resize:vertical;
      transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    }
    .textarea-field:focus{
      border-color:rgba(241,211,139,.72);
      box-shadow:0 0 0 4px rgba(216,183,106,.12);
      background:rgba(7,7,7,.96);
    }
    .rule{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(216,183,106,.28), transparent);
    }
    .eyebrow{
      color:#F1D38B;
      font-size:12px;
      font-weight:700;
      letter-spacing:.08em;
    }
    .section-title{
      font-size:clamp(24px, 3vw, 36px);
      line-height:1.15;
      font-weight:800;
      color:#F5F1E8;
      letter-spacing:0;
    }
    .section-copy{
      color:#BFAF94;
      line-height:1.8;
      font-size:15px;
    }
    .metric{
      border:1px solid rgba(216,183,106,.16);
      background:linear-gradient(180deg, rgba(21,17,11,.88), rgba(11,11,11,.94));
      border-radius:12px;
      padding:14px;
      min-height:100px;
    }
    .metric-num{
      display:block;
      font-size:clamp(24px, 4vw, 34px);
      line-height:1;
      font-weight:800;
      color:#F1D38B;
      letter-spacing:0;
    }
    .metric-label{margin-top:8px;color:#D8CFBF;font-size:13px;line-height:1.55}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      min-height:28px;
      padding:0 .55rem;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.24);
      background:rgba(216,183,106,.08);
      color:#F2DEAC;
      font-size:12px;
      font-weight:700;
    }
    .status-dot{
      width:8px;height:8px;border-radius:999px;background:var(--gold-2);box-shadow:0 0 0 3px rgba(241,211,139,.12);
    }
    .entry-card{
      border:1px solid rgba(216,183,106,.16);
      background:linear-gradient(180deg, rgba(17,17,17,.98), rgba(10,10,10,.98));
      border-radius:14px;
      box-shadow:0 16px 36px rgba(0,0,0,.26);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(241,211,139,.32);
      box-shadow:0 0 0 1px rgba(241,211,139,.08), 0 20px 42px rgba(0,0,0,.34);
    }
    .entry-card.is-hidden{display:none}
    .filter-pill{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      min-height:40px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.18);
      background:rgba(255,255,255,.015);
      color:#D8CFBF;
      padding:0 .85rem;
      font-size:13px;
      transition:all .18s ease;
    }
    .filter-pill input{accent-color:#F1D38B}
    .filter-pill:hover{
      background:rgba(241,211,139,.07);
      border-color:rgba(241,211,139,.28);
      color:#FFF2CF;
    }
    .soft-table{
      border:1px solid rgba(216,183,106,.14);
      border-radius:14px;
      overflow:hidden;
      background:rgba(255,255,255,.012);
    }
    .soft-table .row-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 16px;
      border-top:1px solid rgba(216,183,106,.10);
    }
    .soft-table .row-item:first-child{border-top:0}
    .soft-table .row-item:nth-child(even){background:rgba(255,255,255,.012)}
    details.faq{
      border:1px solid rgba(216,183,106,.16);
      border-radius:14px;
      background:linear-gradient(180deg, rgba(16,16,16,.96), rgba(10,10,10,.98));
      overflow:hidden;
    }
    details.faq + details.faq{margin-top:12px}
    details.faq summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 18px;
      font-size:15px;
      font-weight:700;
      color:#F5F1E8;
    }
    details.faq summary::-webkit-details-marker{display:none}
    details.faq[open] summary{
      color:#FFF2CF;
      border-bottom:1px solid rgba(216,183,106,.14);
      background:rgba(241,211,139,.04);
    }
    details.faq .faq-body{
      padding:16px 18px 18px;
      color:#BFAF94;
      line-height:1.85;
      font-size:14px;
    }
    .modal-mask{
      position:fixed;
      inset:0;
      z-index:80;
      display:none;
      align-items:flex-end;
      justify-content:center;
      background:rgba(0,0,0,.74);
      padding:16px;
    }
    .modal-mask.open{display:flex}
    .modal-shell{
      width:min(100%, 760px);
      max-height:90vh;
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(216,183,106,.24);
      background:linear-gradient(180deg, rgba(17,17,17,.98), rgba(8,8,8,.99));
      box-shadow:0 28px 80px rgba(0,0,0,.48);
    }
    .toast{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:90;
      min-width:240px;
      max-width:min(90vw, 360px);
      border-radius:14px;
      border:1px solid rgba(216,183,106,.24);
      background:rgba(10,10,10,.96);
      color:#F5F1E8;
      box-shadow:0 18px 42px rgba(0,0,0,.36);
      display:none;
    }
    .toast.show{display:block}
    .mobile-drawer{
      border-top:1px solid rgba(216,183,106,.14);
      background:rgba(7,7,7,.95);
      backdrop-filter: blur(10px);
    }
    @media (max-width: 1024px){
      .container-shell{padding-left:14px;padding-right:14px}
    }
    @media (max-width: 640px){
      .section-copy{font-size:14px}
      details.faq summary{padding:16px}
      details.faq .faq-body{padding:0 16px 16px}
    }
