/* roulang page: index */
:root {
      --color-text: #24201f;
      --color-muted: #766b64;
      --color-bg: #f8f3ec;
      --color-surface: #fffdfc;
      --color-soft: #f3eee8;
      --color-soft-2: #efe7dd;
      --color-primary: #e86f45;
      --color-primary-dark: #c95531;
      --color-accent: #f4b56a;
      --color-rose: #b96d71;
      --color-purple: #9a8aa5;
      --color-border: #e7dcd2;
      --shadow-card: 0 12px 30px rgba(71, 52, 37, .08);
      --shadow-hover: 0 18px 42px rgba(71, 52, 37, .14);
      --radius-card: 16px;
      --radius-small: 10px;
      --radius-pill: 999px;
      --container: 1120px;
      --section: 72px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--color-text);
      background: var(--color-bg);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.82;
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 252, .96);
      border-bottom: 1px solid var(--color-border);
      box-shadow: 0 8px 20px rgba(71, 52, 37, .04);
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0 10px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--color-text);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 13px;
      background: var(--color-primary);
      color: #fff;
      font-size: 14px;
      line-height: 1;
      box-shadow: 0 10px 24px rgba(232, 111, 69, .22);
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
    }

    .brand-name {
      font-size: 17px;
      word-break: break-word;
    }

    .brand-note {
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 600;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      background: var(--color-soft);
      border: 1px solid var(--color-border);
      color: var(--color-muted);
      font-size: 13px;
      white-space: nowrap;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(232, 111, 69, .12);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .chip-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      padding: 0 0 14px;
      scrollbar-width: none;
    }

    .chip-nav::-webkit-scrollbar {
      display: none;
    }

    .nav-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      background: var(--color-soft);
      border: 1px solid var(--color-border);
      color: var(--color-muted);
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-chip:hover {
      color: var(--color-text);
      border-color: rgba(232, 111, 69, .42);
      background: #fff8f3;
      transform: translateY(-1px);
    }

    .nav-chip.active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      box-shadow: 0 10px 22px rgba(232, 111, 69, .22);
    }

    .nav-chip .count {
      min-width: 22px;
      height: 22px;
      padding: 0 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .68);
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .button,
    .button.primary-button,
    .button.secondary-button {
      min-height: 44px;
      border-radius: var(--radius-pill);
      font-weight: 800;
      padding: 12px 22px;
      margin: 0;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .primary-button {
      background: var(--color-primary);
      color: #fff;
      box-shadow: 0 12px 28px rgba(232, 111, 69, .24);
    }

    .primary-button:hover,
    .primary-button:focus {
      background: var(--color-primary-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(232, 111, 69, .3);
    }

    .secondary-button {
      background: #fff;
      color: var(--color-primary-dark);
      border: 1px solid rgba(232, 111, 69, .46);
    }

    .secondary-button:hover,
    .secondary-button:focus {
      background: #fff3ec;
      color: var(--color-primary-dark);
      transform: translateY(-2px);
    }

    .button:focus-visible,
    .nav-chip:focus-visible,
    .icon-button:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 2px solid #6b3a2d;
      outline-offset: 3px;
    }

    main {
      overflow: hidden;
    }

    section {
      padding: var(--section) 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: #f7e3d8;
      color: var(--color-primary-dark);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .section-kicker::before {
      content: "";
      width: 18px;
      height: 3px;
      border-radius: 2px;
      background: var(--color-primary);
    }

    .section-title {
      max-width: 760px;
      margin: 0 0 14px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.24;
      font-weight: 800;
      color: var(--color-text);
    }

    .section-desc {
      max-width: 820px;
      margin: 0 0 28px;
      color: var(--color-muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .hero {
      padding: 30px 0 64px;
      background:
        linear-gradient(180deg, rgba(255, 253, 252, .72), rgba(248, 243, 236, 0) 58%),
        radial-gradient(circle at 10% 10%, rgba(244, 181, 106, .2), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(185, 109, 113, .16), transparent 28%);
    }

    .age-callout {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      padding: 13px 16px;
      margin-bottom: 22px;
      border-radius: var(--radius-card);
      background: #fff7ef;
      border: 1px solid #edd2c2;
      color: #6b4032;
    }

    .age-callout strong {
      color: var(--color-primary-dark);
    }

    .hero-panel {
      position: relative;
      padding: 34px;
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(255, 253, 252, .96), rgba(247, 227, 216, .82)),
        repeating-linear-gradient(45deg, rgba(232, 111, 69, .05) 0 8px, transparent 8px 16px);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
    }

    .hero-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .release-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: var(--radius-pill);
      background: var(--color-text);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }

    .release-badge span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--color-accent);
    }

    .hero-title {
      max-width: 900px;
      margin: 0;
      font-size: clamp(30px, 5vw, 48px);
      line-height: 1.16;
      font-weight: 800;
      color: var(--color-text);
    }

    .hero-copy {
      max-width: 850px;
      margin: 18px 0 28px;
      color: #5f534d;
      font-size: 18px;
      line-height: 1.85;
    }

    .hero-grid {
      align-items: stretch;
    }

    .countdown-wrap {
      height: 100%;
      padding: 20px;
      border-radius: var(--radius-card);
      background: var(--color-surface);
      border: 1px solid var(--color-border);
    }

    .countdown-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: var(--color-muted);
      font-weight: 700;
    }

    .progress-line {
      height: 8px;
      border-radius: 999px;
      background: #eaded4;
      overflow: hidden;
      margin-bottom: 16px;
    }

    .progress-line span {
      display: block;
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }

    .time-boxes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .time-box {
      min-height: 82px;
      border-radius: 14px;
      background: #fff8f3;
      border: 1px solid #efd8ca;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--color-text);
    }

    .time-box strong {
      font-size: 28px;
      line-height: 1;
      color: var(--color-primary-dark);
    }

    .time-box span {
      margin-top: 7px;
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .entry-matrix {
      height: 100%;
      padding: 20px;
      border-radius: var(--radius-card);
      background: #2a2523;
      color: #fff;
      box-shadow: var(--shadow-card);
    }

    .entry-matrix h2 {
      margin: 0 0 14px;
      color: #fff;
      font-size: 20px;
      font-weight: 800;
    }

    .matrix-list {
      display: grid;
      gap: 10px;
      margin: 0;
      list-style: none;
    }

    .matrix-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .matrix-list b {
      font-size: 15px;
    }

    .matrix-list span {
      color: #f7d0bd;
      font-size: 13px;
      white-space: nowrap;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .proof-row {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .avatar-wall {
      display: flex;
      align-items: center;
      padding-left: 10px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      margin-left: -10px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      border: 2px solid var(--color-surface);
      background: var(--color-primary);
    }

    .avatar:nth-child(2) { background: var(--color-accent); color: #5e3b22; }
    .avatar:nth-child(3) { background: var(--color-rose); }
    .avatar:nth-child(4) { background: var(--color-purple); }
    .avatar:nth-child(5) { background: #9b806c; }
    .avatar:nth-child(6) { background: #6c756d; }

    .proof-text {
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 700;
    }

    .bubble-row {
      margin-top: 24px;
    }

    .bubble {
      position: relative;
      height: 100%;
      padding: 15px 16px;
      border-radius: 16px;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      color: #5f534d;
      box-shadow: 0 8px 18px rgba(71, 52, 37, .05);
    }

    .bubble::after {
      content: "";
      position: absolute;
      left: 22px;
      bottom: -7px;
      width: 14px;
      height: 14px;
      background: inherit;
      border-right: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      transform: rotate(45deg);
    }

    .bubble strong {
      display: block;
      margin-bottom: 4px;
      color: var(--color-text);
      font-size: 14px;
    }

    .benefits {
      background: #fff9f4;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .note-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 28px;
      align-items: start;
    }

    .timeline-note {
      position: sticky;
      top: 132px;
      padding: 22px;
      border-radius: var(--radius-card);
      background: var(--color-text);
      color: #fff;
    }

    .timeline-note h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 22px;
      font-weight: 800;
    }

    .timeline-note p {
      margin: 0;
      color: #f4d8ca;
    }

    .benefit-list {
      display: grid;
      gap: 14px;
    }

    .benefit-item {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: var(--radius-card);
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      box-shadow: 0 10px 24px rgba(71, 52, 37, .05);
    }

    .num-badge {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f7e3d8;
      color: var(--color-primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
    }

    .benefit-item h3 {
      margin: 0 0 4px;
      font-size: 19px;
      font-weight: 800;
    }

    .benefit-item p {
      margin: 0;
      color: var(--color-muted);
      line-height: 1.65;
    }

    .mini-tag,
    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: var(--radius-pill);
      background: var(--color-soft);
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .badge.hot {
      background: #f7e3d8;
      color: var(--color-primary-dark);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .visual-card {
      position: relative;
      overflow: hidden;
      min-height: 230px;
      border-radius: var(--radius-card);
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .visual-card.tall {
      min-height: 320px;
    }

    .visual-card.square {
      min-height: 260px;
    }

    .visual-card:hover {
      transform: translateY(-4px);
      border-color: rgba(232, 111, 69, .45);
      box-shadow: var(--shadow-hover);
    }

    .cover-texture {
      height: 132px;
      background:
        linear-gradient(135deg, rgba(232, 111, 69, .88), rgba(244, 181, 106, .76)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .28) 0 1px, transparent 1px 12px);
      transition: transform .2s ease;
    }

    .visual-card:hover .cover-texture {
      transform: scale(1.03);
    }

    .cover-texture.alt {
      background:
        linear-gradient(135deg, rgba(154, 138, 165, .9), rgba(239, 231, 221, .9)),
        repeating-linear-gradient(45deg, rgba(36, 32, 31, .08) 0 10px, transparent 10px 20px);
    }

    .cover-texture.dark {
      background:
        linear-gradient(135deg, #2a2523, #9b806c),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .12) 0 2px, transparent 2px 14px);
    }

    .visual-content {
      padding: 16px;
    }

    .visual-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .visual-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
    }

    .visual-card p {
      margin: 0;
      color: var(--color-muted);
      line-height: 1.68;
      font-size: 15px;
    }

    .icon-button {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--color-border);
      background: #fff;
      color: var(--color-primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .icon-button:hover {
      background: #fff3ec;
      border-color: rgba(232, 111, 69, .45);
      transform: translateY(-1px);
    }

    .cta-section {
      padding: 44px 0;
      background: linear-gradient(90deg, #2a2523, #5e4035);
      color: #fff;
    }

    .cta-band {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .cta-band h2 {
      margin: 0 0 10px;
      color: #fff;
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 800;
    }

    .cta-band p {
      max-width: 700px;
      margin: 0;
      color: #f4d8ca;
      line-height: 1.8;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cta-actions .secondary-button {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, .48);
    }

    .cta-actions .secondary-button:hover {
      background: rgba(255, 255, 255, .12);
      color: #fff;
    }

    .privacy-note {
      margin-top: 12px;
      color: #f6cdbb;
      font-size: 13px;
      text-align: right;
    }

    .faq-section {
      background: #fffdfc;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-card);
      overflow: hidden;
      background: #fffdfc;
      box-shadow: 0 8px 18px rgba(71, 52, 37, .04);
    }

    .accordion-title {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 52px 18px 18px;
      color: var(--color-text);
      font-size: 17px;
      font-weight: 800;
      border: 0;
      line-height: 1.5;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #fff7ef;
      color: var(--color-primary-dark);
    }

    .accordion-title::before {
      right: 18px;
      margin-top: -9px;
      color: var(--color-primary-dark);
      font-size: 22px;
    }

    .q-no {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #f7e3d8;
      color: var(--color-primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      font-size: 13px;
      font-weight: 900;
    }

    .is-active > .accordion-title {
      background: #fff3ec;
      color: var(--color-primary-dark);
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--color-border);
      padding: 18px 22px 22px 64px;
      color: var(--color-muted);
      line-height: 1.85;
    }

    .callout.rule-callout {
      margin-top: 22px;
      border-radius: var(--radius-card);
      border: 1px solid #edd2c2;
      background: #fff7ef;
      color: #684337;
    }

    .insight-section {
      background: var(--color-bg);
    }

    .insight-grid {
      align-items: stretch;
    }

    .quote-card,
    .catalog-card,
    .news-panel,
    .promise-item {
      height: 100%;
      padding: 20px;
      border-radius: var(--radius-card);
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
    }

    .quote-card {
      border-left: 5px solid var(--color-primary);
    }

    .quote-card h3,
    .catalog-card h3,
    .news-panel h3 {
      margin: 0 0 10px;
      font-size: 20px;
      font-weight: 800;
    }

    .quote-card p,
    .catalog-card p {
      margin: 0;
      color: var(--color-muted);
      line-height: 1.78;
    }

    .catalog-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .catalog-card {
      position: relative;
      overflow: hidden;
    }

    .catalog-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }

    .catalog-stat {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin: 14px 0 12px;
      color: var(--color-primary-dark);
      font-weight: 800;
    }

    .catalog-stat strong {
      font-size: 30px;
      line-height: 1;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 22px;
    }

    .news-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 14px;
      background: #fff8f3;
      border: 1px solid #efd8ca;
    }

    .news-list a:hover {
      background: #fff1e8;
      border-color: rgba(232, 111, 69, .42);
      transform: translateY(-2px);
    }

    .news-date {
      color: var(--color-primary-dark);
      font-weight: 800;
      font-size: 13px;
    }

    .news-title {
      font-weight: 800;
      line-height: 1.5;
    }

    .news-arrow {
      color: var(--color-primary-dark);
      font-weight: 900;
    }

    .recommend-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .promise-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .promise-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      box-shadow: none;
    }

    .promise-icon {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      background: #f7e3d8;
      color: var(--color-primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .promise-item h3 {
      margin: 0 0 4px;
      font-size: 17px;
      font-weight: 800;
    }

    .promise-item p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .mini-form {
      margin-top: 18px;
      padding: 16px;
      border-radius: var(--radius-card);
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .16);
    }

    .mini-form label {
      color: #fff;
      font-weight: 800;
      margin-bottom: 7px;
    }

    .mini-form input,
    .mini-form select {
      height: 46px;
      margin: 0;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .26);
      background: rgba(255, 255, 255, .95);
      color: var(--color-text);
      box-shadow: none;
    }

    .mini-form .form-hint {
      margin: 9px 0 0;
      color: #f4d8ca;
      font-size: 13px;
      line-height: 1.55;
    }

    .site-footer {
      padding: 44px 0 30px;
      background: #fffdfc;
      border-top: 1px solid var(--color-border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .footer-text {
      margin: 0;
      color: var(--color-muted);
      line-height: 1.78;
    }

    .footer-title {
      margin: 0 0 12px;
      font-size: 15px;
      font-weight: 900;
      color: var(--color-text);
    }

    .footer-links,
    .footer-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-links a,
    .footer-tags span {
      padding: 7px 11px;
      border-radius: var(--radius-pill);
      background: var(--color-soft);
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .footer-links a:hover {
      background: #fff3ec;
      color: var(--color-primary-dark);
    }

    .copyright {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--color-border);
      color: var(--color-muted);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      :root {
        --section: 58px;
      }

      .status-pill {
        display: none;
      }

      .note-layout,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .timeline-note {
        position: static;
      }

      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .promise-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-band {
        grid-template-columns: 1fr;
      }

      .cta-actions,
      .privacy-note {
        justify-content: flex-start;
        text-align: left;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .header-main {
        gap: 12px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
      }

      .brand-name {
        font-size: 15px;
      }

      .header-actions .button {
        padding-inline: 14px;
        font-size: 14px;
      }

      .hero {
        padding-top: 22px;
      }

      .hero-panel {
        padding: 22px;
        border-radius: 18px;
      }

      .hero-copy {
        font-size: 16px;
        line-height: 1.78;
      }

      .age-callout {
        flex-direction: column;
      }

      .gallery-grid,
      .catalog-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .benefit-item {
        grid-template-columns: 44px 1fr;
      }

      .benefit-item .mini-tag {
        grid-column: 2;
        justify-self: start;
      }

      .news-list a {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .accordion-content {
        padding-left: 22px;
      }
    }

    @media (max-width: 520px) {
      :root {
        --section: 48px;
      }

      .header-main {
        align-items: flex-start;
      }

      .brand {
        max-width: 66%;
      }

      .brand-note {
        display: none;
      }

      .nav-chip {
        padding-inline: 14px;
      }

      .time-boxes {
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(92px, 1fr));
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .button,
      .cta-actions .button {
        width: 100%;
      }

      .gallery-grid {
        gap: 12px;
      }

      .visual-card {
        min-height: 238px;
      }

      .visual-card.tall,
      .visual-card.square {
        min-height: 270px;
      }

      .cover-texture {
        height: 110px;
      }

      .visual-content {
        padding: 13px;
      }

      .visual-card h3 {
        font-size: 16px;
      }

      .promise-bar {
        grid-template-columns: 1fr;
      }

      .bubble {
        margin-bottom: 12px;
      }

      .mini-form .grid-x {
        row-gap: 12px;
      }
    }

/* roulang page: category1 */
:root{
      --color-primary:#E86F45;
      --color-primary-dark:#C95A34;
      --color-accent:#F4B56A;
      --color-bg:#F8F3EC;
      --color-surface:#FFFDFC;
      --color-surface-2:#FFF8F1;
      --color-text:#24201F;
      --color-muted:#766B64;
      --color-border:#E7DCD2;
      --color-border-strong:#DCCABD;
      --color-shadow:0 12px 30px rgba(71,52,37,.08);
      --color-shadow-strong:0 18px 40px rgba(71,52,37,.12);
      --radius-card:18px;
      --radius-soft:14px;
      --radius-pill:999px;
      --container:1120px;
      --content:820px;
      --space-1:6px;
      --space-2:10px;
      --space-3:14px;
      --space-4:18px;
      --space-5:24px;
      --space-6:32px;
      --space-7:40px;
      --space-8:56px;
      --space-9:72px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at top left, rgba(244,181,106,.12), transparent 32%),
        radial-gradient(circle at top right, rgba(232,111,69,.10), transparent 26%),
        linear-gradient(180deg, #fbf8f3 0%, var(--color-bg) 100%);
      letter-spacing:0;
      line-height:1.8;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(232,111,69,.18)}
    .site-container{
      width:min(100% - 32px, var(--container));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:saturate(180%);
      background:rgba(248,243,236,.92);
      border-bottom:1px solid rgba(231,220,210,.92);
      box-shadow:0 4px 20px rgba(71,52,37,.04);
    }
    .header-main{
      display:flex;
      align-items:center;
      gap:16px;
      justify-content:space-between;
      padding:14px 0 10px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg, var(--color-primary), #f18b64);
      box-shadow:0 10px 24px rgba(232,111,69,.24);
      font-weight:800;
      letter-spacing:0;
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-name{
      font-size:18px;
      line-height:1.2;
      font-weight:800;
      color:var(--color-text);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-note{
      font-size:12px;
      color:var(--color-muted);
      margin-top:2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      background:linear-gradient(180deg, #fff8f1, #fffdfb);
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      color:#5f524c;
      font-size:13px;
      line-height:1.3;
      box-shadow:0 8px 18px rgba(71,52,37,.05);
      white-space:nowrap;
    }
    .status-dot{
      width:9px;height:9px;border-radius:50%;
      background:var(--color-primary);
      box-shadow:0 0 0 5px rgba(232,111,69,.12);
      flex:0 0 auto;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .button{
      border-radius:999px;
      min-height:44px;
      padding:.82rem 1.15rem;
      font-weight:700;
      line-height:1;
      border:1px solid transparent;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }
    .button:hover{transform:translateY(-1px)}
    .button:active{transform:translateY(0)}
    .button:focus-visible,
    .nav-chip:focus-visible,
    .tag-btn:focus-visible,
    .accordion-title:focus-visible,
    input:focus-visible{
      outline:2px solid rgba(232,111,69,.85);
      outline-offset:2px;
    }
    .primary-button{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 10px 22px rgba(232,111,69,.20);
    }
    .primary-button:hover{background:var(--color-primary-dark);color:#fff}
    .ghost-button{
      background:#fff;
      color:var(--color-primary);
      border-color:rgba(232,111,69,.36);
    }
    .ghost-button:hover{
      background:rgba(232,111,69,.08);
      color:var(--color-primary-dark);
      border-color:rgba(232,111,69,.52);
    }
    .chip-nav{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:0 0 14px;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }
    .chip-nav::-webkit-scrollbar{display:none}
    .nav-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid var(--color-border);
      background:rgba(255,255,255,.72);
      color:#4c423d;
      font-size:14px;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      min-height:42px;
    }
    .nav-chip .count,
    .mini-count{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:22px;
      height:22px;
      padding:0 7px;
      border-radius:999px;
      background:#efe6dd;
      color:#7b6455;
      font-size:12px;
      font-weight:700;
    }
    .nav-chip:hover{
      border-color:rgba(232,111,69,.45);
      background:#fff;
      color:var(--color-text);
      box-shadow:0 10px 22px rgba(71,52,37,.06);
    }
    .nav-chip.active{
      background:linear-gradient(135deg, var(--color-primary), #ef8a5c);
      color:#fff;
      border-color:transparent;
      box-shadow:0 12px 24px rgba(232,111,69,.22);
    }
    .nav-chip.active .count{
      background:rgba(255,255,255,.18);
      color:#fff;
    }
    .age-strip{
      margin:18px 0 0;
      border-left:5px solid var(--color-primary);
      background:linear-gradient(180deg, #fffaf5, #fffdfa);
      color:#5f514a;
      border-radius:16px;
      box-shadow:var(--color-shadow);
    }
    .age-strip .callout-title{
      font-weight:800;
      color:var(--color-text);
      margin-bottom:4px;
    }
    .section{
      padding:var(--space-8) 0;
    }
    .section-tight{padding-top:24px}
    .hero-wrap{
      padding:26px 0 16px;
    }
    .hero-card{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at top right, rgba(244,181,106,.16), transparent 22%),
        radial-gradient(circle at left center, rgba(232,111,69,.08), transparent 22%),
        linear-gradient(180deg, #fffdfb 0%, #fff9f4 100%);
      border:1px solid rgba(231,220,210,.95);
      border-radius:28px;
      box-shadow:var(--color-shadow);
      padding:28px;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(232,111,69,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,111,69,.04) 1px, transparent 1px);
      background-size:32px 32px;
      opacity:.55;
      pointer-events:none;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.5), transparent 88%);
    }
    .hero-grid{
      position:relative;
      z-index:1;
      align-items:stretch;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      padding:8px 12px;
      border-radius:999px;
      background:#f7e3d8;
      color:#8a5642;
      font-size:13px;
      font-weight:700;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--color-primary);
    }
    h1,h2,h3,p{margin:0}
    h1{
      font-size:clamp(32px, 4vw, 48px);
      line-height:1.14;
      letter-spacing:0;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:14px;
    }
    .hero-lead{
      font-size:17px;
      line-height:1.86;
      color:#4f433d;
      max-width:42rem;
      margin-bottom:18px;
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      max-width:640px;
      margin:20px 0 18px;
    }
    .stat-box{
      background:rgba(255,255,255,.88);
      border:1px solid var(--color-border);
      border-radius:18px;
      padding:14px 14px 13px;
      box-shadow:0 8px 18px rgba(71,52,37,.05);
    }
    .stat-num{
      font-size:28px;
      line-height:1;
      font-weight:800;
      color:var(--color-primary-dark);
      margin-bottom:6px;
    }
    .stat-label{
      font-size:13px;
      color:var(--color-muted);
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin:18px 0 8px;
    }
    .subnote{
      font-size:13px;
      color:var(--color-muted);
      margin-top:8px;
    }
    .hero-side{
      display:flex;
      flex-direction:column;
      gap:14px;
      height:100%;
    }
    .panel{
      background:var(--color-surface);
      border:1px solid var(--color-border);
      border-radius:22px;
      box-shadow:var(--color-shadow);
      padding:18px;
    }
    .panel-title{
      font-size:18px;
      font-weight:800;
      margin-bottom:12px;
      color:var(--color-text);
    }
    .panel-sub{
      font-size:13px;
      color:var(--color-muted);
      margin-bottom:14px;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
      margin-bottom:14px;
    }
    .count-item{
      text-align:center;
      padding:12px 10px;
      border-radius:18px;
      background:linear-gradient(180deg, #fff6ee, #fffdfb);
      border:1px solid rgba(232,111,69,.16);
    }
    .count-item strong{
      display:block;
      font-size:30px;
      line-height:1;
      color:var(--color-primary-dark);
      margin-bottom:6px;
    }
    .count-item span{
      font-size:12px;
      color:var(--color-muted);
    }
    .step-list{
      display:grid;
      gap:10px;
    }
    .step{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:12px 12px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--color-border);
    }
    .step-index{
      width:28px;
      height:28px;
      flex:0 0 auto;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#f7e3d8;
      color:#8f5641;
      font-weight:800;
      font-size:13px;
    }
    .step strong{
      display:block;
      font-size:14px;
      margin-bottom:2px;
      color:var(--color-text);
    }
    .step span{
      display:block;
      color:var(--color-muted);
      font-size:13px;
      line-height:1.6;
    }
    .tone-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tone-tag{
      padding:8px 11px;
      border-radius:999px;
      background:#f7eee7;
      color:#71584c;
      border:1px solid #eaded3;
      font-size:12px;
      line-height:1;
      font-weight:700;
    }
    .tone-tag.hot{background:#f7e3d8;color:#8b503a;border-color:#efc9b4}
    .bubble-stack{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .bubble{
      position:relative;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(231,220,210,.95);
      background:#fff;
      box-shadow:0 8px 18px rgba(71,52,37,.05);
      color:#4f433d;
      font-size:13px;
      line-height:1.7;
    }
    .bubble::before{
      content:"";
      position:absolute;
      left:18px;
      top:-7px;
      width:12px;
      height:12px;
      background:#fff;
      border-left:1px solid rgba(231,220,210,.95);
      border-top:1px solid rgba(231,220,210,.95);
      transform:rotate(45deg);
    }
    .bubble strong{
      display:block;
      margin-bottom:4px;
      color:var(--color-text);
    }
    .avatar-wall{
      display:flex;
      align-items:center;
      margin-top:8px;
    }
    .avatar{
      width:40px;
      height:40px;
      border-radius:50%;
      border:2px solid #fff;
      box-shadow:0 8px 16px rgba(71,52,37,.09);
      display:grid;
      place-items:center;
      color:#fff;
      font-size:12px;
      font-weight:800;
      margin-left:-10px;
      background:linear-gradient(135deg, #b58b77, #e86f45);
    }
    .avatar:first-child{margin-left:0}
    .avatar.a1{background:linear-gradient(135deg,#e86f45,#f29a6e)}
    .avatar.a2{background:linear-gradient(135deg,#c88b6a,#dba889)}
    .avatar.a3{background:linear-gradient(135deg,#8b7a9a,#b59fbf)}
    .avatar.a4{background:linear-gradient(135deg,#9d7b6a,#cfac93)}
    .avatar.a5{background:linear-gradient(135deg,#cd6d5a,#f0a37e)}
    .avatar.a6{background:linear-gradient(135deg,#9f8c77,#d8c0a8)}
    .avatar.a7{background:linear-gradient(135deg,#b07184,#d39cab)}
    .avatar.a8{background:linear-gradient(135deg,#8b8a9f,#c2c1d7)}
    .avatar-note{
      margin-left:12px;
      font-size:13px;
      color:var(--color-muted);
      line-height:1.5;
    }
    .section-title{
      margin-bottom:18px;
    }
    .section-title .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:#f7e3d8;
      color:#8b5641;
      font-size:13px;
      font-weight:700;
      margin-bottom:10px;
    }
    .section-title h2{
      font-size:clamp(26px, 3vw, 36px);
      line-height:1.22;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:8px;
    }
    .section-title p{
      color:var(--color-muted);
      font-size:16px;
      line-height:1.8;
      max-width:46rem;
    }
    .filter-strip{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      padding:14px;
      border:1px solid var(--color-border);
      border-radius:20px;
      background:rgba(255,255,255,.7);
      box-shadow:0 10px 22px rgba(71,52,37,.05);
    }
    .filter-label{
      font-size:13px;
      font-weight:800;
      color:#5e4e47;
      background:#f8eee7;
      border:1px solid #eaded3;
      padding:8px 12px;
      border-radius:999px;
    }
    .tag-btn{
      min-height:40px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      border:1px solid var(--color-border);
      background:#fff;
      padding:8px 14px;
      color:#5d514a;
      font-size:14px;
      font-weight:700;
      line-height:1;
      transition:all .2s ease;
    }
    .tag-btn:hover{
      border-color:rgba(232,111,69,.4);
      background:#fffaf7;
      color:var(--color-text);
      box-shadow:0 8px 18px rgba(71,52,37,.05);
    }
    .tag-btn.active{
      background:rgba(232,111,69,.12);
      border-color:rgba(232,111,69,.38);
      color:var(--color-primary-dark);
    }
    .tag-btn .badge{
      background:#efe6dd;
      color:#7a6558;
      border-radius:999px;
      padding:.18rem .48rem;
      font-size:11px;
      margin-left:2px;
    }
    .content-area{
      padding-top:18px;
    }
    .featured-card{
      position:relative;
      overflow:hidden;
      background:linear-gradient(180deg, #fffdfb, #fff8f1);
      border:1px solid var(--color-border);
      border-radius:24px;
      box-shadow:var(--color-shadow);
      margin-bottom:18px;
    }
    .featured-card .grid-x{min-height:100%}
    .feature-visual{
      min-height:100%;
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:16px;
      border-right:1px solid rgba(231,220,210,.8);
      background:
        radial-gradient(circle at 85% 20%, rgba(244,181,106,.28), transparent 20%),
        radial-gradient(circle at 15% 80%, rgba(232,111,69,.18), transparent 18%),
        linear-gradient(135deg, #f7e9dd 0%, #fff9f4 100%);
    }
    .cover-mark{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      color:#8b5a45;
      width:max-content;
      font-size:12px;
      font-weight:800;
      border:1px solid rgba(231,220,210,.82);
    }
    .cover-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      color:#8d5a45;
      font-size:12px;
      font-weight:800;
      border:1px solid rgba(232,111,69,.18);
      width:max-content;
      box-shadow:0 8px 18px rgba(71,52,37,.05);
    }
    .cover-figure{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
    }
    .abstract-block{
      border-radius:18px;
      min-height:118px;
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.55);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
      padding:14px;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .abstract-block::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.14));
      pointer-events:none;
    }
    .ab-1{background:linear-gradient(135deg,#d98b6f,#f5b07e)}
    .ab-2{background:linear-gradient(135deg,#8f7da1,#c7b4d1)}
    .ab-3{background:linear-gradient(135deg,#b48b79,#dfc0aa)}
    .ab-4{background:linear-gradient(135deg,#8f9a9c,#c8d0d2)}
    .abstract-block strong,
    .abstract-block span{position:relative;z-index:1}
    .abstract-block strong{font-size:18px;line-height:1.2}
    .abstract-block span{font-size:12px;opacity:.94}
    .featured-copy{
      padding:24px 22px;
    }
    .featured-copy .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .meta-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:#f7eee7;
      color:#745b50;
      font-size:12px;
      font-weight:700;
      border:1px solid #eaded3;
    }
    .meta-tag.hot{background:#f7e3d8;color:#8c5742;border-color:#efc9b4}
    .card-title{
      font-size:24px;
      line-height:1.28;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:10px;
    }
    .card-desc{
      color:#584b45;
      font-size:15px;
      line-height:1.86;
      margin-bottom:14px;
    }
    .mini-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .mini-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#5a4e48;
      font-size:14px;
      line-height:1.7;
    }
    .mini-list i{
      width:22px;height:22px;
      border-radius:50%;
      display:inline-grid;
      place-items:center;
      background:#f7e3d8;
      color:#8d5742;
      font-style:normal;
      font-weight:800;
      font-size:12px;
      flex:0 0 auto;
      margin-top:1px;
    }
    .mini-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .mini-actions .button{
      min-height:42px;
      padding:.75rem 1rem;
      font-size:14px;
    }
    .topic-grid{
      margin-top:18px;
    }
    .story-card{
      background:var(--color-surface);
      border:1px solid var(--color-border);
      border-radius:22px;
      overflow:hidden;
      box-shadow:var(--color-shadow);
      height:100%;
      display:flex;
      flex-direction:column;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .story-card:hover{
      transform:translateY(-3px);
      border-color:rgba(232,111,69,.26);
      box-shadow:var(--color-shadow-strong);
    }
    .story-visual{
      position:relative;
      min-height:170px;
      padding:16px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
    }
    .story-visual::before{
      content:"";
      position:absolute;
      inset:-25% -10% auto auto;
      width:180px;
      height:180px;
      border-radius:50%;
      background:rgba(255,255,255,.18);
      filter:blur(0.5px);
    }
    .story-visual::after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:42%;
      background:linear-gradient(180deg, transparent, rgba(0,0,0,.2));
    }
    .story-visual .topline,
    .story-visual .subline{
      position:relative;
      z-index:1;
      color:#fff;
    }
    .story-visual .topline{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      font-weight:800;
      font-size:13px;
    }
    .story-visual .subline{
      font-size:12px;
      opacity:.95;
      line-height:1.6;
      max-width:70%;
    }
    .story-visual .score{
      position:relative;
      z-index:1;
      align-self:flex-start;
      margin-top:auto;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.85);
      color:#7d5342;
      font-size:12px;
      font-weight:800;
    }
    .story-visual.v1{background:linear-gradient(135deg,#d98d70,#f1c08e)}
    .story-visual.v2{background:linear-gradient(135deg,#9080a8,#c7b8d2)}
    .story-visual.v3{background:linear-gradient(135deg,#9d7a6b,#d9b89d)}
    .story-visual.v4{background:linear-gradient(135deg,#8d959a,#c7d1d3)}
    .story-visual.v5{background:linear-gradient(135deg,#c57963,#efb18b)}
    .story-visual.v6{background:linear-gradient(135deg,#aa8b75,#ead0bd)}
    .story-body{
      padding:16px 16px 18px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .story-topline{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .story-heading{
      font-size:18px;
      line-height:1.35;
      font-weight:800;
      color:var(--color-text);
    }
    .story-summary{
      color:#5b4f49;
      font-size:14px;
      line-height:1.82;
    }
    .story-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-top:auto;
      padding-top:6px;
    }
    .story-time{
      font-size:12px;
      color:var(--color-muted);
    }
    .action-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .action-row .button{
      min-height:38px;
      padding:.62rem .92rem;
      font-size:13px;
    }
    .side-stack{
      display:grid;
      gap:16px;
      position:sticky;
      top:144px;
    }
    .sidebar-box{
      background:rgba(255,255,255,.78);
      border:1px solid var(--color-border);
      border-radius:22px;
      box-shadow:var(--color-shadow);
      padding:18px;
    }
    .sidebar-box h3{
      font-size:18px;
      font-weight:800;
      margin-bottom:10px;
      color:var(--color-text);
    }
    .sidebar-box p{
      font-size:14px;
      line-height:1.78;
      color:#5c4f49;
      margin-bottom:12px;
    }
    .mini-avatar-wall{
      display:flex;
      align-items:center;
      margin-top:10px;
      margin-bottom:8px;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud span{
      display:inline-flex;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      background:#f7eee7;
      border:1px solid #eaded3;
      color:#6d564a;
      font-size:12px;
      font-weight:700;
    }
    .rule-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .rule-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#5a4e48;
      font-size:14px;
      line-height:1.7;
    }
    .rule-list b{
      width:22px;height:22px;
      border-radius:50%;
      display:inline-grid;
      place-items:center;
      background:#f7e3d8;
      color:#8b5641;
      flex:0 0 auto;
      font-size:12px;
      margin-top:1px;
    }
    .mini-callout{
      border-left:4px solid var(--color-primary);
      background:linear-gradient(180deg, #fffaf5, #fffdfb);
      border-radius:16px;
      padding:14px 14px 14px 16px;
      color:#5e514a;
      font-size:13px;
      line-height:1.8;
      border-top:1px solid rgba(231,220,210,.9);
      border-right:1px solid rgba(231,220,210,.9);
      border-bottom:1px solid rgba(231,220,210,.9);
    }
    .mini-callout strong{display:block;color:var(--color-text);margin-bottom:4px}
    .faq-wrap{
      background:linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,252,248,.92));
      border-top:1px solid rgba(231,220,210,.75);
      border-bottom:1px solid rgba(231,220,210,.75);
    }
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid var(--color-border);
      background:#fffdfb;
      box-shadow:0 8px 18px rgba(71,52,37,.04);
    }
    .accordion-title{
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:var(--color-text);
      font-size:16px;
      line-height:1.55;
      padding:16px 18px;
      font-weight:800;
      background:#fffdfb;
      border:0;
    }
    .faq-q{
      width:28px;
      height:28px;
      flex:0 0 auto;
      border-radius:50%;
      display:grid;
      place-items:center;
      font-size:13px;
      background:#f7e3d8;
      color:#8e5842;
      margin-top:1px;
    }
    .accordion-item.is-active > .accordion-title{
      background:linear-gradient(180deg, #fff3ea, #fff8f2);
      border-bottom:1px solid rgba(231,220,210,.85);
    }
    .accordion-content{
      padding:0 18px 18px 58px;
      color:#5b4d46;
      font-size:15px;
      line-height:1.85;
      border:0;
      background:transparent;
    }
    .faq-note{
      margin-top:18px;
    }
    .cta-band{
      padding:0 0 26px;
    }
    .cta-inner{
      background:linear-gradient(135deg, #f6e2d7 0%, #fff7ef 55%, #fffdfb 100%);
      border:1px solid rgba(232,111,69,.18);
      border-radius:26px;
      box-shadow:var(--color-shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-inner::after{
      content:"";
      position:absolute;
      right:-40px;
      top:-40px;
      width:180px;
      height:180px;
      border-radius:50%;
      background:rgba(232,111,69,.08);
    }
    .cta-grid{
      position:relative;
      z-index:1;
      padding:24px;
      align-items:center;
    }
    .cta-title{
      font-size:clamp(24px, 2.6vw, 34px);
      line-height:1.22;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:10px;
    }
    .cta-copy{
      color:#5a4c45;
      font-size:15px;
      line-height:1.82;
      max-width:44rem;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      align-items:center;
    }
    .cta-actions .button{
      min-width:150px;
    }
    .cta-meta{
      margin-top:10px;
      font-size:12px;
      color:#7c6a61;
    }
    .site-footer{
      padding:26px 0 28px;
      background:linear-gradient(180deg, #fffdfb, #f9f3eb);
      border-top:1px solid rgba(231,220,210,.95);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .9fr;
      gap:22px;
      padding:12px 0 18px;
    }
    .footer-brand{
      font-size:18px;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:10px;
    }
    .footer-text{
      font-size:14px;
      line-height:1.85;
      color:#5f524b;
      margin:0;
      max-width:32rem;
    }
    .footer-title{
      font-size:14px;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:12px;
    }
    .footer-links,
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-links a,
    .footer-tags span{
      display:inline-flex;
      align-items:center;
      min-height:36px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--color-border);
      color:#5c514a;
      font-size:13px;
      line-height:1;
    }
    .footer-links a:hover{
      border-color:rgba(232,111,69,.4);
      color:var(--color-primary-dark);
      box-shadow:0 8px 16px rgba(71,52,37,.05);
    }
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      padding-top:16px;
      border-top:1px solid rgba(231,220,210,.9);
      color:#7b6b63;
      font-size:12px;
      line-height:1.6;
    }
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:#84766f;
      font-size:12px;
      margin-bottom:14px;
    }
    .breadcrumb a{color:#7a675f}
    .breadcrumb span{opacity:.7}
    .soft-divider{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(231,220,210,.95), transparent);
      margin:22px 0;
    }
    .tiny-label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:#f7eee7;
      color:#7b5d50;
      font-size:12px;
      font-weight:700;
    }
    .stack-gap{gap:18px}
    .muted{color:var(--color-muted)}
    .no-wrap{white-space:nowrap}
    @media screen and (max-width: 63.9375em){
      .header-main{
        align-items:flex-start;
        flex-direction:column;
      }
      .status-pill{
        white-space:normal;
      }
      .header-actions{
        width:100%;
        justify-content:flex-start;
      }
      .hero-card{padding:22px}
      .hero-grid .cell + .cell{margin-top:18px}
      .hero-side{
        display:grid;
        grid-template-columns:1fr;
      }
      .side-stack{position:static}
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
    }
    @media screen and (max-width: 47.9375em){
      .site-container{width:min(100% - 22px, var(--container))}
      .brand-name{font-size:16px}
      .brand-note{max-width:20rem}
      .hero-card{border-radius:22px;padding:18px}
      .hero-stats{
        grid-template-columns:1fr;
      }
      h1{font-size:clamp(28px, 8vw, 36px)}
      .hero-lead{font-size:16px}
      .panel{padding:16px}
      .countdown{grid-template-columns:repeat(3, minmax(0,1fr))}
      .count-item strong{font-size:24px}
      .cover-figure{grid-template-columns:1fr 1fr}
      .featured-copy{padding:18px}
      .card-title{font-size:21px}
      .featured-card .cell.small-12{padding-left:0;padding-right:0}
      .footer-grid{
        grid-template-columns:1fr;
      }
      .copyright{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-grid{padding:20px}
      .cta-actions .button{min-width:0;flex:1 1 100%}
      .accordion-content{padding-left:18px}
    }
    @media screen and (max-width: 33.75em){
      .chip-nav{padding-bottom:10px}
      .nav-chip{padding:10px 13px}
      .hero-card{padding:16px}
      .hero-actions .button,
      .header-actions .button,
      .cta-actions .button{width:100%}
      .hero-actions{display:grid}
      .tone-row{gap:7px}
      .cover-figure{grid-template-columns:1fr}
      .story-visual{min-height:156px}
      .filter-strip{padding:12px}
      .tag-btn{min-height:38px;padding:8px 12px}
      .cta-inner{border-radius:22px}
    }
