/* roulang page: index */
:root {
      --berry: #4b163f;
      --berry-2: #5a183f;
      --orange: #ff9b45;
      --coral: #ff6f7d;
      --cream: #fff5e8;
      --warm: #f5eee7;
      --peach: #ffe1d6;
      --text: #24151c;
      --muted: #735f68;
      --green: #5e9f76;
      --amber: #f3a634;
      --line: rgba(75, 22, 63, .1);
      --shadow: 0 18px 46px rgba(75, 22, 63, .12);
      --shadow-soft: 0 12px 32px rgba(75, 22, 63, .09);
      --radius: 24px;
      --radius-sm: 16px;
      --container: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 6%, rgba(255, 155, 69, .18), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(255, 111, 125, .13), transparent 26%),
        linear-gradient(180deg, #fffaf3 0%, #fff5e8 42%, #ffffff 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }
    button { border: 0; cursor: pointer; }
    input { border: 0; outline: none; }

    .container {
      width: min(var(--container), calc(100% - 64px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 245, 232, .9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(75, 22, 63, .08);
    }

    .nav-wrap {
      height: 72px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 22px;
    }

    .nav-side {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-side.right { justify-content: flex-end; }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 15px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
      transition: .22s ease;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--berry);
      background: rgba(255, 225, 214, .72);
      outline: none;
    }

    .nav-link.active {
      color: var(--berry);
      background: var(--peach);
      box-shadow: inset 0 0 0 1px rgba(255, 111, 125, .22);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(75, 22, 63, .1);
      box-shadow: var(--shadow-soft);
      font-weight: 900;
      color: var(--berry);
      white-space: nowrap;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background:
        conic-gradient(from 18deg, var(--orange), var(--coral), var(--berry), var(--orange));
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      background: #fff5e8;
      box-shadow: inset 0 0 0 2px rgba(75, 22, 63, .12);
    }

    .mobile-bar { display: none; }

    .mobile-panel {
      display: none;
      border-top: 1px solid var(--line);
      padding: 12px 0 18px;
    }

    .mobile-panel.open { display: block; }

    .mobile-panel .nav-link {
      display: flex;
      width: 100%;
      justify-content: space-between;
      margin: 8px 0;
      min-height: 46px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 800;
      transition: .22s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--coral));
      box-shadow: 0 12px 28px rgba(255, 111, 125, .28);
    }

    .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 16px 36px rgba(255, 111, 125, .35); }
    .btn-secondary {
      color: var(--berry);
      background: #fff9f0;
      border: 1px solid rgba(255, 155, 69, .32);
    }
    .btn-secondary:hover { background: var(--peach); transform: translateY(-2px); }
    .btn:focus { outline: 2px solid rgba(255, 111, 125, .6); outline-offset: 3px; }

    .section {
      padding: 82px 0;
      position: relative;
    }

    .section.compact { padding: 62px 0; }

    .section-head {
      max-width: 760px;
      margin-bottom: 30px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--berry);
      background: rgba(255, 225, 214, .72);
      border: 1px solid rgba(255, 111, 125, .22);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    h1, h2, h3 { margin: 0; color: var(--berry); letter-spacing: 0; }
    h1 {
      font-size: clamp(32px, 4.2vw, 52px);
      line-height: 1.14;
      font-weight: 900;
      max-width: 620px;
    }
    h2 { font-size: clamp(25px, 3vw, 36px); line-height: 1.2; font-weight: 850; }
    h3 { font-size: 21px; line-height: 1.3; font-weight: 800; }
    p { margin: 0; color: var(--muted); }

    .hero {
      padding: 56px 0 76px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 42px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-lead {
      margin: 20px 0 24px;
      font-size: 17px;
      max-width: 600px;
      color: #614c56;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .kpi-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 590px;
    }

    .kpi {
      border-radius: 18px;
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      padding: 14px;
      box-shadow: 0 10px 26px rgba(75, 22, 63, .08);
    }

    .kpi strong {
      display: block;
      color: var(--berry);
      font-size: 22px;
      line-height: 1.2;
    }

    .kpi span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-stage {
      position: relative;
      min-height: 490px;
      transform: rotate(-1.2deg);
    }

    .dp-cover {
      position: absolute;
      inset: 22px 0 0 18px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(75, 22, 63, .92), rgba(90, 24, 63, .78)),
        radial-gradient(circle at 15% 18%, rgba(255, 155, 69, .5), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(255, 111, 125, .45), transparent 26%);
      box-shadow: 0 26px 70px rgba(75, 22, 63, .26);
      overflow: hidden;
    }

    .dp-cover::before,
    .dp-cover::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255, 245, 232, .22);
      border-radius: 50%;
      transform: rotate(12deg);
    }

    .dp-cover::before {
      width: 560px;
      height: 280px;
      left: -120px;
      bottom: 16px;
    }

    .dp-cover::after {
      width: 400px;
      height: 210px;
      right: -96px;
      top: 18px;
    }

    .matrix-panel {
      position: absolute;
      inset: 54px 38px 38px 54px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      z-index: 2;
    }

    .matrix-card {
      min-height: 118px;
      border-radius: 22px;
      background: rgba(255, 245, 232, .94);
      border: 1px solid rgba(255, 255, 255, .45);
      padding: 17px;
      box-shadow: 0 14px 34px rgba(36, 21, 28, .16);
      transition: .22s ease;
    }

    .matrix-card:hover { transform: translateY(-3px) rotate(1deg); }

    .matrix-card.wide { grid-column: span 2; min-height: 136px; }

    .matrix-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
    }

    .num-badge {
      display: inline-flex;
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--orange), var(--coral));
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: var(--berry);
      background: rgba(255, 225, 214, .85);
    }

    .matrix-card h3 { font-size: 18px; margin-bottom: 6px; }
    .matrix-card p { font-size: 14px; line-height: 1.55; }

    .avatar-wall {
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 12px;
    }

    .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 3px solid #fff5e8;
      margin-left: -8px;
      background: linear-gradient(135deg, #ffbd72, #ff6f7d);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      font-size: 12px;
    }

    .avatar:first-child { margin-left: 0; }
    .bubble {
      position: absolute;
      right: 0;
      top: 10px;
      max-width: 210px;
      border-radius: 22px 22px 22px 8px;
      padding: 14px 16px;
      background: #fff;
      color: var(--berry);
      font-weight: 800;
      font-size: 14px;
      box-shadow: var(--shadow);
      z-index: 4;
      transform: rotate(3deg);
    }

    .card {
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transition: .22s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 111, 125, .38);
      box-shadow: var(--shadow);
    }

    .directory {
      background: linear-gradient(180deg, rgba(255, 245, 232, .52), rgba(255, 255, 255, .9));
    }

    .directory-layout {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 26px;
      align-items: stretch;
    }

    .search-card {
      padding: 26px;
      min-height: 100%;
      background: linear-gradient(145deg, #fff, #fff5e8);
    }

    .search-box {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 8px 8px 18px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(75, 22, 63, .12);
      margin: 22px 0;
      box-shadow: inset 0 0 0 1px rgba(255, 155, 69, .08);
    }

    .search-box input {
      width: 100%;
      background: transparent;
      color: var(--text);
      min-width: 0;
    }

    .search-box:focus-within {
      outline: 2px solid rgba(255, 111, 125, .45);
      outline-offset: 3px;
    }

    .pill-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 8px 12px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      transition: .22s ease;
    }

    .pill:hover,
    .pill.active {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--coral));
      border-color: transparent;
      transform: translateY(-2px);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .entry-card {
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 5px;
      background: linear-gradient(180deg, var(--orange), var(--coral));
      opacity: .86;
      transition: .22s ease;
    }

    .entry-card:hover::before { width: 8px; }
    .entry-card h3 { margin-bottom: 8px; font-size: 19px; }
    .entry-card p { font-size: 14px; }

    .value-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
      align-items: start;
    }

    .step-list {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 28px rgba(75, 22, 63, .07);
    }

    .step p { font-size: 14px; }

    .feature-board {
      padding: 24px;
      background:
        linear-gradient(135deg, rgba(255, 225, 214, .72), rgba(255, 245, 232, .8)),
        #fff;
    }

    .feature-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(75, 22, 63, .08);
    }

    .feature-item strong { color: var(--berry); }
    .feature-item span { color: var(--muted); font-size: 13px; }

    .proof-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .proof {
      padding: 22px;
      min-height: 156px;
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .proof::after {
      content: "";
      position: absolute;
      right: -32px;
      bottom: -42px;
      width: 108px;
      height: 108px;
      border-radius: 50%;
      border: 18px solid rgba(255, 155, 69, .16);
    }

    .proof strong {
      display: block;
      color: var(--berry);
      font-size: 32px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .proof p { font-size: 14px; }

    .news-zone {
      background: linear-gradient(180deg, #fff, #fff5e8);
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      transition: .22s ease;
    }

    .news-item:hover {
      transform: translateX(3px);
      border-color: rgba(255, 111, 125, .34);
      box-shadow: var(--shadow-soft);
    }

    .date-chip {
      padding: 10px 8px;
      border-radius: 16px;
      text-align: center;
      color: var(--berry);
      background: var(--peach);
      font-weight: 900;
      line-height: 1.25;
    }

    .date-chip small { display: block; color: var(--muted); font-weight: 800; }
    .news-item h3 { font-size: 18px; margin-bottom: 3px; }
    .news-item p { font-size: 14px; }

    .arrow {
      color: var(--coral);
      font-weight: 900;
      transition: .22s ease;
    }

    .news-item:hover .arrow { transform: translateX(3px); }

    .side-reco {
      padding: 24px;
      background: var(--berry);
      color: #fff5e8;
      position: relative;
      overflow: hidden;
    }

    .side-reco::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 150px;
      border-radius: 50%;
      border: 1px solid rgba(255, 245, 232, .22);
      right: -90px;
      top: 20px;
      transform: rotate(-12deg);
    }

    .side-reco h2, .side-reco h3 { color: #fff5e8; }
    .side-reco p { color: rgba(255, 245, 232, .82); }

    .mini-list {
      margin-top: 20px;
      display: grid;
      gap: 12px;
    }

    .mini {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 245, 232, .1);
      border: 1px solid rgba(255, 245, 232, .14);
    }

    .calendar-row {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }

    .calendar-card {
      padding: 18px;
      background: #fff;
      min-height: 162px;
    }

    .calendar-card b {
      color: var(--berry);
      display: block;
      margin: 10px 0 5px;
    }

    .calendar-card p { font-size: 14px; }

    .reviews {
      background:
        radial-gradient(circle at 10% 20%, rgba(255, 111, 125, .12), transparent 24%),
        linear-gradient(180deg, #fff, #fff8ef);
    }

    .review-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .big-wall {
      min-height: 360px;
      padding: 28px;
      position: relative;
      background: #fff;
    }

    .floating-bubble {
      position: absolute;
      max-width: 235px;
      padding: 14px 16px;
      border-radius: 20px 20px 20px 7px;
      background: var(--peach);
      color: var(--berry);
      font-weight: 800;
      box-shadow: var(--shadow-soft);
    }

    .floating-bubble:nth-child(1) { left: 26px; top: 28px; }
    .floating-bubble:nth-child(2) { right: 28px; top: 104px; background: #fff5e8; }
    .floating-bubble:nth-child(3) { left: 74px; bottom: 44px; background: #fff; }

    .review-cards {
      display: grid;
      gap: 14px;
    }

    .review-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 18px;
      background: #fff;
    }

    .review-card p { font-size: 15px; }
    .review-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 6px;
    }

    .review-meta strong { color: var(--berry); }

    .download {
      background: linear-gradient(135deg, rgba(75, 22, 63, .96), rgba(90, 24, 63, .92));
      color: #fff5e8;
      overflow: hidden;
    }

    .download h2, .download h3 { color: #fff5e8; }
    .download p { color: rgba(255, 245, 232, .82); }

    .download-grid {
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 28px;
      align-items: center;
    }

    .lead-form {
      padding: 24px;
      border-radius: 28px;
      background: rgba(255, 245, 232, .1);
      border: 1px solid rgba(255, 245, 232, .18);
    }

    .form-line {
      display: flex;
      gap: 10px;
      background: rgba(255, 245, 232, .95);
      padding: 8px;
      border-radius: 999px;
      margin: 16px 0 12px;
    }

    .form-line input {
      flex: 1;
      min-width: 0;
      padding: 0 12px;
      background: transparent;
      color: var(--text);
    }

    .notice {
      display: flex;
      gap: 10px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(243, 166, 52, .16);
      border: 1px solid rgba(243, 166, 52, .28);
      color: #fff5e8;
      font-size: 14px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .faq-card {
      padding: 22px;
      background: linear-gradient(145deg, #fff, #fff5e8);
      border-top: 4px solid rgba(255, 111, 125, .72);
    }

    .faq-card h3 { margin-bottom: 10px; font-size: 19px; }
    .faq-card p { font-size: 15px; }

    .site-footer {
      background: var(--berry);
      color: #fff5e8;
      padding: 42px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff5e8;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-brand .brand-mark::after { background: var(--berry); }

    .site-footer p,
    .site-footer a {
      color: rgba(255, 245, 232, .76);
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a:hover { color: #fff; }

    .copyright {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 245, 232, .16);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      color: rgba(255, 245, 232, .68);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .container { width: min(100% - 48px, var(--container)); }
      .nav-wrap { display: none; }
      .mobile-bar {
        height: 66px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
      }
      .menu-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        color: var(--berry);
        border: 1px solid var(--line);
        font-weight: 900;
      }
      .mobile-bar .brand { justify-self: center; max-width: 72vw; overflow: hidden; }
      .hero-grid,
      .directory-layout,
      .value-grid,
      .news-layout,
      .review-layout,
      .download-grid {
        grid-template-columns: 1fr;
      }
      .hero-stage { min-height: 440px; }
      .proof-strip,
      .calendar-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .container { width: min(100% - 32px, var(--container)); }
      .section { padding: 56px 0; }
      .hero { padding: 36px 0 54px; }
      .hero-actions,
      .form-line {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
      }
      .btn { width: 100%; min-height: 46px; }
      .kpi-row,
      .entry-grid,
      .faq-grid,
      .proof-strip,
      .calendar-row {
        grid-template-columns: 1fr;
      }
      .hero-stage {
        min-height: 560px;
        transform: none;
      }
      .dp-cover { inset: 0; border-radius: 28px; }
      .matrix-panel {
        inset: 22px;
        grid-template-columns: 1fr;
      }
      .matrix-card.wide { grid-column: span 1; }
      .bubble { position: static; margin: 16px 0 0 auto; transform: none; }
      .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .date-chip { width: 96px; }
      .floating-bubble {
        position: static;
        margin-bottom: 14px;
        max-width: none;
      }
      .big-wall { min-height: auto; }
      .footer-grid { grid-template-columns: 1fr; }
      .copyright { display: block; }
    }

    @media (max-width: 520px) {
      h1 { font-size: 31px; }
      .brand { padding: 8px 12px; font-size: 14px; }
      .brand-mark { width: 28px; height: 28px; }
      .section-head { margin-bottom: 22px; }
      .matrix-card { min-height: auto; }
      .mobile-bar .btn { display: none; }
    }

/* roulang page: category1 */
:root {
      --berry: #4B163F;
      --berry-2: #5A183F;
      --orange: #FF9B45;
      --coral: #FF6F7D;
      --cream: #FFF5E8;
      --warm: #F5EEE7;
      --peach: #FFE1D6;
      --green: #5E9F76;
      --amber: #F3A634;
      --text: #24151C;
      --muted: #735F68;
      --line: rgba(75, 22, 63, .1);
      --shadow: 0 14px 40px rgba(75, 22, 63, .10);
      --shadow-strong: 0 18px 48px rgba(75, 22, 63, .16);
      --radius: 24px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(255, 155, 69, .14), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(255, 111, 125, .13), transparent 24%),
        linear-gradient(180deg, #fffaf3 0%, #fff5e8 48%, #f8efe8 100%);
      line-height: 1.75;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    .container {
      width: min(var(--container), calc(100% - 64px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 245, 232, .88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(75, 22, 63, .08);
      box-shadow: 0 8px 26px rgba(75, 22, 63, .05);
    }

    .nav-wrap {
      width: min(var(--container), calc(100% - 64px));
      height: 72px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 22px;
    }

    .nav-side {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-side.right {
      justify-content: flex-end;
    }

    .nav-link {
      position: relative;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: .2s ease;
      outline: none;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--berry);
      background: rgba(255, 225, 214, .72);
    }

    .nav-link.active {
      color: var(--berry);
      background: var(--peach);
      box-shadow: inset 0 0 0 1px rgba(255, 111, 125, .22);
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--berry);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand {
      font-size: 19px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .7);
      border: 1px solid rgba(75, 22, 63, .08);
    }

    .brand-mark {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-block;
      background:
        conic-gradient(from 30deg, var(--orange), var(--coral), var(--berry), var(--orange));
      box-shadow: inset 0 0 0 5px rgba(255, 245, 232, .85);
      position: relative;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      background: var(--cream);
    }

    .mobile-bar {
      display: none;
      width: min(var(--container), calc(100% - 32px));
      height: 64px;
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .menu-toggle {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: var(--peach);
      color: var(--berry);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .mobile-panel {
      display: none;
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto 14px;
      padding: 12px;
      border-radius: 20px;
      background: rgba(255, 245, 232, .96);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .mobile-panel.open {
      display: grid;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      transition: .2s ease;
      outline: none;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--coral));
      box-shadow: 0 12px 26px rgba(255, 111, 125, .28);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.04);
      box-shadow: 0 16px 34px rgba(255, 111, 125, .34);
    }

    .btn-soft {
      color: var(--berry);
      background: rgba(255, 245, 232, .82);
      border: 1px solid rgba(255, 111, 125, .28);
    }

    .btn-soft:hover,
    .btn-soft:focus-visible {
      background: var(--peach);
      transform: translateY(-2px);
    }

    .pill,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
    }

    .pill {
      padding: 10px 14px;
      color: var(--berry);
      background: #fff;
      border: 1px solid rgba(75, 22, 63, .08);
      box-shadow: 0 8px 18px rgba(75, 22, 63, .06);
    }

    .pill.active {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--coral));
      border-color: transparent;
    }

    .badge {
      padding: 7px 10px;
      color: var(--green);
      background: rgba(94, 159, 118, .12);
    }

    .section {
      padding: 78px 0;
    }

    .hero {
      position: relative;
      padding: 54px 0 78px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      border: 2px solid rgba(75, 22, 63, .06);
      border-radius: 50%;
      right: -190px;
      top: 42px;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
      gap: 38px;
      align-items: center;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 18px;
    }

    .breadcrumb span:last-child {
      color: var(--berry);
      font-weight: 800;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 760px;
      margin-bottom: 18px;
      color: var(--berry);
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: 0;
    }

    h2 {
      color: var(--berry);
      font-size: clamp(25px, 3.2vw, 36px);
      line-height: 1.22;
      font-weight: 850;
      margin-bottom: 14px;
    }

    h3 {
      color: var(--text);
      font-size: 20px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .lead {
      color: var(--muted);
      font-size: 17px;
      max-width: 690px;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0 26px;
    }

    .notice {
      display: inline-flex;
      align-items: flex-start;
      gap: 10px;
      max-width: 680px;
      padding: 12px 15px;
      border-radius: 18px;
      color: #684717;
      background: rgba(243, 166, 52, .16);
      border: 1px solid rgba(243, 166, 52, .26);
      font-size: 14px;
    }

    .panel {
      position: relative;
      background: rgba(255, 255, 255, .74);
      border: 1px solid rgba(75, 22, 63, .1);
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .panel::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 5px;
      width: 100%;
      background: linear-gradient(90deg, var(--orange), var(--coral), var(--berry));
    }

    .filter-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 16px 0;
    }

    .update-card {
      padding: 16px;
      border-radius: 20px;
      background: var(--cream);
      border: 1px solid rgba(75, 22, 63, .08);
      margin-top: 14px;
    }

    .bubble {
      position: relative;
      padding: 13px 15px;
      border-radius: 18px;
      color: var(--text);
      background: var(--peach);
      font-size: 14px;
      box-shadow: 0 10px 20px rgba(75, 22, 63, .07);
    }

    .bubble::after {
      content: "";
      position: absolute;
      left: 22px;
      bottom: -8px;
      width: 16px;
      height: 16px;
      background: inherit;
      transform: rotate(45deg);
      border-radius: 3px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(260px, .42fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 26px;
    }

    .section-head p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .search-box {
      display: flex;
      gap: 10px;
      padding: 8px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(75, 22, 63, .1);
      box-shadow: 0 10px 24px rgba(75, 22, 63, .07);
    }

    .search-box input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: none;
      background: transparent;
      padding: 0 12px;
      color: var(--text);
    }

    .search-box:focus-within {
      box-shadow: 0 0 0 3px rgba(255, 111, 125, .2), 0 10px 24px rgba(75, 22, 63, .07);
    }

    .filter-row {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: none;
    }

    .filter-row::-webkit-scrollbar {
      display: none;
    }

    .board {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(320px, .68fr);
      gap: 22px;
    }

    .feature-card,
    .list-card,
    .faq-card,
    .metric-card {
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(75, 22, 63, .09);
      box-shadow: var(--shadow);
      transition: .2s ease;
    }

    .feature-card:hover,
    .list-card:hover,
    .faq-card:hover,
    .metric-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 111, 125, .36);
      box-shadow: var(--shadow-strong);
    }

    .feature-card {
      min-height: 360px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(145deg, rgba(255, 225, 214, .72), rgba(255, 255, 255, .9)),
        #fff;
    }

    .lane {
      display: grid;
      gap: 14px;
    }

    .list-card {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 15px;
      align-items: center;
      padding: 18px;
      overflow: hidden;
    }

    .list-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      bottom: 14px;
      width: 5px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--orange), var(--coral));
      transition: .2s ease;
    }

    .list-card:hover::before {
      width: 8px;
    }

    .number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 900;
      background: var(--berry);
      box-shadow: inset 0 0 0 5px rgba(255, 245, 232, .18);
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .tag {
      padding: 6px 9px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 245, 232, .82);
      border: 1px solid rgba(75, 22, 63, .07);
      font-size: 12px;
      font-weight: 750;
    }

    .mini-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 13px;
      border-radius: 999px;
      color: var(--berry);
      background: var(--peach);
      font-size: 13px;
      font-weight: 850;
      transition: .2s ease;
    }

    .list-card:hover .mini-btn {
      transform: translateX(2px);
      background: linear-gradient(135deg, var(--orange), var(--coral));
      color: #fff;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .metric-card {
      padding: 20px;
      background: #fff;
    }

    .metric-value {
      color: var(--berry);
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .bar {
      height: 8px;
      border-radius: 999px;
      background: rgba(75, 22, 63, .08);
      overflow: hidden;
      margin-top: 12px;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--orange), var(--coral));
    }

    .reviews {
      display: grid;
      grid-template-columns: .72fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .avatar-wall {
      min-height: 300px;
      padding: 24px;
      border-radius: 28px;
      background: var(--berry);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .avatar-wall::after {
      content: "";
      position: absolute;
      width: 230px;
      height: 230px;
      border: 1px solid rgba(255, 245, 232, .16);
      border-radius: 50%;
      right: -70px;
      bottom: -60px;
    }

    .avatars {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
      position: relative;
      z-index: 1;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--berry);
      background: linear-gradient(135deg, var(--cream), var(--peach));
      border: 2px solid rgba(255, 245, 232, .9);
      font-weight: 900;
    }

    .review-list {
      display: grid;
      gap: 14px;
    }

    .review-card {
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(75, 22, 63, .08);
      box-shadow: 0 12px 26px rgba(75, 22, 63, .08);
    }

    .review-card p {
      margin: 8px 0 0;
      color: var(--muted);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .faq-card {
      padding: 20px;
      background: linear-gradient(145deg, rgba(255, 225, 214, .62), rgba(255, 255, 255, .9));
    }

    .faq-card h3 {
      color: var(--berry);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .faq-card h3::before {
      content: "?";
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--coral);
      font-size: 15px;
    }

    .faq-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .cta {
      padding: 34px;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(75, 22, 63, .96), rgba(90, 24, 63, .94)),
        var(--berry);
      color: var(--cream);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .cta h2 {
      color: #fff;
      margin-bottom: 10px;
    }

    .cta p {
      color: rgba(255, 245, 232, .82);
      margin-bottom: 0;
      max-width: 680px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 54px 0 28px;
      background: var(--berry);
      color: var(--cream);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 245, 232, .18);
    }

    .footer-brand {
      color: #fff;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .site-footer p {
      color: rgba(255, 245, 232, .78);
      margin-bottom: 0;
    }

    .site-footer h3 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 245, 232, .78);
      transition: .2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--orange);
    }

    .copyright {
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      color: rgba(255, 245, 232, .66);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .container {
        width: min(var(--container), calc(100% - 48px));
      }

      .nav-wrap {
        display: none;
      }

      .mobile-bar {
        display: flex;
      }

      .hero-grid,
      .board,
      .reviews,
      .section-head,
      .cta {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 54px 0;
      }

      .container {
        width: min(var(--container), calc(100% - 32px));
      }

      .hero {
        padding: 34px 0 56px;
      }

      .metrics,
      .faq-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .list-card {
        grid-template-columns: auto 1fr;
      }

      .list-card .mini-btn {
        grid-column: 2;
        justify-self: start;
      }

      .search-box {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box input {
        min-height: 42px;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .brand {
        font-size: 16px;
        padding: 7px 10px;
      }

      .hero-actions,
      .cta-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .panel,
      .feature-card,
      .cta {
        border-radius: 22px;
        padding: 18px;
      }

      .avatar:nth-child(n+7) {
        display: none;
      }
    }
