/* roulang page: index */
:root {
      --ink: #0d0b12;
      --ink-2: #15121d;
      --panel: #1b1722;
      --panel-2: #211c2a;
      --gold: #d9ad61;
      --gold-bright: #f1ce88;
      --gold-dim: #8f6c38;
      --violet: #8e5bb4;
      --cyan: #4aa99e;
      --rose: #b45778;
      --text: #f8f1e5;
      --muted: #b4a9bb;
      --faint: #766d7e;
      --line: rgba(217, 173, 97, .28);
      --line-soft: rgba(255,255,255,.09);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --shadow: 0 24px 70px rgba(0,0,0,.36);
      --container: 1200px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      min-width: 320px;
      color: var(--text);
      background:
        radial-gradient(circle at 76% 3%, rgba(111,62,134,.18), transparent 28rem),
        linear-gradient(145deg, #0c0a10 0%, #120e18 48%, #0a090d 100%);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0;
    }
    body:after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, black, transparent 70%);
    }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    button { cursor: pointer; }
    img { max-width: 100%; display: block; }
    ::selection { background: var(--gold); color: var(--ink); }
    :focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

    .container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid transparent;
      transition: .3s ease;
    }
    .site-header.scrolled {
      background: rgba(13,11,18,.88);
      border-bottom-color: var(--line-soft);
      backdrop-filter: blur(18px);
    }
    .nav {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-width: 220px;
      font-weight: 800;
      font-size: 17px;
      letter-spacing: .01em;
    }
    .brand-mark {
      width: 35px;
      height: 35px;
      display: grid;
      place-items: center;
      border: 1px solid var(--gold);
      border-radius: 10px;
      color: var(--gold-bright);
      font-size: 13px;
      box-shadow: inset 0 0 14px rgba(217,173,97,.14), 0 0 20px rgba(217,173,97,.12);
    }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      position: relative;
      padding: 9px 14px;
      color: var(--muted);
      font-size: 14px;
      border-radius: 999px;
      transition: .25s ease;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--gold-bright);
      background: rgba(217,173,97,.11);
    }
    .nav-links a.active:after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 2px;
      height: 1px;
      background: var(--gold);
    }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      color: var(--muted);
      font-size: 12px;
      border: 1px solid var(--line-soft);
      border-radius: 999px;
      white-space: nowrap;
    }
    .status i, .state-dot {
      width: 7px;
      height: 7px;
      display: inline-block;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 9px var(--cyan);
    }
    .menu-toggle { display: none; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 21px;
      color: var(--ink);
      background: linear-gradient(135deg, var(--gold-bright), var(--gold));
      border: 1px solid var(--gold-bright);
      border-radius: 14px;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 10px 24px rgba(217,173,97,.13), inset 0 1px rgba(255,255,255,.45);
      transition: .25s ease;
    }
    .btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
    .btn.secondary {
      color: var(--gold-bright);
      background: rgba(255,255,255,.025);
      border-color: var(--line);
      box-shadow: none;
    }
    .btn.secondary:hover { background: rgba(142,91,180,.14); }
    .btn.small { min-height: 38px; padding: 0 15px; border-radius: 11px; font-size: 13px; }

    .hero {
      position: relative;
      min-height: 665px;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 76px 0 92px;
    }
    .hero:before {
      content: "";
      position: absolute;
      width: 62%;
      height: 1px;
      top: 20%;
      right: -8%;
      background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
      transform: rotate(-15deg);
      opacity: .65;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .93fr) minmax(460px, 1.07fr);
      align-items: center;
      gap: 70px;
    }
    .eyebrow, .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--gold-bright);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .eyebrow:before, .section-kicker:before {
      content: "";
      width: 27px;
      height: 1px;
      background: var(--gold);
    }
    h1, h2, h3 { line-height: 1.2; font-weight: 850; }
    h1 {
      max-width: 650px;
      margin: 22px 0 22px;
      font-size: clamp(38px, 5vw, 60px);
      letter-spacing: -.025em;
    }
    .hero-copy > p {
      max-width: 600px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 30px; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 20px; color: var(--faint); font-size: 13px; }
    .trust-item { display: flex; align-items: center; gap: 8px; }
    .trust-item b { color: var(--text); font-weight: 650; }

    .matrix {
      position: relative;
      padding: 24px;
      background: linear-gradient(145deg, rgba(33,28,42,.94), rgba(18,15,24,.96));
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06);
    }
    .matrix:before, .matrix:after {
      content: "";
      position: absolute;
      width: 48px; height: 48px;
      border-color: var(--gold);
      opacity: .75;
    }
    .matrix:before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; border-radius: 26px 0 0 0; }
    .matrix:after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 26px 0; }
    .matrix-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 19px; border-bottom: 1px solid var(--line-soft); }
    .matrix-title { display: flex; gap: 10px; align-items: center; font-weight: 750; }
    .seal { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-size: 11px; text-align: center; line-height: 1.2; }
    .matrix-code { color: var(--faint); font-size: 12px; }
    .channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-top: 19px; }
    .channel {
      min-height: 124px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 16px;
      background: rgba(255,255,255,.035);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-md);
      transition: .25s ease;
    }
    .channel:hover { transform: translateY(-3px); border-color: var(--gold-dim); background: rgba(217,173,97,.07); }
    .channel.featured { grid-column: span 2; min-height: 100px; background: linear-gradient(105deg, rgba(217,173,97,.13), rgba(142,91,180,.1)); border-color: var(--line); }
    .channel-head { display: flex; justify-content: space-between; color: var(--faint); font-size: 11px; }
    .channel h3 { margin: 9px 0 4px; font-size: 17px; }
    .channel p { color: var(--muted); font-size: 12px; line-height: 1.55; }
    .channel-foot { display: flex; align-items: center; gap: 6px; color: var(--gold-bright); font-size: 11px; }
    .progress { height: 3px; margin-top: 11px; overflow: hidden; background: rgba(255,255,255,.08); border-radius: 9px; }
    .progress span { display: block; width: 76%; height: 100%; background: var(--gold); }

    .section { padding: 94px 0; position: relative; }
    .section.alt { background: rgba(255,255,255,.018); border-top: 1px solid rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.035); }
    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
    .section-head h2 { margin-top: 12px; font-size: clamp(28px, 3vw, 38px); }
    .section-head p { max-width: 530px; color: var(--muted); font-size: 15px; }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
    .steps:before { content: ""; position: absolute; top: 42px; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, var(--gold-dim), var(--violet), var(--gold-dim)); opacity: .55; }
    .step {
      position: relative;
      padding: 27px 25px 25px;
      background: var(--panel);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      transition: .25s ease;
    }
    .step:hover { border-color: var(--line); box-shadow: 0 17px 36px rgba(0,0,0,.2); }
    .number { width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); background: var(--gold); border-radius: 12px; font-weight: 900; font-size: 12px; position: relative; z-index: 1; }
    .step h3 { margin: 21px 0 9px; font-size: 20px; }
    .step p { color: var(--muted); font-size: 14px; line-height: 1.75; }
    .tag {
      display: inline-flex;
      align-items: center;
      padding: 4px 9px;
      margin-top: 18px;
      color: var(--gold-bright);
      background: rgba(217,173,97,.1);
      border: 1px solid rgba(217,173,97,.25);
      border-radius: 999px;
      font-size: 11px;
    }

    .proof-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
    .proof-card {
      min-height: 260px;
      padding: 29px;
      background: linear-gradient(145deg, var(--panel-2), var(--panel));
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      transition: .25s ease;
    }
    .proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .proof-card h3 { max-width: 410px; margin: 23px 0 12px; font-size: 24px; }
    .proof-card p { color: var(--muted); font-size: 14px; max-width: 510px; }
    .proof-meta { display: flex; justify-content: space-between; color: var(--faint); font-size: 12px; }
    .proof-meta strong { color: var(--gold-bright); font-weight: 700; }
    .proof-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--gold-bright); font-size: 13px; font-weight: 700; }
    .proof-side { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .metric { padding: 21px; background: rgba(255,255,255,.035); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
    .metric:last-child { grid-column: span 2; }
    .metric strong { display: block; color: var(--gold-bright); font-size: 28px; line-height: 1.2; }
    .metric span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

    .topic-band { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: center; }
    .topic-band h2 { margin: 13px 0 14px; font-size: 34px; }
    .topic-band p { color: var(--muted); }
    .topic-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .topic {
      display: flex; align-items: center; justify-content: space-between;
      padding: 17px 18px; color: var(--text); background: var(--panel);
      border: 1px solid var(--line-soft); border-radius: var(--radius-md); transition: .25s ease;
    }
    .topic:hover { border-color: var(--gold); color: var(--gold-bright); }
    .topic small { color: var(--faint); }

    .updates { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
    .update-list, .notice { padding: 28px; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-xl); }
    .update-item { display: flex; gap: 17px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
    .update-item:first-child { padding-top: 0; }
    .update-item:last-child { border-bottom: 0; padding-bottom: 0; }
    .update-date { min-width: 70px; color: var(--gold-bright); font-size: 12px; }
    .update-item h3 { margin-bottom: 4px; font-size: 16px; }
    .update-item p, .notice p { color: var(--muted); font-size: 13px; line-height: 1.7; }
    .notice h3 { margin-bottom: 13px; font-size: 21px; }
    .notice ul { list-style: none; margin-top: 18px; }
    .notice li { display: flex; gap: 9px; padding: 9px 0; color: var(--muted); font-size: 13px; }
    .notice li:before { content: "◆"; color: var(--gold); font-size: 8px; margin-top: 5px; }

    .faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 55px; align-items: start; }
    .faq-intro { position: sticky; top: 115px; }
    .faq-intro h2 { margin: 13px 0; font-size: 34px; }
    .faq-intro p { color: var(--muted); font-size: 14px; }
    .faq-badge { display: inline-flex; margin-top: 23px; padding: 12px 15px; color: var(--gold-bright); border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(217,173,97,.06); font-size: 13px; }
    .faq-item { margin-bottom: 11px; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-md); overflow: hidden; }
    .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 21px; color: var(--text); background: transparent; border: 0; text-align: left; font-weight: 700; }
    .faq-question span:last-child { color: var(--gold-bright); font-size: 22px; font-weight: 400; transition: .2s ease; }
    .faq-item.open { border-color: var(--gold-dim); }
    .faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
    .faq-answer { display: none; padding: 0 21px 20px; color: var(--muted); font-size: 14px; line-height: 1.8; }
    .faq-item.open .faq-answer { display: block; }

    .cta-section { padding: 94px 0 110px; }
    .cta {
      position: relative;
      overflow: hidden;
      padding: 48px 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      background: linear-gradient(110deg, rgba(217,173,97,.13), rgba(142,91,180,.13) 54%, rgba(21,18,29,.95));
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }
    .cta:after { content: "91"; position: absolute; right: 28%; bottom: -40px; color: rgba(217,173,97,.06); font-size: 180px; font-weight: 900; line-height: 1; pointer-events: none; }
    .cta h2 { margin: 11px 0 12px; font-size: 34px; }
    .cta p { max-width: 600px; color: var(--muted); font-size: 14px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 11px; position: relative; z-index: 1; }
    .benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
    .benefit { padding: 5px 10px; color: var(--gold-bright); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; }

    .site-footer { padding: 40px 0 28px; border-top: 1px solid var(--line); background: rgba(5,4,8,.55); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 45px; padding-bottom: 34px; }
    .footer-brand p { max-width: 360px; margin-top: 15px; color: var(--muted); font-size: 13px; line-height: 1.8; }
    .footer-title { margin-bottom: 13px; color: var(--gold-bright); font-size: 13px; font-weight: 750; }
    .footer-links { list-style: none; display: grid; gap: 7px; }
    .footer-links a { color: var(--muted); font-size: 13px; transition: .2s ease; }
    .footer-links a:hover { color: var(--gold-bright); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: var(--faint); font-size: 12px; }
    .floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 15; display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; color: var(--ink); background: var(--gold); border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.4); font-size: 13px; font-weight: 800; transition: .25s ease; }
    .floating-cta:hover { background: var(--gold-bright); transform: translateY(-2px); }

    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 45px; }
      .hero { min-height: auto; }
      .hero-copy { max-width: 760px; }
      .topic-band, .faq-layout { grid-template-columns: 1fr; gap: 32px; }
      .faq-intro { position: static; }
    }
    @media (max-width: 768px) {
      .container { width: min(calc(100% - 40px), var(--container)); }
      .nav { min-height: 72px; }
      .brand { min-width: auto; font-size: 15px; }
      .nav-actions { display: none; }
      .menu-toggle {
        display: grid; place-items: center; width: 42px; height: 42px; color: var(--gold-bright);
        background: transparent; border: 1px solid var(--line); border-radius: 12px; font-size: 21px;
      }
      .nav-links {
        display: none; position: absolute; top: 72px; left: 20px; right: 20px; padding: 12px;
        flex-direction: column; align-items: stretch; background: rgba(21,18,29,.98);
        border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 12px 14px; }
      .hero { padding: 60px 0 70px; }
      h1 { font-size: 38px; }
      .hero-copy > p { font-size: 15px; }
      .section, .cta-section { padding: 68px 0; }
      .section-head { display: block; }
      .section-head p { margin-top: 16px; }
      .steps, .proof-grid, .updates { grid-template-columns: 1fr; }
      .steps:before { top: 40px; bottom: 40px; left: 20px; width: 1px; height: auto; background: linear-gradient(var(--gold-dim), var(--violet), var(--gold-dim)); }
      .step { padding-left: 25px; }
      .proof-side { grid-template-columns: repeat(2, 1fr); }
      .topic-list { grid-template-columns: 1fr; }
      .cta { display: block; padding: 34px 25px; }
      .cta-actions { margin-top: 25px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .footer-brand { grid-column: span 2; }
      .footer-bottom { display: block; }
      .footer-bottom span { display: block; margin-top: 8px; }
    }
    @media (max-width: 520px) {
      .hero-actions .btn, .cta-actions .btn { width: 100%; }
      .matrix { padding: 17px; }
      .channel-grid { gap: 9px; }
      .channel { padding: 13px; min-height: 130px; }
      .channel h3 { font-size: 15px; }
      .proof-side { grid-template-columns: 1fr; }
      .metric:last-child { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .floating-cta { right: 15px; bottom: 15px; }
    }

/* roulang page: category2 */
:root {
      --bg: #080706;
      --bg-2: #120b14;
      --panel: rgba(24, 20, 18, .86);
      --panel-2: rgba(35, 27, 25, .78);
      --gold: #d8b86a;
      --gold-2: #f3d58a;
      --gold-3: #8e6b2e;
      --text: #f7f0df;
      --muted: #b9ad99;
      --soft: #786f63;
      --line: rgba(216, 184, 106, .28);
      --line-soft: rgba(255, 255, 255, .08);
      --purple: #8d4dff;
      --teal: #1eb7a2;
      --rose: #d44d8f;
      --radius: 24px;
      --radius-sm: 16px;
      --shadow: 0 24px 80px rgba(0, 0, 0, .45), 0 0 0 1px rgba(216, 184, 106, .08);
      --shadow-gold: 0 18px 48px rgba(0, 0, 0, .48), 0 0 32px rgba(216, 184, 106, .12);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(141, 77, 255, .16), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(216, 184, 106, .14), transparent 26%),
        linear-gradient(145deg, #070606 0%, #120913 46%, #080706 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .28;
      background-image:
        linear-gradient(rgba(216, 184, 106, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 184, 106, .06) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 78%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 4px;
    }

    .container {
      max-width: var(--container);
      padding-left: 24px;
      padding-right: 24px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 16px 0;
      background: rgba(8, 7, 6, .72);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(216, 184, 106, .14);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 64px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(216, 184, 106, .24);
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(26, 22, 19, .88), rgba(9, 8, 8, .76));
      box-shadow: 0 14px 48px rgba(0, 0, 0, .36);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 900;
      color: var(--text);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      color: #161009;
      background: linear-gradient(135deg, var(--gold-2), var(--gold) 54%, var(--gold-3));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 0 24px rgba(216,184,106,.26);
      border: 1px solid rgba(255,255,255,.28);
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 5px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .035);
      border: 1px solid rgba(255, 255, 255, .06);
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 7px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--text);
      background: rgba(216, 184, 106, .14);
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      border-radius: 99px;
      background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(216, 184, 106, .08);
      border: 1px solid rgba(216, 184, 106, .26);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 14px rgba(30, 183, 162, .9);
    }

    .btn-gold,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 11px 18px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 900;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-gold {
      color: #171006;
      background: linear-gradient(135deg, #fff0b9 0%, var(--gold-2) 38%, var(--gold) 66%, #9f7630 100%);
      border: 1px solid rgba(255, 244, 190, .58);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 14px 34px rgba(216,184,106,.18);
    }

    .btn-gold:hover {
      color: #0f0a04;
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 18px 42px rgba(216,184,106,.27);
    }

    .btn-ghost {
      color: var(--gold-2);
      background: rgba(13, 11, 10, .72);
      border: 1px solid rgba(216, 184, 106, .36);
    }

    .btn-ghost:hover {
      color: var(--text);
      transform: translateY(-2px);
      background: rgba(141, 77, 255, .16);
      border-color: rgba(243, 213, 138, .66);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 16px;
      color: var(--gold-2);
      background: rgba(216, 184, 106, .08);
      border: 1px solid rgba(216, 184, 106, .24);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 82px 0;
      position: relative;
    }

    .hero {
      padding: 72px 0 64px;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      border: 1px solid rgba(216, 184, 106, .26);
      background:
        linear-gradient(135deg, rgba(216,184,106,.12), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(141,77,255,.18), transparent 32%),
        linear-gradient(135deg, rgba(29, 22, 20, .94), rgba(12, 9, 10, .94));
      box-shadow: var(--shadow);
      padding: 34px;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, transparent 0 14%, rgba(216,184,106,.1) 14.2%, transparent 14.4%),
        linear-gradient(180deg, transparent 0 58%, rgba(216,184,106,.08) 58.2%, transparent 58.4%);
      opacity: .75;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 34px;
      padding: 6px 12px;
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(216, 184, 106, .1);
      border: 1px solid rgba(216, 184, 106, .3);
      font-size: 13px;
      font-weight: 900;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--rose);
      box-shadow: 0 0 16px rgba(212, 77, 143, .78);
    }

    h1 {
      margin: 18px 0 18px;
      font-size: clamp(32px, 4.7vw, 54px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--text);
    }

    .lead {
      max-width: 680px;
      color: #d7cbb6;
      font-size: 17px;
      line-height: 1.85;
      margin: 0;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .quick-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 28px;
    }

    .strip-item {
      padding: 14px 15px;
      border-radius: 18px;
      border: 1px solid rgba(216, 184, 106, .2);
      background: rgba(0, 0, 0, .24);
    }

    .strip-item strong {
      display: block;
      font-size: 18px;
      color: var(--gold-2);
      line-height: 1.2;
    }

    .strip-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 4px;
    }

    .dashboard {
      position: relative;
      z-index: 1;
      padding: 20px;
      border-radius: 28px;
      border: 1px solid rgba(216, 184, 106, .32);
      background: linear-gradient(180deg, rgba(11, 10, 10, .72), rgba(31, 22, 25, .82));
      box-shadow: var(--shadow-gold);
    }

    .dashboard-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(216, 184, 106, .14);
    }

    .club-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(216, 184, 106, .18), rgba(141, 77, 255, .1));
      border: 1px solid rgba(216, 184, 106, .32);
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 900;
    }

    .mini-code {
      color: var(--soft);
      font-size: 12px;
      font-weight: 800;
    }

    .matrix-grid {
      display: grid;
      gap: 12px;
    }

    .matrix-card {
      position: relative;
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(216, 184, 106, .22);
      background: rgba(255, 255, 255, .035);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .matrix-card:hover,
    .content-card:hover,
    .side-card:hover,
    .process-card:hover {
      transform: translateY(-3px);
      border-color: rgba(243, 213, 138, .58);
      background: rgba(255, 255, 255, .055);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
    }

    .matrix-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }

    .matrix-title {
      font-size: 17px;
      font-weight: 900;
      color: var(--text);
    }

    .num-tag,
    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(216, 184, 106, .24);
      color: var(--gold-2);
      background: rgba(216, 184, 106, .08);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .matrix-card p,
    .content-card p,
    .side-card p,
    .process-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .progress-line {
      height: 5px;
      margin-top: 12px;
      border-radius: 99px;
      overflow: hidden;
      background: rgba(255, 255, 255, .08);
    }

    .progress-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--teal), var(--purple));
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--gold-2);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 8px;
    }

    h2 {
      margin: 0;
      font-size: clamp(25px, 3vw, 35px);
      line-height: 1.22;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 530px;
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .channel-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 14px;
      border-radius: 24px;
      border: 1px solid rgba(216, 184, 106, .22);
      background: rgba(0, 0, 0, .24);
      margin-bottom: 26px;
    }

    .filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 13px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .035);
      font-weight: 800;
      font-size: 14px;
    }

    .filter-pill.active,
    .filter-pill:hover {
      color: #151006;
      border-color: rgba(243, 213, 138, .66);
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
    }

    .dot-teal,
    .dot-purple,
    .dot-gold {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .dot-teal { background: var(--teal); box-shadow: 0 0 12px rgba(30, 183, 162, .65); }
    .dot-purple { background: var(--purple); box-shadow: 0 0 12px rgba(141, 77, 255, .65); }
    .dot-gold { background: var(--gold); box-shadow: 0 0 12px rgba(216, 184, 106, .65); }

    .entry-layout {
      display: grid;
      grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
      gap: 22px;
      align-items: start;
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .content-card {
      position: relative;
      min-height: 220px;
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(216, 184, 106, .22);
      background: linear-gradient(180deg, rgba(31, 25, 23, .84), rgba(13, 11, 10, .82));
      box-shadow: 0 16px 48px rgba(0, 0, 0, .26);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .content-card.featured {
      grid-column: span 2;
      min-height: 245px;
      border-color: rgba(243, 213, 138, .42);
      background:
        radial-gradient(circle at 88% 16%, rgba(30, 183, 162, .12), transparent 30%),
        linear-gradient(135deg, rgba(216, 184, 106, .13), rgba(25, 20, 20, .88) 36%, rgba(12, 10, 10, .9));
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .content-card h3,
    .side-card h3,
    .process-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.32;
      font-weight: 900;
      letter-spacing: 0;
    }

    .content-card .card-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--gold-2);
      font-weight: 900;
    }

    .card-action:hover {
      color: var(--text);
    }

    .side-stack {
      position: sticky;
      top: 112px;
      display: grid;
      gap: 16px;
    }

    .side-card {
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(216, 184, 106, .24);
      background: rgba(18, 14, 14, .82);
      box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .side-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 16px 0 0;
      list-style: none;
    }

    .side-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .side-list li::before {
      content: "";
      flex: 0 0 8px;
      width: 8px;
      height: 8px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 14px rgba(216, 184, 106, .68);
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr 1.05fr;
      gap: 16px;
    }

    .process-card {
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(216, 184, 106, .22);
      background: rgba(22, 17, 16, .78);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .process-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 34px;
      margin-bottom: 14px;
      border-radius: 999px;
      color: #171006;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      font-weight: 900;
    }

    .notice-band {
      border-top: 1px solid rgba(216, 184, 106, .16);
      border-bottom: 1px solid rgba(216, 184, 106, .16);
      background:
        linear-gradient(90deg, rgba(216, 184, 106, .08), transparent 36%),
        rgba(0, 0, 0, .18);
    }

    .notice-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
      align-items: center;
    }

    .notice-box {
      padding: 26px;
      border-radius: 28px;
      border: 1px solid rgba(216, 184, 106, .22);
      background: linear-gradient(135deg, rgba(216, 184, 106, .1), rgba(141, 77, 255, .08));
    }

    .notice-box h2 {
      margin-bottom: 10px;
    }

    .notice-box p {
      color: var(--muted);
      margin: 0;
    }

    .check-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .check-list li {
      padding: 14px 16px;
      border-radius: 18px;
      color: var(--muted);
      background: rgba(255, 255, 255, .035);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .check-list strong {
      color: var(--gold-2);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: minmax(260px, .85fr) minmax(0, 1.35fr);
      gap: 24px;
      align-items: start;
    }

    .faq-guide {
      padding: 26px;
      border-radius: 28px;
      border: 1px solid rgba(216, 184, 106, .26);
      background: linear-gradient(180deg, rgba(31, 25, 23, .82), rgba(9, 8, 8, .82));
      box-shadow: var(--shadow);
    }

    .faq-guide p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 20px;
      border: 1px solid rgba(216, 184, 106, .18);
      background: rgba(20, 16, 15, .78);
      overflow: hidden;
      transition: border-color .2s ease, background .2s ease;
    }

    .faq-item.active {
      border-color: rgba(243, 213, 138, .55);
      background: rgba(31, 24, 20, .86);
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 900;
    }

    .faq-icon {
      flex: 0 0 26px;
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--gold-2);
      border: 1px solid rgba(216, 184, 106, .3);
      transition: transform .2s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: rgba(216, 184, 106, .12);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      padding: 36px;
      border-radius: 34px;
      border: 1px solid rgba(243, 213, 138, .36);
      background:
        radial-gradient(circle at 14% 16%, rgba(216, 184, 106, .16), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(141, 77, 255, .14), transparent 32%),
        linear-gradient(135deg, rgba(33, 26, 22, .94), rgba(11, 9, 9, .94));
      box-shadow: var(--shadow-gold);
    }

    .cta-card::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 26px;
      border: 1px solid rgba(216, 184, 106, .12);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items: center;
    }

    .cta-card p {
      color: var(--muted);
      margin: 12px 0 0;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .mini-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(0, 0, 0, .24);
      border: 1px solid rgba(216, 184, 106, .18);
    }

    .mini-form input,
    .mini-form textarea {
      width: 100%;
      min-height: 46px;
      color: var(--text);
      background: rgba(255, 255, 255, .045);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 16px;
      padding: 11px 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .mini-form textarea {
      min-height: 88px;
      resize: vertical;
    }

    .mini-form input::placeholder,
    .mini-form textarea::placeholder {
      color: rgba(185, 173, 153, .72);
    }

    .mini-form input:focus,
    .mini-form textarea:focus {
      border-color: rgba(243, 213, 138, .65);
      box-shadow: 0 0 0 4px rgba(216, 184, 106, .1);
      background: rgba(255, 255, 255, .065);
    }

    .site-footer {
      padding: 54px 0 28px;
      background: linear-gradient(180deg, rgba(9, 8, 8, .72), #050404);
      border-top: 1px solid rgba(216, 184, 106, .22);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 34px;
      padding-bottom: 28px;
    }

    .footer-brand p {
      max-width: 520px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-title {
      color: var(--gold-2);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--gold-2);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      color: var(--soft);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .nav-shell {
        border-radius: 28px;
      }

      .nav-links {
        position: absolute;
        left: 24px;
        right: 24px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(9, 8, 8, .96);
        border: 1px solid rgba(216, 184, 106, .26);
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        justify-content: center;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .status-pill {
        display: none;
      }

      .hero-panel,
      .cta-card {
        padding: 26px;
      }

      .entry-layout,
      .notice-grid,
      .faq-wrap,
      .cta-inner {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
      }

      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 20px;
        padding-right: 20px;
      }

      .site-header {
        padding: 10px 0;
      }

      .nav-shell {
        min-height: 58px;
        padding: 8px 10px 8px 12px;
      }

      .brand {
        max-width: calc(100vw - 122px);
        font-size: 14px;
      }

      .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
      }

      .nav-actions .btn-gold {
        display: none;
      }

      .section {
        padding: 54px 0;
      }

      .hero {
        padding: 40px 0 46px;
      }

      .hero-panel {
        border-radius: 26px;
        padding: 22px;
      }

      .lead {
        font-size: 15px;
      }

      .hero-cta {
        flex-direction: column;
      }

      .btn-gold,
      .btn-ghost {
        width: 100%;
        min-height: 48px;
      }

      .quick-strip {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .section-desc {
        margin-top: 10px;
      }

      .entry-matrix,
      .content-card.featured {
        grid-template-columns: 1fr;
        grid-column: auto;
      }

      .process-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .channel-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 12px;
      }

      .filter-pill {
        flex: 0 0 auto;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 32px;
      }

      .dashboard {
        padding: 16px;
      }

      .dashboard-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .content-card,
      .side-card,
      .process-card,
      .faq-guide,
      .notice-box {
        border-radius: 20px;
        padding: 18px;
      }

      .cta-card {
        border-radius: 24px;
        padding: 22px;
      }

      .faq-question {
        padding: 16px;
      }

      .faq-answer {
        padding: 0 16px 16px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #080608;
      --bg-2: #120b18;
      --panel: rgba(25, 21, 24, 0.86);
      --panel-2: rgba(38, 29, 36, 0.78);
      --text: #fff8e8;
      --muted: #b8aa91;
      --soft: #d7c49b;
      --gold: #d8b45f;
      --gold-2: #f3d78a;
      --amber: #a8792a;
      --purple: #7a4ce0;
      --teal: #1aa890;
      --rose: #c64f7d;
      --border: rgba(216, 180, 95, 0.34);
      --border-soft: rgba(255, 255, 255, 0.09);
      --shadow: 0 22px 60px rgba(0, 0, 0, 0.42), 0 0 32px rgba(216, 180, 95, 0.08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 10%, rgba(216, 180, 95, 0.13), transparent 28%),
        radial-gradient(circle at 84% 6%, rgba(122, 76, 224, 0.18), transparent 25%),
        linear-gradient(140deg, #070507 0%, #120a16 46%, #060505 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(216, 180, 95, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 180, 95, 0.05) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 14px 0;
      transition: background 0.25s ease, box-shadow 0.25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(8, 6, 8, 0.84);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 68px;
      padding: 10px 14px 10px 18px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(15, 12, 14, 0.92), rgba(28, 20, 28, 0.78));
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 850;
      color: var(--text);
      letter-spacing: 0;
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #160f08;
      font-weight: 900;
      background: conic-gradient(from 210deg, #7c5418, #f2d98f, #a8792a, #f6df96, #7c5418);
      box-shadow: 0 0 0 5px rgba(216, 180, 95, 0.09), inset 0 0 16px rgba(255, 255, 255, 0.34);
    }

    .brand span:last-child {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 300px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid var(--border-soft);
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--gold-2);
      background: rgba(216, 180, 95, 0.09);
      outline: none;
    }

    .nav-links a.active {
      color: var(--text);
      background: linear-gradient(135deg, rgba(216, 180, 95, 0.25), rgba(122, 76, 224, 0.16));
      box-shadow: inset 0 0 0 1px rgba(216, 180, 95, 0.24);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 12px;
      border-radius: 999px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 700;
      border: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.04);
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 14px rgba(26, 168, 144, 0.75);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      transition: transform 0.22s ease, filter 0.22s ease, border-color 0.22s ease, background 0.22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #150f08;
      background: linear-gradient(135deg, #f3d78a, #d8b45f 48%, #9f6f24);
      border: 1px solid rgba(255, 230, 160, 0.65);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 14px 26px rgba(216, 180, 95, 0.18);
    }

    .btn-secondary {
      color: var(--gold-2);
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid var(--border);
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.08);
    }

    .btn:focus-visible,
    .menu-toggle:focus-visible,
    .faq-button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 3px;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      color: var(--gold-2);
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.04);
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 82px 0;
    }

    .section.tight {
      padding-top: 58px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid var(--border);
      background: rgba(216, 180, 95, 0.08);
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 14px rgba(216, 180, 95, 0.8);
    }

    .hero {
      padding: 34px 0 72px;
    }

    .hero-bento {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
      grid-template-rows: auto auto;
      gap: 18px;
    }

    .hero-main,
    .hero-mini,
    .hero-cta,
    .content-card,
    .filter-panel,
    .entry-card,
    .tip-panel,
    .faq-item,
    .cta-panel {
      border: 1px solid var(--border);
      background: linear-gradient(145deg, rgba(24, 18, 22, 0.94), rgba(14, 11, 15, 0.82));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-main::after,
    .content-card::after,
    .entry-card::after,
    .cta-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 28%, rgba(216, 180, 95, 0.05));
      opacity: 0.72;
    }

    .hero-main {
      grid-row: span 2;
      min-height: 438px;
      padding: clamp(28px, 5vw, 56px);
      border-radius: var(--radius-xl);
    }

    .hero h1 {
      position: relative;
      z-index: 1;
      max-width: 820px;
      margin: 0;
      font-size: clamp(30px, 5vw, 54px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--text);
    }

    .hero-lead {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 22px 0 0;
      color: #d9cdb7;
      font-size: 17px;
    }

    .hero-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-stats {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 42px;
    }

    .stat-box {
      padding: 16px;
      border-radius: 18px;
      border: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.04);
    }

    .stat-box strong {
      display: block;
      color: var(--gold-2);
      font-size: 20px;
      line-height: 1.2;
    }

    .stat-box span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .hero-mini {
      min-height: 210px;
      padding: 24px;
      border-radius: var(--radius-lg);
    }

    .mini-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .metal-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      color: #160f08;
      font-size: 12px;
      font-weight: 900;
      background: linear-gradient(135deg, #f4dc93, #c99a3e);
      box-shadow: 0 0 0 4px rgba(216, 180, 95, 0.08);
    }

    .mini-number {
      color: rgba(216, 180, 95, 0.42);
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
    }

    .hero-mini h2,
    .hero-mini h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.28;
      font-weight: 850;
    }

    .hero-mini p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .progress-line {
      margin-top: 18px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      overflow: hidden;
    }

    .progress-line span {
      display: block;
      width: 72%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--purple), var(--teal));
    }

    .hero-cta {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 22px;
      border-radius: 22px;
      background: linear-gradient(110deg, rgba(216, 180, 95, 0.14), rgba(122, 76, 224, 0.1), rgba(26, 168, 144, 0.08));
    }

    .hero-cta strong {
      display: block;
      font-size: 17px;
      color: var(--text);
    }

    .hero-cta span {
      color: var(--muted);
      font-size: 14px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.5fr);
      gap: 26px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(24px, 3.5vw, 36px);
      line-height: 1.22;
      font-weight: 900;
    }

    .section-desc {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .section-note {
      justify-self: end;
      padding: 14px 16px;
      border-radius: 18px;
      color: var(--soft);
      border: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.035);
      font-size: 14px;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
      gap: 18px;
    }

    .content-card {
      padding: 28px;
      border-radius: var(--radius-xl);
    }

    .content-card h2,
    .filter-panel h2,
    .tip-panel h2,
    .cta-panel h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 12px;
      font-size: 26px;
      line-height: 1.3;
      font-weight: 900;
    }

    .content-card p,
    .filter-panel p,
    .tip-panel p,
    .cta-panel p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
    }

    .check-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #e6dac5;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.035);
    }

    .check-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 12px rgba(216, 180, 95, 0.7);
    }

    .filter-panel {
      padding: 26px;
      border-radius: var(--radius-xl);
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 13px;
      border-radius: 999px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid var(--border);
      background: rgba(0, 0, 0, 0.22);
      transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .tag:hover,
    .tag.active {
      transform: translateY(-1px);
      color: #130e08;
      border-color: rgba(255, 230, 160, 0.7);
      background: linear-gradient(135deg, #f3d78a, #c99536);
    }

    .entry-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
      gap: 18px;
      align-items: start;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      min-height: 260px;
      padding: 24px;
      border-radius: var(--radius-lg);
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .entry-card.large {
      grid-column: 1 / -1;
      min-height: 240px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
      gap: 24px;
      align-items: end;
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: rgba(243, 215, 138, 0.72);
      background: linear-gradient(145deg, rgba(34, 25, 30, 0.95), rgba(16, 12, 16, 0.9));
    }

    .card-kicker {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 850;
    }

    .entry-card h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      font-size: 23px;
      line-height: 1.3;
      font-weight: 900;
    }

    .entry-card p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .card-tags {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .small-tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      color: var(--soft);
      font-size: 12px;
      font-weight: 800;
      border: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.04);
    }

    .card-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 22px;
      color: var(--gold-2);
      font-weight: 900;
    }

    .side-stack {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 118px;
    }

    .side-card {
      padding: 22px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: rgba(18, 14, 18, 0.82);
      box-shadow: var(--shadow);
    }

    .side-card h3 {
      margin: 0 0 12px;
      font-size: 20px;
      font-weight: 900;
    }

    .side-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .meter-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .meter-row {
      display: grid;
      gap: 8px;
    }

    .meter-row span {
      display: flex;
      justify-content: space-between;
      color: var(--soft);
      font-size: 13px;
      font-weight: 800;
    }

    .meter {
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      overflow: hidden;
    }

    .meter i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--teal));
    }

    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }

    .step-card {
      position: relative;
      padding: 24px;
      min-height: 230px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: linear-gradient(145deg, rgba(24, 18, 22, 0.88), rgba(12, 10, 13, 0.76));
      box-shadow: var(--shadow);
    }

    .step-card::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-bottom: 22px;
      border-radius: 16px;
      color: #150f08;
      font-weight: 900;
      background: linear-gradient(135deg, #f3d78a, #b67d28);
    }

    .step-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      font-weight: 900;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .step-card .small-tag {
      margin-top: 18px;
    }

    .tip-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .tip-panel {
      padding: 28px;
      border-radius: var(--radius-xl);
    }

    .notice-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .notice-list li {
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--border-soft);
      background: rgba(255, 255, 255, 0.035);
    }

    .notice-list strong {
      display: block;
      color: var(--text);
      margin-bottom: 4px;
      font-size: 16px;
    }

    .notice-list span {
      display: block;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-shell {
      display: grid;
      grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .faq-lead {
      padding: 28px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      background: linear-gradient(145deg, rgba(216, 180, 95, 0.12), rgba(19, 15, 18, 0.86));
      box-shadow: var(--shadow);
    }

    .faq-lead h2 {
      margin: 0 0 12px;
      font-size: 28px;
      font-weight: 900;
      line-height: 1.25;
    }

    .faq-lead p {
      margin: 0;
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 18px;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .faq-item.is-open {
      border-color: rgba(243, 215, 138, 0.76);
      background: rgba(31, 24, 28, 0.9);
    }

    .faq-button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      min-height: 58px;
      padding: 18px 20px;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 900;
    }

    .faq-icon {
      display: inline-grid;
      place-items: center;
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      border-radius: 50%;
      color: var(--gold-2);
      border: 1px solid var(--border);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
      gap: 24px;
      align-items: center;
      padding: clamp(28px, 5vw, 46px);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(216, 180, 95, 0.16), rgba(122, 76, 224, 0.11) 48%, rgba(8, 6, 8, 0.92)),
        rgba(16, 12, 16, 0.92);
    }

    .cta-panel h2 {
      font-size: clamp(26px, 3.5vw, 38px);
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .contact-box {
      position: relative;
      z-index: 1;
      padding: 20px;
      border-radius: 22px;
      border: 1px solid var(--border-soft);
      background: rgba(0, 0, 0, 0.2);
    }

    .form-row {
      display: grid;
      gap: 10px;
    }

    .form-row + .form-row {
      margin-top: 12px;
    }

    input,
    textarea {
      width: 100%;
      color: var(--text);
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.045);
      padding: 13px 14px;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    textarea {
      min-height: 96px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(216, 196, 155, 0.6);
    }

    input:focus,
    textarea:focus {
      border-color: rgba(243, 215, 138, 0.72);
      background: rgba(255, 255, 255, 0.065);
    }

    .site-footer {
      margin-top: 18px;
      padding: 54px 0 30px;
      border-top: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(8, 6, 8, 0.72), rgba(5, 4, 5, 0.96));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.45fr) minmax(160px, 0.45fr);
      gap: 30px;
      align-items: start;
    }

    .footer-brand p {
      max-width: 520px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-title {
      margin-bottom: 12px;
      color: var(--gold-2);
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color 0.2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--gold-2);
      outline: none;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 38px;
      padding-top: 20px;
      color: rgba(216, 196, 155, 0.72);
      font-size: 13px;
      border-top: 1px solid var(--border-soft);
    }

    @media (max-width: 1024px) {
      .nav-links {
        gap: 2px;
      }

      .nav-links a {
        padding: 0 10px;
      }

      .status-pill {
        display: none;
      }

      .hero-bento,
      .intro-grid,
      .entry-layout,
      .tip-grid,
      .faq-shell,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero-main {
        grid-row: auto;
      }

      .entry-card.large {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .section-note {
        justify-self: start;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .site-header {
        padding: 10px 0;
      }

      .nav-shell {
        border-radius: 24px;
        align-items: center;
      }

      .brand span:last-child {
        max-width: 190px;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(10, 8, 10, 0.96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a {
        justify-content: flex-start;
        min-height: 46px;
        padding: 0 16px;
      }

      .nav-actions .btn {
        display: none;
      }

      .hero {
        padding-top: 20px;
        padding-bottom: 52px;
      }

      .hero-main {
        min-height: auto;
      }

      .hero-stats,
      .entry-grid,
      .steps-wrap,
      .side-stack,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-cta {
        align-items: flex-start;
        flex-direction: column;
      }

      .section {
        padding: 56px 0;
      }

      .section.tight {
        padding-top: 40px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .brand span:last-child {
        max-width: 152px;
        font-size: 14px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        min-height: 48px;
      }

      .hero-mini,
      .content-card,
      .filter-panel,
      .entry-card,
      .tip-panel,
      .faq-lead,
      .cta-panel {
        border-radius: 22px;
      }

      .hero-stats {
        gap: 10px;
      }

      .faq-button {
        align-items: flex-start;
      }
    }
