/* roulang page: index */
:root {
      --ink: #171413;
      --ink-soft: #292321;
      --paper: #fbf7ef;
      --paper-2: #f3eadc;
      --muted: #7a6d63;
      --line: rgba(54, 43, 36, .13);
      --gold: #c7a266;
      --gold-soft: rgba(199, 162, 102, .18);
      --red: #7b2626;
      --purple: #5d4a64;
      --white: #fffdf8;
      --shadow: 0 24px 70px rgba(33, 25, 20, .12);
      --shadow-soft: 0 14px 40px rgba(33, 25, 20, .08);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1160px;
      --ease: all .28s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(199, 162, 102, .16), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(123, 38, 38, .10), transparent 30%),
        linear-gradient(180deg, #fbf7ef 0%, #f8f1e6 48%, #fffdf8 100%);
      font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      z-index: -1;
      background-image:
        linear-gradient(rgba(23, 20, 19, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 20, 19, .04) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, #000, transparent 80%);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(199, 162, 102, .45);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .dock-header {
      position: sticky;
      top: 18px;
      z-index: 99;
      padding: 8px 0;
    }

    .dock-nav {
      width: min(980px, calc(100% - 24px));
      margin: 0 auto;
      padding: 10px;
      border: 1px solid rgba(255, 253, 248, .35);
      border-radius: 999px;
      background: rgba(23, 20, 19, .82);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 55px rgba(23, 20, 19, .22);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 12px 7px 8px;
      color: var(--white);
      font-weight: 800;
      letter-spacing: -.02em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--ink);
      background: linear-gradient(135deg, #f1d79d, #b88743);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
      font-size: 14px;
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      color: rgba(255, 253, 248, .74);
      font-size: 14px;
      font-weight: 650;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--white);
      background: rgba(255, 253, 248, .12);
    }

    .nav-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--ink);
      background: linear-gradient(135deg, #eed9a5, #c79a55);
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 12px 30px rgba(199, 162, 102, .22);
    }

    .nav-action:hover {
      transform: translateY(-1px);
      color: var(--ink);
      box-shadow: 0 18px 38px rgba(199, 162, 102, .30);
    }

    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      color: var(--white);
      background: rgba(255,255,255,.11);
    }

    main {
      padding-top: 22px;
    }

    section {
      padding: 76px 0;
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--red);
      background: rgba(255, 253, 248, .72);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .04em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 6px var(--gold-soft);
    }

    .section-title {
      margin: 16px 0 12px;
      font-size: clamp(30px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -.06em;
      font-weight: 900;
    }

    .section-desc {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .btn-main,
    .btn-ghost,
    .btn-darkline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 850;
      transition: var(--ease);
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-main {
      color: var(--ink);
      background: linear-gradient(135deg, #f0dba8, #c79853);
      box-shadow: 0 18px 38px rgba(199, 162, 102, .24);
    }

    .btn-main:hover {
      color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(199, 162, 102, .32);
    }

    .btn-ghost {
      color: var(--ink);
      background: rgba(255, 253, 248, .72);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      color: var(--red);
      transform: translateY(-2px);
      border-color: rgba(123, 38, 38, .25);
      background: var(--white);
    }

    .btn-darkline {
      color: var(--white);
      background: rgba(255, 253, 248, .08);
      border-color: rgba(255, 253, 248, .18);
    }

    .btn-darkline:hover {
      color: var(--white);
      transform: translateY(-2px);
      background: rgba(255, 253, 248, .14);
    }

    .hero {
      padding: 64px 0 82px;
    }

    .hero-stage {
      overflow: hidden;
      border-radius: 42px;
      background:
        linear-gradient(135deg, rgba(23, 20, 19, .94), rgba(41, 35, 33, .88)),
        radial-gradient(circle at 80% 18%, rgba(199, 162, 102, .28), transparent 34%);
      color: var(--white);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 253, 248, .10);
      position: relative;
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      inset: auto -12% -26% 42%;
      height: 260px;
      background: radial-gradient(circle, rgba(199,162,102,.24), transparent 64%);
      filter: blur(8px);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 34px;
      align-items: stretch;
      padding: clamp(28px, 5vw, 58px);
      position: relative;
      z-index: 1;
    }

    h1 {
      margin: 18px 0 20px;
      font-size: clamp(42px, 7vw, 86px);
      line-height: .94;
      letter-spacing: -.075em;
      font-weight: 950;
    }

    .hero-copy {
      max-width: 620px;
      color: rgba(255, 253, 248, .76);
      font-size: 18px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 620px;
    }

    .point {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 253, 248, .08);
      border: 1px solid rgba(255, 253, 248, .12);
    }

    .point strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      color: #f1d79d;
      margin-bottom: 6px;
    }

    .point span {
      color: rgba(255, 253, 248, .66);
      font-size: 13px;
    }

    .progress-panel {
      min-height: 100%;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 16px;
      align-items: stretch;
    }

    .ring-card,
    .tier-card,
    .mini-ticket {
      border: 1px solid rgba(255, 253, 248, .14);
      background: rgba(255, 253, 248, .08);
      border-radius: 28px;
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 55px rgba(0,0,0,.18);
    }

    .ring-card {
      padding: 24px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .progress-ring {
      width: 168px;
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at center, #2b2421 0 55%, transparent 56%),
        conic-gradient(#d7af70 0 76%, rgba(255,255,255,.13) 76% 100%);
      margin-bottom: 16px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 16px 42px rgba(0,0,0,.24);
    }

    .progress-ring b {
      font-size: 34px;
      line-height: 1;
      letter-spacing: -.05em;
    }

    .ring-card p {
      margin: 0;
      color: rgba(255,253,248,.68);
      font-size: 14px;
    }

    .tier-stack {
      display: grid;
      gap: 14px;
    }

    .tier-card {
      padding: 18px;
    }

    .tier-card h3 {
      font-size: 18px;
      margin: 0 0 8px;
      font-weight: 850;
    }

    .tier-card p {
      margin: 0 0 12px;
      color: rgba(255,253,248,.68);
      font-size: 14px;
    }

    .ticket-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--gold-soft);
      color: #6d4b1f;
      border: 1px solid rgba(199, 162, 102, .22);
      font-size: 13px;
      font-weight: 750;
    }

    .tag.dark {
      color: #f4dfb2;
      background: rgba(199, 162, 102, .14);
      border-color: rgba(199, 162, 102, .20);
    }

    .stage-preview {
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius-xl);
      padding: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .preview-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: start;
      margin-bottom: 28px;
    }

    .preview-screen {
      min-height: 350px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(255,253,248,.10), rgba(255,253,248,.04)),
        radial-gradient(circle at 72% 22%, rgba(199,162,102,.28), transparent 28%);
      border: 1px solid rgba(255,253,248,.12);
      padding: 22px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 16px;
      align-items: end;
    }

    .screen-block {
      border-radius: 22px;
      background: rgba(255,253,248,.08);
      border: 1px solid rgba(255,253,248,.12);
      padding: 18px;
      min-height: 150px;
    }

    .screen-block.large {
      min-height: 255px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      background:
        linear-gradient(180deg, rgba(123,38,38,.22), rgba(255,253,248,.08)),
        rgba(255,253,248,.08);
    }

    .screen-block h3 {
      margin: 0 0 10px;
      font-weight: 880;
    }

    .screen-block p {
      margin: 0;
      color: rgba(255,253,248,.66);
      font-size: 14px;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .pain-card,
    .step-card,
    .review-card,
    .faq-item,
    .news-box,
    .lead-form,
    .list-card,
    .milestone-card {
      background: rgba(255,253,248,.76);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      transition: var(--ease);
    }

    .pain-card:hover,
    .step-card:hover,
    .review-card:hover,
    .faq-item:hover,
    .news-box:hover,
    .list-card:hover,
    .milestone-card:hover {
      transform: translateY(-4px);
      border-color: rgba(199, 162, 102, .38);
      box-shadow: var(--shadow);
    }

    .pain-card {
      padding: 22px;
    }

    .pain-card .num {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      margin-bottom: 18px;
      color: var(--ink);
      background: #f0d9a5;
      font-weight: 900;
    }

    .pain-card h3,
    .step-card h3,
    .review-card h3,
    .news-box h3,
    .list-card h3,
    .milestone-card h3 {
      font-size: 18px;
      margin: 0 0 10px;
      font-weight: 860;
    }

    .pain-card p,
    .step-card p,
    .review-card p,
    .news-box p,
    .list-card p,
    .milestone-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .solution-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      margin-top: 30px;
      align-items: stretch;
    }

    .filter-board {
      padding: 26px;
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, #fffdf8, #f4eadb);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 14px 0;
      border-bottom: 1px dashed rgba(54,43,36,.16);
    }

    .filter-row:last-child {
      border-bottom: 0;
    }

    .filter-label {
      min-width: 74px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 13px;
      border-radius: 999px;
      color: var(--ink-soft);
      background: rgba(23,20,19,.05);
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 750;
      transition: var(--ease);
    }

    .pill:hover,
    .pill.active {
      color: var(--red);
      background: rgba(199,162,102,.17);
      border-color: rgba(199,162,102,.26);
    }

    .step-list {
      display: grid;
      gap: 14px;
    }

    .step-card {
      padding: 22px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
    }

    .step-index {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #f0d9a5;
      font-weight: 900;
      font-size: 18px;
    }

    .results-strip {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1.2fr repeat(3, .8fr);
      gap: 14px;
    }

    .result-card {
      position: relative;
      overflow: hidden;
      padding: 24px;
      min-height: 154px;
      border-radius: var(--radius-lg);
      background: var(--ink);
      color: var(--white);
      border: 1px solid rgba(255,253,248,.10);
      box-shadow: var(--shadow);
    }

    .result-card.light {
      color: var(--ink);
      background: rgba(255,253,248,.78);
      border-color: var(--line);
    }

    .result-card b {
      display: block;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1;
      letter-spacing: -.06em;
      margin-bottom: 10px;
    }

    .result-card span {
      color: rgba(255,253,248,.68);
      font-size: 15px;
    }

    .result-card.light span {
      color: var(--muted);
    }

    .hot-list {
      margin-top: 30px;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
    }

    .rank-list {
      display: grid;
      gap: 12px;
    }

    .list-card {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
    }

    .rank {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(123,38,38,.10);
      color: var(--red);
      font-weight: 950;
    }

    .small-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 13px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--white);
      font-size: 13px;
      font-weight: 800;
    }

    .small-btn:hover {
      color: #f0d9a5;
      transform: translateY(-1px);
    }

    .milestone-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .milestone-card {
      padding: 22px;
      position: relative;
    }

    .milestone-card::before {
      content: "";
      position: absolute;
      top: 28px;
      right: 20px;
      width: 42px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .milestone-card b {
      display: inline-flex;
      margin-bottom: 18px;
      color: var(--red);
      font-size: 13px;
      letter-spacing: .08em;
    }

    .reviews {
      display: grid;
      grid-template-columns: 1fr 1.25fr .85fr;
      gap: 16px;
      margin-top: 30px;
      align-items: stretch;
    }

    .review-card {
      padding: 24px;
    }

    .review-card.featured {
      background: var(--ink);
      color: var(--white);
    }

    .review-card.featured p {
      color: rgba(255,253,248,.70);
    }

    .avatar-line {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #e9d09b, #9e6b35);
      color: var(--ink);
      font-weight: 900;
    }

    .news-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .news-box {
      padding: 24px;
    }

    .news-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 14px;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,253,248,.62);
    }

    .news-list a:hover {
      border-color: rgba(199,162,102,.42);
      background: var(--white);
      transform: translateX(3px);
    }

    .news-date {
      color: var(--red);
      font-weight: 850;
      font-size: 13px;
    }

    .news-title {
      font-weight: 800;
      line-height: 1.45;
    }

    .timeline {
      display: grid;
      gap: 12px;
    }

    .timeline-item {
      padding: 16px;
      border-radius: 18px;
      border: 1px dashed rgba(54,43,36,.18);
      background: rgba(255,253,248,.56);
    }

    .timeline-item b {
      display: block;
      margin-bottom: 4px;
    }

    .timeline-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .lead-section {
      padding-bottom: 92px;
    }

    .lead-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: stretch;
      padding: 32px;
      border-radius: 38px;
      background: linear-gradient(135deg, rgba(23,20,19,.96), rgba(54,43,36,.90));
      color: var(--white);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .lead-wrap::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      right: -90px;
      top: -110px;
      background: rgba(199,162,102,.18);
      filter: blur(4px);
    }

    .lead-wrap > * {
      position: relative;
      z-index: 1;
    }

    .lead-wrap .section-desc {
      color: rgba(255,253,248,.70);
    }

    .lead-form {
      padding: 24px;
      background: rgba(255,253,248,.08);
      border-color: rgba(255,253,248,.14);
      box-shadow: none;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .form-control-custom {
      width: 100%;
      min-height: 50px;
      border: 1px solid rgba(255,253,248,.16);
      border-radius: 16px;
      color: var(--white);
      background: rgba(255,253,248,.08);
      padding: 0 15px;
      transition: var(--ease);
    }

    .form-control-custom::placeholder {
      color: rgba(255,253,248,.48);
    }

    .form-control-custom:focus {
      border-color: rgba(199,162,102,.58);
      background: rgba(255,253,248,.11);
      outline: none;
    }

    .privacy-note {
      margin: 12px 0 18px;
      color: rgba(255,253,248,.62);
      font-size: 13px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .faq-item {
      padding: 22px;
    }

    .faq-item h3 {
      font-size: 17px;
      margin: 0 0 10px;
      font-weight: 850;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .footer {
      padding: 48px 0 34px;
      background: var(--ink);
      color: var(--white);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 24px;
      align-items: start;
    }

    .footer-brand {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.03em;
      margin-bottom: 12px;
    }

    .footer p {
      color: rgba(255,253,248,.62);
      margin: 0;
      max-width: 520px;
      font-size: 14px;
    }

    .footer h3 {
      font-size: 15px;
      margin: 0 0 12px;
      color: #f1d79d;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255,253,248,.68);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #f1d79d;
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 32px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,253,248,.12);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255,253,248,.52);
      font-size: 13px;
    }

    .reveal {
      animation: rise .7s ease both;
    }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1024px) {
      :root {
        --container: 920px;
      }

      .hero-grid,
      .solution-wrap,
      .hot-list,
      .news-layout,
      .lead-wrap {
        grid-template-columns: 1fr;
      }

      .progress-panel,
      .preview-screen {
        grid-template-columns: 1fr 1fr;
      }

      .pain-grid,
      .milestone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .results-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .reviews {
        grid-template-columns: 1fr 1fr;
      }

      .review-card.featured {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .dock-header {
        top: 10px;
      }

      .dock-nav {
        border-radius: 26px;
        align-items: stretch;
        flex-wrap: wrap;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
      }

      .nav-links,
      .nav-action {
        display: none;
      }

      .dock-nav.open .nav-links {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 6px;
      }

      .dock-nav.open .nav-links a {
        justify-content: center;
        background: rgba(255,253,248,.08);
      }

      .dock-nav.open .nav-action {
        display: inline-flex;
        width: 100%;
      }

      section {
        padding: 58px 0;
      }

      .hero {
        padding-top: 32px;
      }

      .hero-stage {
        border-radius: 30px;
      }

      .hero-grid {
        padding: 26px;
      }

      .hero-points,
      .progress-panel,
      .preview-screen,
      .faq-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stage-preview {
        padding: 24px;
        border-radius: 28px;
      }

      .results-strip,
      .reviews {
        grid-template-columns: 1fr;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        display: grid;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 22px, var(--container));
      }

      .brand {
        max-width: calc(100% - 54px);
      }

      .brand span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
      }

      h1 {
        font-size: 42px;
      }

      .hero-actions {
        display: grid;
      }

      .btn-main,
      .btn-ghost,
      .btn-darkline {
        width: 100%;
      }

      .pain-grid,
      .milestone-grid {
        grid-template-columns: 1fr;
      }

      .list-card {
        grid-template-columns: 42px 1fr;
      }

      .list-card .small-btn {
        grid-column: 1 / -1;
      }

      .lead-wrap {
        padding: 24px;
        border-radius: 28px;
      }

      .news-list a {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f7f2ea;
      --bg-soft:#fffaf2;
      --ink:#17130f;
      --ink-2:#37302a;
      --muted:#776d62;
      --line:rgba(23,19,15,.12);
      --line-strong:rgba(23,19,15,.2);
      --night:#15120f;
      --night-2:#211a16;
      --gold:#c79a4b;
      --gold-soft:#f2dfba;
      --red:#7a2f2f;
      --purple:#5b4a68;
      --card:#fffdf8;
      --radius-sm:12px;
      --radius:22px;
      --radius-lg:34px;
      --shadow-sm:0 10px 28px rgba(25,18,12,.08);
      --shadow:0 22px 70px rgba(25,18,12,.12);
      --shadow-dark:0 28px 80px rgba(0,0,0,.28);
      --ease:all .28s ease;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(199,154,75,.16), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(91,74,104,.14), transparent 32%),
        linear-gradient(180deg,#fffaf2 0%,#f7f2ea 42%,#efe8dd 100%);
      line-height:1.72;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.28;
      background-image:
        linear-gradient(rgba(23,19,15,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,19,15,.025) 1px, transparent 1px);
      background-size:44px 44px;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{border:0}
    ::selection{background:var(--gold-soft);color:var(--ink)}
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:88px 0;
      position:relative;
    }
    .section-tight{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,253,248,.72);
      color:var(--muted);
      font-size:13px;
      letter-spacing:.04em;
      box-shadow:var(--shadow-sm);
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 5px rgba(199,154,75,.16);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(38px,6vw,76px);
      line-height:1.05;
      letter-spacing:-.06em;
      margin-bottom:24px;
      color:#fff9ef;
    }
    h2{
      font-size:clamp(28px,4vw,48px);
      line-height:1.14;
      letter-spacing:-.045em;
      margin-bottom:16px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      letter-spacing:-.02em;
      margin-bottom:10px;
    }
    .lead{
      color:rgba(255,249,239,.76);
      font-size:18px;
      max-width:660px;
      margin-bottom:28px;
    }
    .section-head{
      max-width:760px;
      margin-bottom:34px;
    }
    .section-head p{
      color:var(--muted);
      font-size:17px;
      margin-bottom:0;
    }
    .text-muted-custom{color:var(--muted)}
    .btn-main,.btn-ghost,.btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:13px 20px;
      border-radius:999px;
      font-weight:700;
      letter-spacing:.01em;
      transition:var(--ease);
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-main{
      background:linear-gradient(135deg,var(--gold),#e1bf79);
      color:#1d150d;
      box-shadow:0 14px 34px rgba(199,154,75,.32);
    }
    .btn-main:hover{
      transform:translateY(-2px);
      box-shadow:0 20px 46px rgba(199,154,75,.42);
      color:#1d150d;
    }
    .btn-ghost{
      border:1px solid rgba(255,255,255,.2);
      color:#fff8ed;
      background:rgba(255,255,255,.06);
      backdrop-filter:blur(12px);
    }
    .btn-ghost:hover{
      border-color:rgba(199,154,75,.55);
      color:#fff;
      background:rgba(199,154,75,.11);
      transform:translateY(-2px);
    }
    .btn-darkline{
      background:#17130f;
      color:#fff8ed;
      border:1px solid rgba(255,255,255,.1);
    }
    .btn-darkline:hover{
      color:#fff8ed;
      transform:translateY(-2px);
      box-shadow:var(--shadow);
    }
    a:focus-visible,button:focus-visible,input:focus-visible{
      outline:3px solid rgba(199,154,75,.45);
      outline-offset:3px;
    }

    .dock-header{
      position:fixed;
      top:18px;
      left:0;
      width:100%;
      z-index:1000;
      pointer-events:none;
    }
    .dock-nav{
      width:min(980px, calc(100% - 32px));
      margin:0 auto;
      pointer-events:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:10px 12px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:999px;
      background:rgba(21,18,15,.82);
      box-shadow:0 18px 58px rgba(0,0,0,.22);
      backdrop-filter:blur(18px);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff8ed;
      font-weight:800;
      letter-spacing:-.02em;
      padding:6px 10px 6px 7px;
      border-radius:999px;
    }
    .brand:hover{color:#fff;background:rgba(255,255,255,.06)}
    .brand-mark{
      display:grid;
      place-items:center;
      width:34px;
      height:34px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--gold),#9c6c2f);
      color:#17130f;
      font-weight:900;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.4);
    }
    .nav-links{
      list-style:none;
      display:flex;
      align-items:center;
      gap:4px;
      padding:0;
      margin:0;
    }
    .nav-links a{
      display:block;
      padding:10px 15px;
      color:rgba(255,249,239,.72);
      border-radius:999px;
      font-weight:650;
      font-size:14px;
    }
    .nav-links a:hover{
      color:#fff;
      background:rgba(255,255,255,.07);
    }
    .nav-links a.active{
      color:#17130f;
      background:#fff6e6;
      box-shadow:0 8px 24px rgba(255,246,230,.15);
    }
    .nav-action{
      padding:10px 16px;
      border-radius:999px;
      color:#21160d;
      background:linear-gradient(135deg,#d6aa5c,#f0d28f);
      font-weight:800;
      font-size:14px;
    }
    .nav-action:hover{
      color:#21160d;
      transform:translateY(-1px);
      box-shadow:0 12px 28px rgba(199,154,75,.32);
    }
    .mobile-toggle{
      display:none;
      width:40px;
      height:40px;
      border-radius:50%;
      color:#fff8ed;
      background:rgba(255,255,255,.08);
    }

    .category-hero{
      padding:142px 0 76px;
      background:
        radial-gradient(circle at 70% 18%, rgba(199,154,75,.22), transparent 28%),
        radial-gradient(circle at 14% 78%, rgba(122,47,47,.18), transparent 28%),
        linear-gradient(135deg,#15120f 0%,#241b16 52%,#15120f 100%);
      border-bottom-left-radius:44px;
      border-bottom-right-radius:44px;
      overflow:hidden;
      position:relative;
      color:#fff8ed;
    }
    .category-hero:after{
      content:"";
      position:absolute;
      inset:0;
      opacity:.22;
      background:
        linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 43%, transparent 44%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 88px);
      pointer-events:none;
    }
    .category-hero .site-container{position:relative;z-index:1}
    .hero-layout{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
      gap:48px;
      align-items:center;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:13px;
      align-items:center;
      margin-bottom:22px;
    }
    .hero-note{
      display:flex;
      align-items:center;
      gap:12px;
      color:rgba(255,249,239,.62);
      font-size:14px;
    }
    .hero-note span{
      width:38px;
      height:1px;
      background:rgba(199,154,75,.6);
    }
    .schedule-panel{
      padding:22px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.14);
      background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.05));
      box-shadow:var(--shadow-dark);
      backdrop-filter:blur(16px);
    }
    .panel-top{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
      padding-bottom:18px;
      border-bottom:1px solid rgba(255,255,255,.13);
      margin-bottom:16px;
    }
    .panel-top strong{
      display:block;
      font-size:20px;
      letter-spacing:-.02em;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 10px;
      border-radius:999px;
      color:#fff1d7;
      background:rgba(199,154,75,.13);
      border:1px solid rgba(199,154,75,.3);
      font-size:13px;
      white-space:nowrap;
    }
    .status-pill:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:#e6bf75;
    }
    .time-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin:18px 0;
    }
    .time-card{
      border:1px solid rgba(255,255,255,.13);
      background:rgba(0,0,0,.14);
      border-radius:18px;
      padding:15px;
      transition:var(--ease);
    }
    .time-card:hover{
      transform:translateY(-3px);
      border-color:rgba(199,154,75,.48);
      background:rgba(199,154,75,.09);
    }
    .time-card b{
      display:block;
      color:#fff8ed;
      font-size:17px;
      margin-bottom:4px;
    }
    .time-card span{
      color:rgba(255,249,239,.6);
      font-size:13px;
    }
    .ticket-strip{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border:1px dashed rgba(255,255,255,.22);
      border-radius:18px;
      background:rgba(255,255,255,.05);
      color:rgba(255,249,239,.76);
      font-size:14px;
    }

    .filter-wrap{
      margin-top:-32px;
      position:relative;
      z-index:5;
    }
    .filter-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:18px;
      border-radius:var(--radius);
      background:rgba(255,253,248,.9);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      backdrop-filter:blur(18px);
    }
    .filter-tabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .filter-chip{
      padding:10px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--ink-2);
      font-weight:700;
      transition:var(--ease);
    }
    .filter-chip:hover,.filter-chip.active{
      background:#17130f;
      color:#fff8ed;
      border-color:#17130f;
      transform:translateY(-1px);
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:260px;
      padding:5px 6px 5px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
    }
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
    }
    .search-box button{
      width:38px;
      height:38px;
      border-radius:50%;
      background:var(--gold);
      color:#1c140d;
      font-weight:900;
      transition:var(--ease);
    }
    .search-box button:hover{transform:rotate(-8deg) scale(1.04)}

    .summary-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:24px;
      align-items:stretch;
    }
    .summary-card{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:var(--card);
      box-shadow:var(--shadow-sm);
      padding:30px;
      position:relative;
      overflow:hidden;
    }
    .summary-card:after{
      content:"";
      position:absolute;
      right:-60px;
      top:-70px;
      width:210px;
      height:210px;
      border-radius:50%;
      background:rgba(199,154,75,.16);
    }
    .summary-card.dark{
      background:linear-gradient(135deg,#17130f,#2b211b);
      color:#fff8ed;
      box-shadow:var(--shadow);
    }
    .summary-card.dark p{color:rgba(255,249,239,.66)}
    .stats-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:24px;
      position:relative;
      z-index:1;
    }
    .stat{
      padding:18px 14px;
      border-radius:20px;
      background:rgba(255,255,255,.72);
      border:1px solid var(--line);
    }
    .stat b{
      display:block;
      font-size:28px;
      line-height:1;
      letter-spacing:-.04em;
      color:var(--ink);
      margin-bottom:8px;
    }
    .stat span{font-size:13px;color:var(--muted)}
    .dark .stat{
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.13);
    }
    .dark .stat b{color:#f4cf85}
    .dark .stat span{color:rgba(255,249,239,.62)}

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:24px;
      align-items:start;
    }
    .card-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .entry-card{
      position:relative;
      min-height:238px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:24px;
      border-radius:var(--radius);
      background:rgba(255,253,248,.9);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
      transition:var(--ease);
    }
    .entry-card:nth-child(2){transform:translateY(28px)}
    .entry-card:nth-child(4){transform:translateY(28px)}
    .entry-card:hover{
      border-color:rgba(199,154,75,.55);
      box-shadow:var(--shadow);
    }
    .entry-card:nth-child(2):hover,.entry-card:nth-child(4):hover{transform:translateY(22px)}
    .entry-card:not(:nth-child(2)):not(:nth-child(4)):hover{transform:translateY(-6px)}
    .entry-card:before{
      content:"";
      position:absolute;
      top:0;
      left:22px;
      right:22px;
      height:4px;
      border-radius:0 0 99px 99px;
      background:linear-gradient(90deg,var(--gold),transparent);
    }
    .entry-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:16px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:#f4ead9;
      color:#6d5125;
      font-size:12px;
      font-weight:800;
    }
    .tag.darktag{
      background:#1c1713;
      color:#f0cc83;
    }
    .entry-card p{color:var(--muted);margin-bottom:18px}
    .entry-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding-top:16px;
      border-top:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
    }
    .entry-foot a{
      color:var(--ink);
      font-weight:800;
    }
    .entry-foot a:hover{color:#8a5d16}
    .side-panel{
      position:sticky;
      top:112px;
      border-radius:var(--radius-lg);
      background:#17130f;
      color:#fff8ed;
      padding:24px;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.1);
    }
    .side-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .side-item{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
      transition:var(--ease);
    }
    .side-item:hover{
      border-color:rgba(199,154,75,.45);
      background:rgba(199,154,75,.1);
    }
    .side-num{
      flex:0 0 34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:rgba(199,154,75,.18);
      color:#f5cf85;
      font-weight:900;
    }
    .side-item p{
      color:rgba(255,249,239,.62);
      margin:0;
      font-size:14px;
    }

    .process-band{
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fffdf8,#f2e6d5);
      border:1px solid var(--line);
      padding:34px;
      box-shadow:var(--shadow-sm);
    }
    .process-list{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:26px;
    }
    .process-step{
      padding:20px;
      border-radius:22px;
      background:#fffaf2;
      border:1px solid var(--line);
      transition:var(--ease);
    }
    .process-step:hover{
      transform:translateY(-5px);
      border-color:rgba(199,154,75,.5);
      box-shadow:var(--shadow-sm);
    }
    .step-index{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:18px;
      color:var(--muted);
      font-size:13px;
    }
    .step-index b{
      display:grid;
      place-items:center;
      width:34px;
      height:34px;
      border-radius:50%;
      background:#17130f;
      color:#f3cf86;
    }

    .proof-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:stretch;
    }
    .proof-poster{
      border-radius:var(--radius-lg);
      padding:34px;
      color:#fff8ed;
      background:
        radial-gradient(circle at 70% 20%, rgba(199,154,75,.28), transparent 36%),
        linear-gradient(145deg,#18130f,#32231d);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .proof-poster .big-number{
      font-size:clamp(64px,9vw,116px);
      line-height:.9;
      letter-spacing:-.08em;
      color:#f2c879;
      font-weight:900;
      margin:26px 0 10px;
    }
    .proof-poster p{color:rgba(255,249,239,.66)}
    .testimonial-list{
      display:grid;
      gap:16px;
    }
    .quote-card{
      display:grid;
      grid-template-columns:52px 1fr;
      gap:16px;
      padding:22px;
      border-radius:var(--radius);
      background:var(--card);
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .quote-card:hover{
      transform:translateX(4px);
      border-color:rgba(199,154,75,.52);
    }
    .avatar{
      width:52px;
      height:52px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,#17130f,#6b4d24);
      color:#f4d28e;
      font-weight:900;
    }
    .quote-card p{color:var(--ink-2);margin-bottom:8px}
    .quote-card span{color:var(--muted);font-size:13px}

    .faq-wrap{
      display:grid;
      grid-template-columns:360px 1fr;
      gap:28px;
      align-items:start;
    }
    .accordion{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(255,253,248,.88);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      text-align:left;
      padding:20px 22px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      background:transparent;
      color:var(--ink);
      font-weight:850;
      cursor:pointer;
    }
    .faq-question span:last-child{
      color:var(--gold);
      font-size:20px;
      line-height:1;
      transition:var(--ease);
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
    }
    .faq-answer p{
      margin:0;
      padding:0 22px 20px;
      color:var(--muted);
    }
    .faq-item.open .faq-answer{max-height:160px}
    .faq-item.open .faq-question span:last-child{transform:rotate(45deg)}

    .cta-panel{
      border-radius:42px;
      padding:46px;
      background:
        radial-gradient(circle at 86% 20%, rgba(199,154,75,.25), transparent 34%),
        linear-gradient(135deg,#17130f,#2a211c);
      color:#fff8ed;
      box-shadow:var(--shadow-dark);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      position:relative;
      overflow:hidden;
    }
    .cta-panel:before,.cta-panel:after{
      content:"";
      position:absolute;
      width:28px;
      height:28px;
      border-radius:50%;
      background:var(--bg);
      top:50%;
      transform:translateY(-50%);
    }
    .cta-panel:before{left:-14px}
    .cta-panel:after{right:-14px}
    .cta-panel p{
      color:rgba(255,249,239,.68);
      max-width:720px;
      margin-bottom:0;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      position:relative;
      z-index:1;
    }

    .footer{
      padding:66px 0 28px;
      background:#12100e;
      color:#fff8ed;
      border-top-left-radius:38px;
      border-top-right-radius:38px;
      margin-top:42px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      font-size:24px;
      font-weight:900;
      letter-spacing:-.035em;
      margin-bottom:12px;
    }
    .footer p{
      color:rgba(255,249,239,.6);
      max-width:460px;
      margin-bottom:0;
    }
    .footer h3{
      font-size:15px;
      color:#f1cd85;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,249,239,.62);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:24px;
      color:rgba(255,249,239,.48);
      font-size:13px;
    }

    .reveal{
      opacity:0;
      transform:translateY(18px);
      transition:opacity .65s ease, transform .65s ease;
    }
    .reveal.show{
      opacity:1;
      transform:none;
    }

    @media (max-width:1024px){
      .hero-layout,.summary-grid,.content-layout,.proof-grid,.faq-wrap{
        grid-template-columns:1fr;
      }
      .side-panel{position:relative;top:auto}
      .process-list{grid-template-columns:repeat(2,1fr)}
      .entry-card:nth-child(2),.entry-card:nth-child(4){transform:none}
      .entry-card:nth-child(2):hover,.entry-card:nth-child(4):hover{transform:translateY(-6px)}
      .filter-bar{align-items:flex-start;flex-direction:column}
      .search-box{width:100%;min-width:0}
    }
    @media (max-width:768px){
      .dock-header{top:10px}
      .dock-nav{
        border-radius:26px;
        align-items:flex-start;
        flex-wrap:wrap;
      }
      .mobile-toggle{display:grid;place-items:center}
      .nav-links{
        order:5;
        width:100%;
        display:none;
        grid-template-columns:1fr;
        gap:6px;
        padding:8px 4px 4px;
      }
      .dock-nav.open .nav-links{display:grid}
      .nav-action{
        display:none;
        order:6;
        width:100%;
        text-align:center;
        justify-content:center;
        margin:0 4px 4px;
      }
      .dock-nav.open .nav-action{display:flex}
      .brand span:last-child{
        max-width:190px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }
      .category-hero{
        padding:118px 0 58px;
        border-bottom-left-radius:30px;
        border-bottom-right-radius:30px;
      }
      .section{padding:62px 0}
      .site-container{width:min(100% - 28px,var(--container))}
      .time-grid,.card-grid,.stats-row{
        grid-template-columns:1fr;
      }
      .process-list{grid-template-columns:1fr}
      .cta-panel{
        grid-template-columns:1fr;
        padding:32px 24px;
        border-radius:30px;
      }
      .cta-actions{justify-content:flex-start}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      h1{font-size:38px}
      h2{font-size:29px}
      .hero-actions,.cta-actions{
        flex-direction:column;
        align-items:stretch;
      }
      .btn-main,.btn-ghost,.btn-darkline{width:100%}
      .schedule-panel,.summary-card,.process-band,.proof-poster{padding:22px}
      .filter-tabs{width:100%}
      .filter-chip{flex:1;text-align:center}
      .quote-card{grid-template-columns:1fr}
      .ticket-strip{align-items:flex-start;flex-direction:column}
    }
