/* roulang page: index */
:root {
      --bg: #fff7f5;
      --bg-soft: #f8faff;
      --paper: #fffdf8;
      --card: rgba(255, 255, 255, .86);
      --text: #25202b;
      --muted: #746b7d;
      --faint: #988fa2;
      --primary: #b65cff;
      --primary-2: #d85f9f;
      --mint: #55d6be;
      --peach: #ffb86c;
      --line: rgba(80, 50, 90, .12);
      --line-strong: rgba(182, 92, 255, .22);
      --shadow: 0 14px 40px rgba(78, 35, 93, .10);
      --shadow-hover: 0 18px 54px rgba(78, 35, 93, .16);
      --radius: 24px;
      --radius-sm: 18px;
      --radius-pill: 999px;
      --container: 1200px;
      --focus: 0 0 0 .25rem rgba(182, 92, 255, .20);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 4%, rgba(216, 95, 159, .18), transparent 30%),
        radial-gradient(circle at 92% 10%, rgba(85, 214, 190, .18), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, var(--paper) 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    ::selection {
      background: rgba(182, 92, 255, .22);
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .top-notice {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .72);
      backdrop-filter: blur(16px);
      font-size: 14px;
      color: var(--muted);
    }

    .top-notice-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .notice-left,
    .notice-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .notice-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--mint), var(--primary));
      box-shadow: 0 0 0 6px rgba(85, 214, 190, .14);
      flex: 0 0 auto;
    }

    .notice-links a {
      color: var(--text);
      font-weight: 600;
    }

    .notice-links a:hover {
      color: var(--primary);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(80, 50, 90, .08);
      background: rgba(255, 247, 245, .86);
      backdrop-filter: blur(20px);
    }

    .header-main {
      display: grid;
      grid-template-columns: minmax(220px, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 18px 0 14px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 800;
      letter-spacing: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      background:
        linear-gradient(135deg, var(--primary), var(--primary-2) 58%, var(--peach));
      box-shadow: 0 12px 24px rgba(182, 92, 255, .24);
      flex: 0 0 auto;
    }

    .brand-mark span {
      font-size: 19px;
      line-height: 1;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .brand-name {
      font-size: 18px;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: flex-end;
    }

    .segment-nav-wrap {
      padding-bottom: 16px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .segment-nav-wrap::-webkit-scrollbar {
      display: none;
    }

    .segment-nav {
      display: flex;
      gap: 10px;
      width: max-content;
      min-width: 100%;
      align-items: center;
    }

    .nav-pills .nav-link {
      border-radius: var(--radius-pill);
      padding: 10px 18px;
      color: var(--muted);
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      box-shadow: 0 8px 18px rgba(78, 35, 93, .06);
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-pills .nav-link:hover,
    .nav-pills .nav-link:focus {
      color: var(--primary);
      border-color: var(--line-strong);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .nav-pills .nav-link.active {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      border-color: transparent;
      box-shadow: 0 12px 26px rgba(182, 92, 255, .24);
    }

    .btn {
      border: 0;
      border-radius: var(--radius-pill);
      padding: 11px 20px;
      font-weight: 800;
      line-height: 1.3;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 28px rgba(182, 92, 255, .24);
    }

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
      color: #fff !important;
      background: linear-gradient(135deg, #a84cff, #cf4e93);
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(216, 95, 159, .28);
    }

    .btn-outline-primary {
      color: var(--primary);
      background: rgba(255, 255, 255, .76);
      border: 1px solid var(--line-strong);
      box-shadow: 0 10px 22px rgba(78, 35, 93, .08);
    }

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
      color: var(--text);
      background: rgba(182, 92, 255, .10);
      border-color: rgba(182, 92, 255, .35);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .btn:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .accordion-button:focus {
      box-shadow: var(--focus);
      outline: none;
      border-color: rgba(182, 92, 255, .42);
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 72px 0;
      position: relative;
    }

    .hero {
      padding: 54px 0 74px;
    }

    .hero-stage {
      position: relative;
      border: 1px solid var(--line);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 253, 248, .78)),
        radial-gradient(circle at 80% 20%, rgba(85, 214, 190, .22), transparent 35%),
        radial-gradient(circle at 24% 75%, rgba(216, 95, 159, .18), transparent 40%);
      box-shadow: var(--shadow);
      padding: clamp(28px, 5vw, 56px);
      overflow: hidden;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 28px;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(182, 92, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(182, 92, 255, .08) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 36px;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      color: var(--primary);
      background: rgba(182, 92, 255, .10);
      border: 1px solid rgba(182, 92, 255, .16);
      font-size: 14px;
      font-weight: 800;
    }

    .hero h1 {
      margin: 0;
      max-width: 880px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--text);
    }

    .hero-copy {
      max-width: 720px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .stat-chip {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, .68);
      min-height: 92px;
    }

    .stat-chip strong {
      display: block;
      font-size: 22px;
      color: var(--text);
      line-height: 1.2;
    }

    .stat-chip span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .qualification-panel {
      min-height: 100%;
      display: grid;
      gap: 14px;
      align-content: start;
      padding: 20px;
      border-radius: 28px;
      border: 1px solid rgba(182, 92, 255, .18);
      background: rgba(255, 255, 255, .72);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 20px 48px rgba(78, 35, 93, .10);
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .panel-title {
      margin: 0;
      font-size: 20px;
      font-weight: 800;
    }

    .status-badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: var(--radius-pill);
      padding: 7px 11px;
      color: var(--muted);
      background: rgba(248, 250, 255, .82);
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 0 5px rgba(85, 214, 190, .14);
    }

    .vertical-flow {
      display: grid;
      gap: 12px;
    }

    .flow-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(255, 247, 245, .88), rgba(248, 250, 255, .78));
      border: 1px solid var(--line);
    }

    .flow-no {
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 19px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--mint));
      box-shadow: 0 10px 22px rgba(85, 214, 190, .20);
    }

    .flow-item h3 {
      margin: 0 0 2px;
      font-size: 16px;
      font-weight: 800;
    }

    .flow-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--primary);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 6px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.25;
      font-weight: 800;
    }

    .section-desc {
      margin: 10px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 16px;
    }

    .coupon-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr;
      gap: 18px;
    }

    .coupon-card,
    .vertical-card,
    .step-card,
    .review-card,
    .news-panel,
    .conversion-card,
    .rule-card,
    .offer-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .coupon-card:hover,
    .vertical-card:hover,
    .step-card:hover,
    .review-card:hover,
    .rule-card:hover,
    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: var(--line-strong);
    }

    .coupon-card {
      position: relative;
      min-height: 230px;
      padding: 24px;
      overflow: hidden;
    }

    .coupon-card.featured {
      grid-row: span 2;
      min-height: 482px;
      background:
        radial-gradient(circle at 82% 18%, rgba(255, 184, 108, .20), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 247, 245, .82));
    }

    .coupon-card::after {
      content: "";
      position: absolute;
      right: -44px;
      bottom: -44px;
      width: 154px;
      height: 154px;
      border-radius: 50%;
      border: 24px solid rgba(182, 92, 255, .08);
    }

    .coupon-code {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: var(--radius-pill);
      color: var(--primary);
      background: rgba(182, 92, 255, .10);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .coupon-card h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      font-size: 22px;
      font-weight: 800;
      line-height: 1.35;
    }

    .coupon-card p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .coupon-card .btn {
      position: absolute;
      left: 24px;
      bottom: 24px;
      z-index: 1;
    }

    .limit-bar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      margin-top: 18px;
      padding: 16px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(182, 92, 255, .10), rgba(85, 214, 190, .10));
      border: 1px solid var(--line);
    }

    .countdown {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }

    .time-box {
      min-width: 58px;
      padding: 8px 10px;
      border-radius: 15px;
      text-align: center;
      color: var(--text);
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      font-weight: 900;
    }

    .rule-band {
      padding: 22px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .58);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .rule-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .rule-card {
      padding: 20px;
      min-height: 190px;
      box-shadow: none;
      background: rgba(255, 255, 255, .76);
    }

    .rule-no {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      margin-bottom: 16px;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary-2), var(--peach));
    }

    .rule-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
    }

    .rule-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .vertical-grid {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, minmax(0, .9fr));
      gap: 18px;
      align-items: stretch;
    }

    .vertical-card {
      min-height: 380px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .90), rgba(255, 247, 245, .72)),
        radial-gradient(circle at 70% 18%, rgba(85, 214, 190, .16), transparent 36%);
    }

    .vertical-card.large {
      min-height: 480px;
    }

    .vertical-card::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 20px;
      border: 1px dashed rgba(182, 92, 255, .16);
      pointer-events: none;
    }

    .card-topline {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .rank {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      font-weight: 900;
    }

    .cover-abstract {
      position: relative;
      z-index: 1;
      aspect-ratio: 9 / 12;
      border-radius: 22px;
      margin: 18px 0;
      background:
        radial-gradient(circle at 30% 20%, rgba(255, 184, 108, .32), transparent 28%),
        radial-gradient(circle at 76% 66%, rgba(85, 214, 190, .24), transparent 32%),
        linear-gradient(145deg, rgba(182, 92, 255, .18), rgba(216, 95, 159, .12));
      border: 1px solid rgba(182, 92, 255, .14);
      overflow: hidden;
    }

    .cover-abstract::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 18px;
      background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .46) 12px, transparent 12px),
        linear-gradient(rgba(255, 255, 255, .46) 12px, transparent 12px);
      background-size: 42px 42px;
      opacity: .72;
    }

    .vertical-card h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 10px;
      font-size: 19px;
      font-weight: 800;
      line-height: 1.35;
    }

    .vertical-card p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      margin: 0 0 14px;
      font-size: 14px;
    }

    .mini-link {
      position: relative;
      z-index: 1;
      color: var(--primary);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .mini-link:hover {
      color: var(--primary-2);
      transform: translateX(3px);
    }

    .steps-wrap {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 28px;
      align-items: start;
    }

    .steps-aside {
      position: sticky;
      top: 146px;
      padding: 26px;
      border-radius: 30px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(182, 92, 255, .92), rgba(216, 95, 159, .86)),
        radial-gradient(circle at 80% 20%, rgba(85, 214, 190, .35), transparent 40%);
      box-shadow: 0 18px 52px rgba(182, 92, 255, .25);
    }

    .steps-aside h2 {
      margin: 0 0 10px;
      font-weight: 800;
      line-height: 1.28;
    }

    .steps-aside p {
      margin: 0;
      color: rgba(255, 255, 255, .86);
    }

    .step-list {
      display: grid;
      gap: 14px;
    }

    .step-card {
      position: relative;
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 18px;
      align-items: center;
      padding: 20px;
      overflow: hidden;
    }

    .step-watermark {
      font-size: 42px;
      font-weight: 900;
      line-height: 1;
      color: rgba(182, 92, 255, .18);
    }

    .step-card h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 800;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .offer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .offer-card {
      padding: 24px;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .offer-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 12px 0 8px;
    }

    .offer-card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .progress-soft {
      height: 10px;
      border-radius: var(--radius-pill);
      background: rgba(80, 50, 90, .08);
      overflow: hidden;
      margin: 18px 0;
    }

    .progress-soft span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--mint), var(--primary-2));
    }

    .proof-strip {
      padding: 28px 0;
      background: rgba(255, 255, 255, .50);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .proof-track {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 8px 2px 16px;
      scrollbar-width: thin;
    }

    .review-card {
      flex: 0 0 320px;
      padding: 18px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 12px;
      align-items: start;
      box-shadow: 0 10px 28px rgba(78, 35, 93, .08);
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--mint), var(--primary));
    }

    .review-card p {
      margin: 0 0 8px;
      color: var(--text);
      font-weight: 650;
      line-height: 1.55;
    }

    .review-card small {
      color: var(--muted);
      font-weight: 700;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 22px;
      align-items: start;
    }

    .news-panel {
      padding: 22px;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      background: rgba(248, 250, 255, .72);
      border: 1px solid transparent;
    }

    .news-list a:hover {
      border-color: var(--line-strong);
      background: rgba(255, 255, 255, .92);
      box-shadow: 0 10px 24px rgba(78, 35, 93, .08);
      transform: translateY(-2px);
    }

    .news-date {
      color: var(--primary);
      font-weight: 900;
      font-size: 13px;
    }

    .news-title {
      font-weight: 800;
      line-height: 1.45;
    }

    .news-arrow {
      color: var(--faint);
      font-weight: 900;
    }

    .recommend-box {
      padding: 24px;
      border-radius: 28px;
      color: var(--text);
      background:
        radial-gradient(circle at 82% 18%, rgba(85, 214, 190, .20), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(255, 247, 245, .74));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .recommend-box h3 {
      font-size: 21px;
      margin: 0 0 10px;
      font-weight: 800;
    }

    .recommend-box p {
      color: var(--muted);
      margin: 0 0 16px;
    }

    .conversion {
      padding: 78px 0;
    }

    .conversion-card {
      padding: clamp(24px, 4vw, 42px);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 250, 255, .76)),
        radial-gradient(circle at 92% 12%, rgba(255, 184, 108, .20), transparent 30%);
    }

    .conversion-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
      gap: 28px;
      align-items: center;
    }

    .conversion h2 {
      margin: 0 0 12px;
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 800;
      line-height: 1.25;
    }

    .conversion p {
      color: var(--muted);
      margin: 0;
    }

    .preference-form {
      display: grid;
      gap: 14px;
    }

    .form-control,
    .form-select {
      min-height: 52px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background-color: rgba(255, 255, 255, .82);
      color: var(--text);
      padding: 12px 16px;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      margin-top: 4px;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid var(--line);
      border-radius: 22px !important;
      overflow: hidden;
      background: rgba(255, 255, 255, .80);
      box-shadow: 0 8px 22px rgba(78, 35, 93, .06);
    }

    .accordion-button {
      padding: 18px 20px;
      color: var(--text);
      background: rgba(255, 255, 255, .80);
      font-weight: 800;
      border: 0;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: rgba(182, 92, 255, .08);
      box-shadow: none;
    }

    .accordion-button::after {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: rgba(182, 92, 255, .10);
      background-position: center;
      background-size: 14px;
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 20px 20px;
    }

    .floating-cta {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 18;
      display: flex;
      gap: 10px;
      align-items: center;
      padding: 10px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .floating-cta span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      padding-left: 8px;
      white-space: nowrap;
    }

    .site-footer {
      padding: 54px 0 26px;
      background: linear-gradient(180deg, rgba(248, 250, 255, .78), rgba(241, 235, 246, .90));
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .footer-text {
      color: var(--muted);
      margin: 0;
      max-width: 560px;
    }

    .footer-title {
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 650;
    }

    .footer-links a:hover {
      color: var(--primary);
      transform: translateX(3px);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 1199px) {
      .hero-grid,
      .steps-wrap,
      .conversion-grid,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .steps-aside {
        position: relative;
        top: auto;
      }

      .coupon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .vertical-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .rule-grid,
      .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .news-panel,
      .recommend-box {
        width: 100%;
      }
    }

    @media (max-width: 767px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      section {
        padding: 52px 0;
      }

      .top-notice-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 9px 0;
        gap: 6px;
      }

      .header-main {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .header-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .brand-name {
        font-size: 16px;
        max-width: calc(100vw - 92px);
      }

      .hero {
        padding-top: 32px;
      }

      .hero-stage {
        border-radius: 28px;
        padding: 24px;
      }

      .hero-grid {
        gap: 24px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .coupon-grid,
      .vertical-grid,
      .rule-grid,
      .offer-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .coupon-card.featured {
        min-height: 420px;
      }

      .coupon-card .btn {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 22px;
      }

      .vertical-card,
      .vertical-card.large {
        min-height: 420px;
      }

      .step-card {
        grid-template-columns: 58px 1fr;
        padding: 18px;
      }

      .step-watermark {
        font-size: 32px;
      }

      .news-list a {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .floating-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: space-between;
        border-radius: 22px;
      }

      .floating-cta span {
        display: none;
      }

      .floating-cta .btn {
        flex: 1;
        padding-inline: 12px;
      }

      .copyright {
        padding-bottom: 78px;
      }
    }

    @media (max-width: 520px) {
      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-actions,
      .header-actions {
        width: 100%;
      }

      .header-actions .btn {
        width: auto;
      }

      .qualification-panel {
        padding: 16px;
      }

      .flow-item {
        grid-template-columns: 46px 1fr;
      }

      .flow-no {
        width: 46px;
        height: 46px;
      }

      .review-card {
        flex-basis: 286px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #fff7f5;
      --bg-soft: #fffdf8;
      --bg-cool: #f8faff;
      --surface: rgba(255, 255, 255, .86);
      --surface-strong: #ffffff;
      --text: #25202b;
      --muted: #746b7d;
      --weak: #9c92a5;
      --primary: #b65cff;
      --primary-2: #d85f9f;
      --accent: #55d6be;
      --accent-2: #ffb86c;
      --line: rgba(80, 50, 90, .12);
      --line-strong: rgba(182, 92, 255, .28);
      --shadow: 0 14px 40px rgba(78, 35, 93, .10);
      --shadow-hover: 0 18px 52px rgba(78, 35, 93, .16);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --container: 1200px;
      --ease: all .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      color: var(--text);
      line-height: 1.72;
      background:
        radial-gradient(circle at 8% 6%, rgba(216, 95, 159, .16), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(85, 214, 190, .14), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-cool) 46%, var(--bg-soft) 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    ::selection {
      color: #fff;
      background: var(--primary-2);
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .age-strip {
      position: relative;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 253, 248, .82);
      backdrop-filter: blur(16px);
    }

    .age-strip-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: var(--muted);
    }

    .age-strip .status-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      display: inline-flex;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(85, 214, 190, .14);
      margin-right: 9px;
      vertical-align: middle;
    }

    .age-strip-links {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .age-strip-links a {
      color: var(--primary-2);
      font-weight: 700;
    }

    .age-strip-links a:hover {
      color: var(--primary);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 19;
      padding: 18px 0 16px;
      background: rgba(255, 247, 245, .78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(80, 50, 90, .09);
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
    }

    .brand:hover .brand-mark {
      transform: translateY(-2px) rotate(-4deg);
      box-shadow: 0 16px 34px rgba(216, 95, 159, .22);
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 17px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 28px rgba(182, 92, 255, .22);
      transition: var(--ease);
    }

    .brand-mark span {
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
    }

    .brand-text {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .brand-name {
      font-size: 18px;
      line-height: 1.24;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      white-space: nowrap;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      border-radius: var(--radius-pill);
      padding: 11px 18px;
      font-weight: 800;
      border-width: 1px;
      transition: var(--ease);
      line-height: 1.2;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-primary {
      border-color: transparent;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 28px rgba(182, 92, 255, .22);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      border-color: transparent;
      background: linear-gradient(135deg, #a94dff, #cc4f94);
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(216, 95, 159, .25);
    }

    .btn-outline-primary {
      color: var(--primary-2);
      border-color: var(--line-strong);
      background: rgba(255, 255, 255, .72);
      box-shadow: 0 8px 22px rgba(78, 35, 93, .07);
    }

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
      color: var(--primary);
      border-color: rgba(216, 95, 159, .36);
      background: rgba(255, 235, 247, .8);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(78, 35, 93, .11);
    }

    .btn:focus-visible,
    .nav-link:focus-visible,
    .form-control:focus,
    .form-select:focus {
      outline: 3px solid rgba(85, 214, 190, .28);
      outline-offset: 3px;
      box-shadow: 0 0 0 4px rgba(182, 92, 255, .08);
    }

    .segment-nav-wrap {
      margin-top: 16px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .segment-nav-wrap::-webkit-scrollbar {
      display: none;
    }

    .segment-nav {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      min-width: max-content;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .66);
      box-shadow: 0 10px 26px rgba(78, 35, 93, .07);
    }

    .nav-pills .nav-link {
      color: var(--muted);
      border-radius: var(--radius-pill);
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
      transition: var(--ease);
    }

    .nav-pills .nav-link:hover {
      color: var(--primary-2);
      border-color: rgba(216, 95, 159, .22);
      background: rgba(255, 247, 252, .9);
      transform: translateY(-1px);
    }

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 10px 22px rgba(182, 92, 255, .20);
    }

    main {
      position: relative;
    }

    .section {
      padding: 78px 0;
    }

    .section.tight {
      padding-top: 46px;
    }

    .page-hero {
      padding: 58px 0 34px;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
      gap: 34px;
      align-items: stretch;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 246, 252, .82)),
        radial-gradient(circle at 92% 12%, rgba(85, 214, 190, .22), transparent 34%);
      box-shadow: var(--shadow);
    }

    .hero-shell::before,
    .hero-shell::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 50%;
    }

    .hero-shell::before {
      width: 180px;
      height: 180px;
      right: -60px;
      top: -70px;
      background: rgba(182, 92, 255, .12);
    }

    .hero-shell::after {
      width: 120px;
      height: 120px;
      left: 42%;
      bottom: -48px;
      background: rgba(255, 184, 108, .18);
    }

    .hero-copy,
    .filter-summary {
      position: relative;
      z-index: 1;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 8px 12px;
      border-radius: var(--radius-pill);
      color: var(--primary-2);
      background: rgba(255, 238, 248, .86);
      border: 1px solid rgba(216, 95, 159, .16);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(85, 214, 190, .13);
    }

    h1 {
      margin: 0;
      max-width: 780px;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.16;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--text);
    }

    .hero-lead {
      margin: 18px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .trust-tags,
    .filter-chips,
    .card-chips,
    .recommend-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .trust-tags {
      margin-top: 24px;
    }

    .tag,
    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      color: var(--muted);
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      transition: var(--ease);
    }

    .chip:hover,
    .tag:hover {
      color: var(--primary-2);
      border-color: rgba(216, 95, 159, .26);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(78, 35, 93, .08);
    }

    .chip.active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 10px 22px rgba(182, 92, 255, .18);
    }

    .filter-summary {
      display: grid;
      gap: 14px;
      align-content: center;
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(80, 50, 90, .10);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    }

    .summary-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
    }

    .summary-title {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.3;
    }

    .summary-badge {
      padding: 7px 10px;
      border-radius: 12px;
      background: rgba(85, 214, 190, .14);
      color: #218b78;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .summary-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .summary-list li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 250, 253, .78);
    }

    .step-num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-2), var(--accent-2));
      box-shadow: 0 10px 22px rgba(216, 95, 159, .18);
    }

    .summary-list strong {
      display: block;
      font-size: 15px;
      line-height: 1.35;
      color: var(--text);
    }

    .summary-list span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .section-head {
      display: grid;
      gap: 10px;
      margin-bottom: 26px;
      max-width: 780px;
    }

    .section-head.wide {
      max-width: 100%;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 20px;
    }

    .section-label {
      color: var(--primary-2);
      font-size: 13px;
      font-weight: 800;
    }

    h2 {
      margin: 0;
      font-size: clamp(25px, 3vw, 34px);
      line-height: 1.22;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-desc {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .filters-panel {
      position: relative;
      padding: 24px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .76);
      box-shadow: var(--shadow);
    }

    .filter-row {
      display: grid;
      grid-template-columns: 108px 1fr;
      gap: 16px;
      align-items: start;
      padding: 15px 0;
      border-bottom: 1px dashed rgba(80, 50, 90, .13);
    }

    .filter-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .filter-name {
      color: var(--text);
      font-weight: 800;
      padding-top: 6px;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .vertical-card {
      position: relative;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      padding: 18px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 246, 252, .86)),
        radial-gradient(circle at 30% 12%, rgba(85, 214, 190, .18), transparent 34%);
      box-shadow: var(--shadow);
      transition: var(--ease);
    }

    .vertical-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(216, 95, 159, .22);
    }

    .vertical-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(182, 92, 255, .16) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: .32;
      mask-image: linear-gradient(180deg, #000, transparent 55%);
    }

    .card-top,
    .card-body-area,
    .card-footer-area {
      position: relative;
      z-index: 1;
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }

    .card-number {
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
      color: rgba(182, 92, 255, .34);
    }

    .card-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: var(--radius-pill);
      background: rgba(85, 214, 190, .13);
      color: #268f7d;
      font-size: 12px;
      font-weight: 800;
    }

    .card-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .vertical-card h3 {
      margin: 0 0 10px;
      font-size: 19px;
      line-height: 1.35;
      font-weight: 800;
    }

    .vertical-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .card-chips {
      margin-top: 18px;
    }

    .card-footer-area {
      margin-top: auto;
      padding-top: 22px;
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-2);
      font-weight: 800;
      font-size: 14px;
    }

    .mini-link:hover {
      color: var(--primary);
      transform: translateX(3px);
    }

    .process-band {
      position: relative;
      padding: 30px;
      border-radius: 34px;
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(248, 250, 255, .82)),
        radial-gradient(circle at 10% 20%, rgba(255, 184, 108, .18), transparent 28%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .process-item {
      position: relative;
      min-height: 168px;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(80, 50, 90, .10);
      background: rgba(255, 255, 255, .74);
      transition: var(--ease);
    }

    .process-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(78, 35, 93, .10);
    }

    .process-index {
      position: absolute;
      right: 14px;
      top: 10px;
      font-size: 44px;
      line-height: 1;
      font-weight: 800;
      color: rgba(216, 95, 159, .18);
    }

    .process-item strong {
      position: relative;
      display: block;
      margin-top: 42px;
      font-size: 17px;
      line-height: 1.35;
      z-index: 1;
    }

    .process-item span {
      position: relative;
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      z-index: 1;
    }

    .recommend-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(182, 92, 255, .10), rgba(85, 214, 190, .12)),
        rgba(255, 255, 255, .76);
      box-shadow: var(--shadow);
    }

    .recommend-title {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.35;
      margin-bottom: 5px;
    }

    .recommend-text {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .review-rail {
      overflow-x: auto;
      scrollbar-width: thin;
      padding-bottom: 6px;
    }

    .review-track {
      display: flex;
      gap: 14px;
      min-width: max-content;
    }

    .review-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 270px;
      padding: 14px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .76);
      box-shadow: 0 10px 26px rgba(78, 35, 93, .08);
      transition: var(--ease);
    }

    .review-pill:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .avatar {
      width: 38px;
      height: 38px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--accent), var(--primary));
    }

    .review-pill strong {
      display: block;
      font-size: 14px;
      line-height: 1.3;
    }

    .review-pill span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.3;
    }

    .apply-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
      gap: 24px;
      align-items: stretch;
    }

    .apply-note,
    .apply-card {
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow);
    }

    .apply-note {
      padding: 28px;
      display: grid;
      align-content: center;
      gap: 18px;
    }

    .note-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .note-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-weight: 700;
    }

    .note-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 auto;
      margin-top: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--primary-2));
    }

    .apply-card {
      padding: 26px;
    }

    .form-label {
      color: var(--text);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      min-height: 48px;
      border-radius: 16px;
      border: 1px solid rgba(80, 50, 90, .14);
      background-color: rgba(255, 250, 253, .82);
      color: var(--text);
      box-shadow: none;
      transition: var(--ease);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: rgba(216, 95, 159, .34);
      background-color: #fff;
    }

    .privacy-box {
      margin-top: 16px;
      padding: 13px 14px;
      border-radius: 18px;
      color: var(--muted);
      background: rgba(85, 214, 190, .10);
      border: 1px solid rgba(85, 214, 190, .18);
      font-size: 13px;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 22px !important;
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 10px 26px rgba(78, 35, 93, .07);
    }

    .accordion-button {
      padding: 18px 20px;
      color: var(--text);
      background: transparent;
      font-weight: 800;
      border: 0;
      box-shadow: none;
      line-height: 1.45;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-2);
      background: rgba(255, 238, 248, .72);
      box-shadow: none;
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: none;
    }

    .accordion-button::after {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: rgba(216, 95, 159, .12);
      background-size: 14px;
      background-position: center;
      padding: 8px;
    }

    .accordion-body {
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .site-footer {
      margin-top: 30px;
      padding: 54px 0 28px;
      border-top: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255, 238, 248, .72), rgba(248, 250, 255, .86)),
        rgba(255, 255, 255, .72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 34px;
    }

    .footer-brand {
      font-size: 20px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .footer-text {
      margin: 0;
      color: var(--muted);
      max-width: 540px;
      font-size: 14px;
    }

    .footer-title {
      color: var(--text);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      width: fit-content;
    }

    .footer-links a:hover {
      color: var(--primary-2);
      transform: translateX(3px);
    }

    .copyright {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .site-container {
        width: min(100% - 32px, var(--container));
      }

      .hero-shell,
      .apply-grid {
        grid-template-columns: 1fr;
      }

      .entry-grid,
      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head.wide {
        grid-template-columns: 1fr;
      }

      .recommend-strip {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .age-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 0;
        gap: 6px;
      }

      .site-header {
        padding: 14px 0;
      }

      .header-main {
        align-items: flex-start;
        flex-direction: column;
      }

      .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .header-actions .btn {
        padding-inline: 12px;
      }

      .brand-name {
        white-space: normal;
      }

      .brand-sub {
        white-space: normal;
      }

      .page-hero {
        padding-top: 36px;
      }

      .hero-shell {
        padding: 24px;
        border-radius: 28px;
      }

      .section {
        padding: 54px 0;
      }

      .filter-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .filter-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .entry-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .vertical-card {
        min-height: 310px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .btn {
        min-height: 42px;
        padding: 10px 14px;
        font-size: 14px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .header-actions {
        grid-template-columns: 1fr;
      }

      .hero-shell,
      .process-band,
      .apply-card,
      .apply-note,
      .filters-panel {
        padding: 20px;
      }

      .segment-nav {
        padding: 5px;
      }

      .nav-pills .nav-link {
        padding: 9px 14px;
      }

      .summary-list li {
        grid-template-columns: 38px 1fr;
      }

      .step-num {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }
    }
