/* roulang page: index */
:root {
      --bg: #fff8ee;
      --bg-deep: #22111f;
      --panel: #fffdf8;
      --panel-soft: #fff2df;
      --ink: #251b20;
      --muted: #706067;
      --line: rgba(44, 25, 35, .13);
      --primary: #b4114e;
      --primary-dark: #7f0e3e;
      --accent: #ff9f1c;
      --cyan: #21d6c7;
      --lime: #e7ff5b;
      --cream: #fff8ee;
      --radius: 8px;
      --shadow: 0 14px 32px rgba(58, 22, 38, .12);
      --shadow-soft: 0 8px 22px rgba(58, 22, 38, .08);
      --nav-width: 224px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at 92% 8%, rgba(255, 159, 28, .18), transparent 30%),
        linear-gradient(180deg, #fff8ee 0%, #fff3e0 46%, #fffaf1 100%);
      color: var(--ink);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font-family: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(33, 214, 199, .6);
      outline-offset: 3px;
    }

    .site-shell {
      min-height: 100vh;
    }

    .side-nav {
      position: fixed;
      inset: 0 auto 0 0;
      width: var(--nav-width);
      z-index: 30;
      background: #21101e;
      color: #fff8ee;
      border-right: 1px solid rgba(255, 248, 238, .12);
      padding: 22px 16px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      box-shadow: 12px 0 30px rgba(34, 17, 31, .18);
    }

    .brand-mark {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: conic-gradient(from 140deg, var(--accent), var(--primary), var(--cyan), var(--accent));
      color: #20101c;
      font-weight: 900;
      box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .26);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 16px;
      line-height: 1.35;
      font-weight: 800;
    }

    .nav-group-label {
      margin: 8px 10px 2px;
      color: rgba(255, 248, 238, .58);
      font-size: 12px;
    }

    .nav-link {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 10px 12px;
      border-radius: var(--radius);
      color: rgba(255, 248, 238, .82);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-link::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 99px;
      background: rgba(255, 248, 238, .32);
      box-shadow: 0 0 0 4px rgba(255, 248, 238, .05);
      flex: 0 0 auto;
    }

    .nav-link:hover,
    .nav-link.active {
      background: rgba(255, 248, 238, .1);
      color: #fff;
      transform: translateX(2px);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: -16px;
      top: 10px;
      width: 4px;
      height: 26px;
      border-radius: 0 4px 4px 0;
      background: var(--accent);
    }

    .nav-link.active::before {
      background: var(--lime);
    }

    .side-bottom {
      margin-top: auto;
      padding: 14px 12px;
      border: 1px solid rgba(255, 248, 238, .12);
      border-radius: var(--radius);
      background: rgba(255, 248, 238, .06);
      font-size: 12px;
      color: rgba(255, 248, 238, .72);
    }

    .status-dot {
      display: inline-flex;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      margin-right: 6px;
      background: var(--cyan);
      box-shadow: 0 0 0 4px rgba(33, 214, 199, .12);
    }

    .mobile-bar {
      display: none;
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 35;
      height: 60px;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      background: #21101e;
      color: #fff8ee;
      box-shadow: 0 10px 24px rgba(34, 17, 31, .16);
    }

    .menu-button {
      width: 42px;
      height: 42px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 248, 238, .18);
      background: rgba(255, 248, 238, .08);
      color: #fff8ee;
      font-size: 22px;
      cursor: pointer;
    }

    .off-canvas {
      background: #21101e;
      color: #fff8ee;
      padding: 18px;
    }

    .main-content {
      margin-left: var(--nav-width);
      min-height: 100vh;
      overflow: hidden;
    }

    .page-wrap {
      width: min(1280px, calc(100% - 56px));
      margin: 0 auto;
      padding: 28px 0 0;
    }

    section {
      margin: 0 0 64px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-radius: 0 0 8px 8px;
      background:
        linear-gradient(135deg, #351126 0%, #8e0f45 48%, #ff9f1c 118%);
      color: #fff8ee;
      box-shadow: var(--shadow);
    }

    .countdown-strip {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 18px;
      padding: 15px 18px;
      background: rgba(16, 9, 15, .55);
      border-bottom: 1px solid rgba(255, 248, 238, .15);
    }

    .countdown-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 15px;
    }

    .countdown-title span:first-child {
      display: inline-grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: var(--lime);
      color: #20101c;
    }

    .flip-time {
      display: flex;
      gap: 7px;
      align-items: center;
      white-space: nowrap;
    }

    .flip-box {
      min-width: 42px;
      padding: 4px 7px;
      border-radius: 6px;
      background: #fff8ee;
      color: #2a0e20;
      text-align: center;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.15;
    }

    .flip-unit {
      font-size: 12px;
      color: rgba(255, 248, 238, .78);
      margin-left: -4px;
    }

    .hero-stage {
      padding: clamp(28px, 5vw, 62px);
    }

    .hero-grid {
      align-items: stretch;
    }

    .hero-copy {
      max-width: 720px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 6px;
      background: rgba(255, 248, 238, .12);
      color: #fff8ee;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0 0 16px;
      color: #fff8ee;
      font-size: clamp(30px, 5vw, 56px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-copy p {
      max-width: 660px;
      margin: 0 0 24px;
      font-size: 17px;
      color: rgba(255, 248, 238, .88);
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .button {
      border-radius: 7px;
      font-weight: 800;
      min-height: 46px;
      line-height: 1.2;
      transition: var(--ease);
      margin: 0;
    }

    .button.primary-action {
      background: var(--lime);
      color: #20101c;
      box-shadow: 0 12px 22px rgba(231, 255, 91, .18);
    }

    .button.primary-action:hover {
      background: #f0ff78;
      color: #20101c;
      transform: translateY(-2px);
    }

    .button.secondary-action {
      background: transparent;
      color: #fff8ee;
      border: 1px solid rgba(255, 248, 238, .38);
    }

    .button.secondary-action:hover {
      background: rgba(255, 248, 238, .12);
      color: #fff;
      transform: translateY(-2px);
    }

    .recommend-stack {
      display: grid;
      gap: 14px;
    }

    .recommend-card {
      padding: 18px;
      border-radius: var(--radius);
      background: rgba(255, 248, 238, .1);
      border: 1px solid rgba(255, 248, 238, .18);
    }

    .recommend-card.highlight {
      background: #fff8ee;
      color: var(--ink);
      box-shadow: 0 20px 44px rgba(0, 0, 0, .18);
    }

    .recommend-card strong {
      display: block;
      font-size: 19px;
      margin-bottom: 6px;
    }

    .recommend-card p {
      margin: 0 0 12px;
      color: inherit;
      opacity: .82;
      font-size: 14px;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 28px;
    }

    .stat-pill {
      padding: 12px;
      border-radius: var(--radius);
      background: rgba(255, 248, 238, .1);
      border: 1px solid rgba(255, 248, 238, .13);
    }

    .stat-pill b {
      display: block;
      font-size: 22px;
      color: var(--lime);
      line-height: 1.1;
    }

    .stat-pill span {
      font-size: 12px;
      color: rgba(255, 248, 238, .75);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 22px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.25;
      font-weight: 900;
      color: var(--ink);
    }

    .section-head p {
      max-width: 610px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .benefit-card,
    .tier-card,
    .plan-card,
    .news-card,
    .faq-card {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow-soft);
      transition: var(--ease);
    }

    .benefit-card:hover,
    .tier-card:hover,
    .plan-card:hover,
    .news-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .benefit-card {
      min-height: 218px;
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .benefit-card::after {
      content: "";
      position: absolute;
      right: -34px;
      bottom: -42px;
      width: 140px;
      height: 100px;
      background: repeating-linear-gradient(90deg, rgba(180, 17, 78, .14) 0 6px, transparent 6px 14px);
      transform: rotate(-16deg);
    }

    .card-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 7px;
      background: #2a1023;
      color: var(--lime);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .benefit-card h3,
    .tier-card h3,
    .plan-card h3 {
      margin: 0 0 9px;
      font-size: 20px;
      font-weight: 900;
      color: var(--ink);
    }

    .benefit-card p,
    .tier-card p,
    .plan-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 6px;
      background: rgba(180, 17, 78, .1);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .wall {
      padding: 34px;
      border-radius: var(--radius);
      background: #24111f;
      color: #fff8ee;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .wall .section-head h2,
    .wall .section-head p {
      color: #fff8ee;
    }

    .wall .section-head p {
      opacity: .75;
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      grid-auto-rows: 154px;
      gap: 14px;
    }

    .wall-tile {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      padding: 18px;
      background:
        linear-gradient(145deg, rgba(255, 248, 238, .12), rgba(255, 248, 238, .05)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 4px, transparent 4px 13px);
      border: 1px solid rgba(255, 248, 238, .14);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-width: 0;
    }

    .wall-tile.large {
      grid-row: span 2;
    }

    .wall-tile.wide {
      grid-column: span 2;
    }

    .wall-tile.accent {
      background: linear-gradient(135deg, #ff9f1c, #b4114e);
      color: #fff;
    }

    .wall-tile.cyan {
      background: linear-gradient(135deg, rgba(33, 214, 199, .92), rgba(231, 255, 91, .82));
      color: #20101c;
    }

    .wall-tile b {
      font-size: 22px;
      line-height: 1.25;
      position: relative;
      z-index: 1;
    }

    .wall-tile span {
      max-width: 320px;
      font-size: 14px;
      opacity: .82;
      position: relative;
      z-index: 1;
    }

    .wall-tile::after {
      content: "";
      position: absolute;
      right: 18px;
      top: 20px;
      width: 80px;
      height: 46px;
      background: repeating-linear-gradient(90deg, currentColor 0 5px, transparent 5px 12px);
      opacity: .18;
      border-radius: 20px;
    }

    .cta-zone {
      padding: clamp(28px, 5vw, 48px);
      border-radius: var(--radius);
      background:
        linear-gradient(120deg, rgba(180, 17, 78, .96), rgba(255, 159, 28, .96)),
        #b4114e;
      color: #fff8ee;
      box-shadow: var(--shadow);
    }

    .cta-zone h2 {
      margin: 0 0 12px;
      font-size: clamp(28px, 3vw, 40px);
      color: #fff8ee;
      font-weight: 900;
    }

    .cta-zone p {
      max-width: 760px;
      margin: 0 0 22px;
      color: rgba(255, 248, 238, .88);
    }

    .step-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .step-card {
      padding: 16px;
      border-radius: var(--radius);
      background: rgba(255, 248, 238, .13);
      border: 1px solid rgba(255, 248, 238, .18);
      min-height: 112px;
    }

    .step-card b {
      display: block;
      margin-bottom: 6px;
      color: var(--lime);
    }

    .step-card span {
      font-size: 14px;
      color: rgba(255, 248, 238, .82);
    }

    .faq-wrap {
      background: rgba(255, 253, 248, .78);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 8px;
    }

    .accordion {
      background: transparent;
      margin: 0;
    }

    .accordion-item {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 8px;
      border: 1px solid rgba(44, 25, 35, .1);
      background: #fffdf8;
    }

    .accordion-title {
      border: 0;
      color: var(--ink);
      font-size: 16px;
      font-weight: 900;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #fff2df;
      color: var(--primary-dark);
    }

    .accordion-content {
      border: 0;
      border-left: 4px solid var(--primary);
      color: var(--muted);
      padding: 0 18px 18px;
      background: #fffdf8;
    }

    .tiers {
      position: relative;
      padding: 28px;
      border-radius: var(--radius);
      background: var(--panel-soft);
      border: 1px solid var(--line);
    }

    .tier-card {
      padding: 22px;
      height: 100%;
    }

    .tier-card.featured {
      background: #24111f;
      color: #fff8ee;
      border-color: rgba(36, 17, 31, .3);
      transform: translateY(-8px);
    }

    .tier-card.featured h3,
    .tier-card.featured p {
      color: #fff8ee;
    }

    .progress-line {
      height: 10px;
      border-radius: 99px;
      background: rgba(36, 17, 31, .1);
      overflow: hidden;
      margin-top: 18px;
    }

    .progress-line span {
      display: block;
      width: 68%;
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--lime));
    }

    .plans {
      align-items: stretch;
    }

    .plan-card {
      padding: 22px;
      height: 100%;
      position: relative;
    }

    .plan-card.recommend {
      border-color: rgba(180, 17, 78, .42);
      box-shadow: 0 18px 38px rgba(180, 17, 78, .14);
    }

    .plan-price {
      margin: 14px 0;
      font-size: 32px;
      font-weight: 900;
      color: var(--primary-dark);
    }

    .check-list {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 15px;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 10px;
      height: 10px;
      border-radius: 3px;
      background: var(--cyan);
    }

    .guarantee-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      padding: 18px;
      border-radius: var(--radius);
      background: #24111f;
      color: #fff8ee;
    }

    .guarantee-item {
      padding: 14px;
      border-radius: 7px;
      background: rgba(255, 248, 238, .08);
      border: 1px solid rgba(255, 248, 238, .12);
    }

    .guarantee-item b {
      display: block;
      color: var(--lime);
      margin-bottom: 4px;
    }

    .guarantee-item span {
      font-size: 14px;
      color: rgba(255, 248, 238, .78);
    }

    .news-area {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 18px;
      align-items: start;
    }

    .news-list {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow-soft);
    }

    .news-link {
      display: grid;
      grid-template-columns: 108px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-bottom: 1px solid var(--line);
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: #fff2df;
    }

    .news-date {
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 900;
    }

    .news-link b {
      font-size: 17px;
      line-height: 1.35;
    }

    .news-link span {
      color: var(--muted);
      font-size: 14px;
    }

    .aside-panel {
      padding: 22px;
      border-radius: var(--radius);
      background: #fffdf8;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .aside-panel h3 {
      margin: 0 0 12px;
      font-size: 20px;
      font-weight: 900;
    }

    .chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 5px 10px;
      border-radius: 6px;
      background: rgba(180, 17, 78, .08);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(180, 17, 78, .12);
    }

    .reviews {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .review-bubble {
      padding: 20px;
      border-radius: var(--radius);
      background: #fffdf8;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .avatar-line {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff8ee;
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .review-bubble p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .site-footer {
      margin-top: 72px;
      padding: 34px 0;
      background: #21101e;
      color: rgba(255, 248, 238, .78);
    }

    .footer-inner {
      width: min(1280px, calc(100% - 56px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .footer-logo {
      color: #fff8ee;
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-links a {
      color: rgba(255, 248, 238, .78);
      font-weight: 700;
    }

    .footer-links a:hover {
      color: var(--lime);
    }

    .copyright {
      font-size: 13px;
      text-align: right;
    }

    @media (max-width: 1024px) {
      :root {
        --nav-width: 190px;
      }

      .page-wrap,
      .footer-inner {
        width: min(100% - 36px, 960px);
      }

      .countdown-strip {
        grid-template-columns: 1fr;
      }

      .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .wall-tile.large,
      .wall-tile.wide {
        grid-column: auto;
        grid-row: auto;
      }

      .step-row,
      .guarantee-bar,
      .reviews {
        grid-template-columns: repeat(2, 1fr);
      }

      .news-area {
        grid-template-columns: 1fr;
      }

      .tier-card.featured {
        transform: none;
      }
    }

    @media (max-width: 768px) {
      .side-nav {
        display: none;
      }

      .mobile-bar {
        display: flex;
      }

      .main-content {
        margin-left: 0;
        padding-top: 60px;
      }

      .page-wrap,
      .footer-inner {
        width: min(100% - 28px, 720px);
      }

      section {
        margin-bottom: 48px;
      }

      .hero-stage {
        padding: 24px 18px;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 8px;
      }

      .mini-stats,
      .step-row,
      .guarantee-bar,
      .reviews {
        grid-template-columns: 1fr;
      }

      .highlight-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(150px, auto);
      }

      .news-link {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .copyright {
        text-align: left;
      }
    }

    @media (max-width: 520px) {
      .brand-text {
        font-size: 14px;
      }

      .countdown-strip {
        padding: 12px;
      }

      .flip-time {
        flex-wrap: wrap;
      }

      .flip-box {
        min-width: 38px;
        font-size: 18px;
      }

      .button-row .button {
        width: 100%;
        white-space: normal;
      }

      .wall,
      .tiers,
      .cta-zone {
        padding: 20px 14px;
      }

      .recommend-card,
      .benefit-card,
      .tier-card,
      .plan-card,
      .aside-panel,
      .review-bubble {
        padding: 18px;
      }
    }

/* roulang page: category1 */
:root {
      --ink: #1b1018;
      --ink-soft: #5e4a58;
      --muted: #83717d;
      --cream: #fff8ea;
      --paper: #fffdf7;
      --panel: #fff4de;
      --line: rgba(54, 20, 42, .14);
      --dark: #26101f;
      --dark-2: #341428;
      --berry: #c01855;
      --berry-2: #ef3269;
      --amber: #ffb23f;
      --cyan: #23d7d0;
      --lime: #eaff62;
      --white: #ffffff;
      --radius: 8px;
      --shadow: 0 16px 36px rgba(49, 16, 38, .12);
      --shadow-soft: 0 8px 22px rgba(49, 16, 38, .08);
      --side: 236px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 85% 8%, rgba(255, 178, 63, .18), transparent 30%),
        linear-gradient(135deg, #fff9ed 0%, #fff2f4 45%, #fffdf7 100%);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    .button {
      min-height: 44px;
      border-radius: var(--radius);
      font-weight: 700;
      letter-spacing: 0;
      transition: var(--ease);
      margin-bottom: 0;
    }

    .button.primary-action {
      background: linear-gradient(135deg, var(--berry), var(--berry-2));
      color: var(--white);
      box-shadow: 0 12px 20px rgba(192, 24, 85, .22);
    }

    .button.primary-action:hover,
    .button.primary-action:focus {
      background: linear-gradient(135deg, #d11f62, #ff4478);
      transform: translateY(-2px);
      box-shadow: 0 16px 24px rgba(192, 24, 85, .28);
    }

    .button.ghost-action {
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, .24);
    }

    .button.ghost-action:hover,
    .button.ghost-action:focus {
      background: rgba(255, 255, 255, .16);
      transform: translateY(-2px);
    }

    .button.light-action {
      background: var(--cream);
      color: var(--dark);
      border: 1px solid rgba(255, 178, 63, .45);
    }

    .button.light-action:hover,
    .button.light-action:focus {
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    a:focus,
    button:focus,
    input:focus,
    select:focus {
      outline: 3px solid rgba(35, 215, 208, .5);
      outline-offset: 3px;
    }

    .app-shell {
      min-height: 100vh;
    }

    .side-nav {
      position: fixed;
      inset: 0 auto 0 0;
      width: var(--side);
      background: linear-gradient(180deg, var(--dark) 0%, #1b0c16 100%);
      color: var(--white);
      padding: 22px 18px;
      z-index: 50;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(255, 255, 255, .08);
      box-shadow: 12px 0 28px rgba(27, 12, 22, .16);
    }

    .brand-lockup {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 6px 22px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      margin-bottom: 18px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: conic-gradient(from 140deg, var(--berry), var(--amber), var(--cyan), var(--berry));
      display: grid;
      place-items: center;
      color: var(--dark);
      font-weight: 900;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 15px;
      line-height: 1.35;
      font-weight: 800;
      word-break: break-word;
    }

    .side-group-label {
      color: rgba(255, 255, 255, .48);
      font-size: 12px;
      margin: 12px 8px 8px;
    }

    .side-link {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 10px;
      border-radius: var(--radius);
      color: rgba(255, 255, 255, .78);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .side-link:hover {
      color: var(--white);
      background: rgba(255, 255, 255, .08);
    }

    .side-link.active {
      color: var(--white);
      background: rgba(192, 24, 85, .28);
    }

    .side-link.active::before {
      content: "";
      position: absolute;
      left: -18px;
      top: 11px;
      width: 4px;
      height: calc(100% - 22px);
      border-radius: 99px;
      background: var(--lime);
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .24);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .1);
      flex: 0 0 auto;
    }

    .side-link.active .nav-dot {
      background: var(--cyan);
      box-shadow: 0 0 0 5px rgba(35, 215, 208, .12);
    }

    .side-footer {
      margin-top: auto;
      padding: 14px 10px 4px;
      color: rgba(255, 255, 255, .56);
      font-size: 12px;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .mobile-topbar {
      display: none;
      position: sticky;
      top: 0;
      z-index: 60;
      height: 60px;
      background: rgba(38, 16, 31, .96);
      color: var(--white);
      padding: 0 14px;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 10px 24px rgba(27, 12, 22, .18);
      backdrop-filter: blur(12px);
    }

    .mobile-brand {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
      font-weight: 800;
    }

    .mobile-brand span:last-child {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .menu-icon::after {
      background: var(--white);
      box-shadow: 0 7px 0 var(--white), 0 14px 0 var(--white);
    }

    .off-canvas {
      background: var(--dark);
      color: var(--white);
      padding: 18px;
    }

    .main-area {
      margin-left: var(--side);
      min-height: 100vh;
    }

    .page-container {
      width: min(1240px, calc(100% - 56px));
      margin: 0 auto;
    }

    .section {
      padding: 48px 0;
    }

    .hero-panel {
      padding: 28px 0 40px;
    }

    .status-strip {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 18px;
      align-items: center;
      background: linear-gradient(135deg, var(--dark) 0%, #4b1637 58%, #81204b 100%);
      color: var(--white);
      border-radius: 0 0 var(--radius) var(--radius);
      padding: 14px 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .status-strip::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 3px;
      background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--berry-2));
    }

    .status-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(234, 255, 98, .16);
      color: var(--lime);
      border: 1px solid rgba(234, 255, 98, .28);
      padding: 7px 10px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-copy {
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      min-width: 0;
    }

    .mini-count {
      display: flex;
      gap: 6px;
      align-items: center;
      white-space: nowrap;
    }

    .flip {
      min-width: 36px;
      text-align: center;
      padding: 5px 7px;
      border-radius: 6px;
      background: rgba(255, 255, 255, .12);
      font-weight: 900;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, .14);
    }

    .hero-card {
      margin-top: 22px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 244, 222, .9)),
        radial-gradient(circle at 80% 20%, rgba(35, 215, 208, .16), transparent 34%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 28px;
      overflow: hidden;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--berry);
      background: rgba(192, 24, 85, .08);
      border: 1px solid rgba(192, 24, 85, .15);
      padding: 7px 10px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    h1 {
      font-size: clamp(32px, 4.1vw, 52px);
      line-height: 1.15;
      margin: 0 0 16px;
      letter-spacing: 0;
      color: var(--dark);
      max-width: 820px;
      font-weight: 900;
    }

    .hero-summary {
      max-width: 760px;
      color: var(--ink-soft);
      font-size: 17px;
      margin-bottom: 22px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .cover-panel {
      background: var(--dark);
      color: var(--white);
      border-radius: var(--radius);
      min-height: 100%;
      padding: 18px;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
    }

    .cover-panel::before {
      content: "";
      position: absolute;
      width: 210px;
      height: 210px;
      border: 1px solid rgba(35, 215, 208, .28);
      border-radius: 50%;
      right: -72px;
      top: -52px;
    }

    .cover-title {
      position: relative;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .directory-list {
      position: relative;
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .directory-list li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 6px;
      padding: 10px;
      color: rgba(255, 255, 255, .84);
    }

    .directory-list b {
      color: var(--lime);
      white-space: nowrap;
    }

    .filter-band {
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      border-radius: var(--radius);
      padding: 18px;
      margin-top: 22px;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .search-box {
      flex: 1 1 280px;
      min-width: 0;
      position: relative;
    }

    .search-box input {
      height: 48px;
      margin: 0;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #fffaf0;
      box-shadow: none;
      padding: 0 14px;
      color: var(--ink);
    }

    .search-box input::placeholder {
      color: var(--muted);
    }

    .chip-set {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 6px 11px;
      border-radius: 6px;
      background: #fff0d6;
      border: 1px solid rgba(255, 178, 63, .32);
      color: var(--dark);
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: var(--ease);
    }

    .chip:hover,
    .chip.is-active {
      background: var(--dark);
      color: var(--white);
      border-color: var(--dark);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      align-items: end;
      margin-bottom: 20px;
    }

    .section-kicker {
      color: var(--berry);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 5px;
    }

    h2 {
      margin: 0;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.25;
      color: var(--dark);
      letter-spacing: 0;
    }

    .section-note {
      color: var(--ink-soft);
      max-width: 720px;
      margin: 8px 0 0;
    }

    .topic-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      transition: var(--ease);
      overflow: hidden;
      height: 100%;
    }

    .topic-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .topic-card.featured {
      background: linear-gradient(135deg, #fffdf7 0%, #fff0d8 100%);
    }

    .entry-card {
      display: grid;
      grid-template-columns: 176px minmax(0, 1fr);
      gap: 18px;
      padding: 16px;
      align-items: stretch;
    }

    .entry-thumb {
      min-height: 148px;
      border-radius: 6px;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 3px, transparent 3px 9px),
        linear-gradient(135deg, #42172f, #c01855 58%, #ffb23f);
      position: relative;
      overflow: hidden;
    }

    .entry-thumb.alt {
      background:
        radial-gradient(circle at 24% 24%, rgba(234, 255, 98, .7), transparent 18%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 2px, transparent 2px 8px),
        linear-gradient(135deg, #26101f, #7a1d48 54%, #23d7d0);
    }

    .entry-thumb::after {
      content: attr(data-label);
      position: absolute;
      left: 12px;
      bottom: 12px;
      right: 12px;
      color: var(--white);
      font-weight: 900;
      font-size: 18px;
      line-height: 1.3;
      text-shadow: 0 2px 10px rgba(0,0,0,.24);
    }

    .entry-body {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .entry-top {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 6px;
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.2;
    }

    .badge.hot {
      background: rgba(192, 24, 85, .1);
      color: var(--berry);
      border: 1px solid rgba(192, 24, 85, .18);
    }

    .badge.new {
      background: rgba(35, 215, 208, .12);
      color: #117a76;
      border: 1px solid rgba(35, 215, 208, .28);
    }

    .badge.limit {
      background: rgba(255, 178, 63, .18);
      color: #8a4d00;
      border: 1px solid rgba(255, 178, 63, .28);
    }

    .entry-title {
      font-size: 21px;
      font-weight: 900;
      line-height: 1.35;
      color: var(--dark);
      margin: 0;
      overflow-wrap: anywhere;
    }

    .entry-desc {
      color: var(--ink-soft);
      margin: 0;
      font-size: 15px;
    }

    .entry-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 13px;
      margin-top: auto;
    }

    .entry-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 4px;
    }

    .side-panel {
      position: sticky;
      top: 24px;
      display: grid;
      gap: 16px;
    }

    .callout.panel-card {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: var(--shadow-soft);
      margin: 0;
    }

    .panel-card.dark-card {
      background: linear-gradient(160deg, var(--dark), #4a1734);
      color: var(--white);
      border-color: rgba(255,255,255,.12);
    }

    .panel-card h3 {
      font-size: 20px;
      line-height: 1.35;
      margin: 0 0 12px;
      font-weight: 900;
      color: inherit;
    }

    .progress-wrap {
      margin-top: 12px;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      color: rgba(255,255,255,.75);
      font-size: 13px;
      margin-bottom: 8px;
    }

    .progress {
      height: 8px;
      border-radius: 99px;
      background: rgba(255,255,255,.14);
      overflow: hidden;
      margin-bottom: 0;
    }

    .progress-meter {
      background: linear-gradient(90deg, var(--cyan), var(--lime));
      border-radius: 99px;
    }

    .step-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .step-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      color: var(--ink-soft);
    }

    .step-list b {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--dark);
      color: var(--lime);
      font-size: 13px;
      flex: 0 0 auto;
    }

    .mini-stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .mini-stat {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      padding: 10px;
    }

    .mini-stat strong {
      display: block;
      color: var(--lime);
      font-size: 22px;
      line-height: 1;
      margin-bottom: 5px;
    }

    .mini-stat span {
      color: rgba(255,255,255,.72);
      font-size: 12px;
    }

    .grid-wall {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      grid-auto-rows: minmax(126px, auto);
      gap: 14px;
    }

    .wall-tile {
      border-radius: var(--radius);
      padding: 18px;
      min-height: 126px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .wall-tile.big {
      grid-row: span 2;
      background: linear-gradient(135deg, var(--dark), #651a43);
      color: var(--white);
    }

    .wall-tile.amber {
      background: linear-gradient(135deg, #fff1cf, #ffc560);
    }

    .wall-tile.cyan {
      background: linear-gradient(135deg, #e2fffb, #65e5dc);
    }

    .wall-tile.berry {
      background: linear-gradient(135deg, #ffedf3, #f45c88);
      color: var(--dark);
    }

    .wall-tile.dark {
      background: var(--dark-2);
      color: var(--white);
    }

    .wall-tile::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 80px;
      right: -32px;
      bottom: 18px;
      background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 4px, transparent 4px 12px);
      opacity: .42;
      transform: rotate(-8deg);
    }

    .wall-tile h3 {
      margin: 0 0 8px;
      font-size: 21px;
      line-height: 1.3;
      font-weight: 900;
      color: inherit;
      position: relative;
      z-index: 1;
    }

    .wall-tile p {
      margin: 0;
      color: inherit;
      opacity: .78;
      position: relative;
      z-index: 1;
    }

    .plain-list {
      display: grid;
      gap: 12px;
    }

    .compact-row {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      transition: var(--ease);
    }

    .compact-row:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .compact-icon {
      width: 72px;
      height: 72px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--berry), var(--amber));
      display: grid;
      place-items: center;
      color: var(--white);
      font-weight: 900;
      font-size: 22px;
    }

    .compact-row h3 {
      margin: 0 0 4px;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      color: var(--dark);
    }

    .compact-row p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 14px;
    }

    .pager {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .page-btn {
      min-width: 42px;
      min-height: 42px;
      display: grid;
      place-items: center;
      border-radius: 6px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--dark);
      font-weight: 800;
      transition: var(--ease);
    }

    .page-btn:hover,
    .page-btn.active {
      background: var(--dark);
      color: var(--white);
      border-color: var(--dark);
    }

    .cta-band {
      background:
        radial-gradient(circle at 90% 18%, rgba(234, 255, 98, .22), transparent 24%),
        linear-gradient(135deg, var(--dark) 0%, #6f1946 58%, var(--berry) 100%);
      color: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .cta-band h2 {
      color: var(--white);
      max-width: 760px;
    }

    .cta-band p {
      color: rgba(255,255,255,.78);
      max-width: 760px;
      margin: 12px 0 0;
    }

    .cta-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 22px 0;
    }

    .cta-step {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 6px;
      padding: 14px;
      min-height: 98px;
    }

    .cta-step strong {
      display: block;
      color: var(--lime);
      margin-bottom: 6px;
    }

    .cta-step span {
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 10px;
      box-shadow: var(--shadow-soft);
    }

    .accordion-title {
      border: 0;
      color: var(--dark);
      font-weight: 900;
      font-size: 16px;
      padding: 18px 48px 18px 18px;
      background: var(--paper);
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #fff2dc;
      color: var(--berry);
    }

    .accordion-title::before {
      color: var(--berry);
      font-size: 20px;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 0;
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid var(--line);
      color: var(--ink-soft);
      padding: 16px 18px 18px;
      background: #fffaf1;
    }

    .site-footer {
      margin-left: var(--side);
      background: var(--dark);
      color: var(--white);
      padding: 34px 0;
    }

    .footer-inner {
      width: min(1240px, calc(100% - 56px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr auto;
      gap: 20px 32px;
      align-items: start;
    }

    .footer-logo {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .site-footer p {
      color: rgba(255,255,255,.66);
      margin: 0;
      max-width: 560px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255,255,255,.72);
      font-weight: 700;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--lime);
    }

    .copyright {
      grid-column: 1 / -1;
      color: rgba(255,255,255,.46);
      font-size: 13px;
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 16px;
    }

    @media (max-width: 1180px) {
      :root {
        --side: 210px;
      }

      .grid-wall {
        grid-template-columns: repeat(2, 1fr);
      }

      .wall-tile.big {
        grid-row: span 1;
      }

      .cta-steps {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1023px) {
      .side-nav {
        display: none;
      }

      .mobile-topbar {
        display: flex;
      }

      .main-area,
      .site-footer {
        margin-left: 0;
      }

      .page-container,
      .footer-inner {
        width: min(100% - 32px, 760px);
      }

      .hero-panel {
        padding-top: 18px;
      }

      .status-strip {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .mini-count {
        justify-content: flex-start;
      }

      .side-panel {
        position: static;
        margin-top: 18px;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 767px) {
      .section {
        padding: 34px 0;
      }

      .hero-card {
        padding: 20px;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-thumb {
        min-height: 172px;
      }

      .grid-wall {
        grid-template-columns: 1fr;
      }

      .compact-row {
        grid-template-columns: 58px minmax(0, 1fr);
      }

      .compact-icon {
        width: 58px;
        height: 58px;
        font-size: 18px;
      }

      .compact-row .button {
        grid-column: 1 / -1;
        width: 100%;
      }

      .cta-steps {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 24px 18px;
      }
    }

    @media (max-width: 520px) {
      .page-container,
      .footer-inner {
        width: calc(100% - 24px);
      }

      h1 {
        font-size: 31px;
      }

      h2 {
        font-size: 25px;
      }

      .hero-actions .button,
      .entry-actions .button,
      .filter-row .button {
        width: 100%;
      }

      .flip {
        min-width: 32px;
        padding-left: 5px;
        padding-right: 5px;
      }

      .chip {
        max-width: 100%;
      }

      .mobile-brand span:last-child {
        max-width: 220px;
      }
    }
