/* roulang page: index */
:root {
      --bg: #08070D;
      --bg-soft: #111018;
      --bg-card: #15111D;
      --bg-card-2: rgba(255,255,255,0.045);
      --text: #F7F3FA;
      --muted: #B8AFC4;
      --weak: #7E748B;
      --line: rgba(255,255,255,0.10);
      --line-strong: rgba(255,46,136,0.42);
      --pink: #FF2E88;
      --pink-2: #FF3D9A;
      --purple: #8B5CF6;
      --green: #22E6B8;
      --amber: #FFB84D;
      --danger: #FF6B4A;
      --radius: 16px;
      --radius-sm: 12px;
      --shadow: 0 0 0 1px rgba(255,255,255,.08), 0 14px 40px rgba(255,46,136,.10);
      --shadow-hover: 0 0 0 1px rgba(255,46,136,.35), 0 18px 52px rgba(255,46,136,.18);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      background:
        radial-gradient(circle at 18% 10%, rgba(255,46,136,.16), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(34,230,184,.10), transparent 28%),
        linear-gradient(180deg, #08070D 0%, #111018 42%, #08070D 100%);
      color: var(--text);
      line-height: 1.8;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img, svg { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }
    ::selection { background: rgba(255,46,136,.38); color: #fff; }

    body::-webkit-scrollbar { width: 10px; }
    body::-webkit-scrollbar-track { background: #08070D; }
    body::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--pink), var(--green));
      border-radius: 999px;
      border: 2px solid #08070D;
    }

    .site-container {
      width: min(100% - 32px, 1220px);
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(8,7,13,.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .nav-shell {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 800;
      color: #fff;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, rgba(255,46,136,.95), rgba(139,92,246,.88)),
        #15111D;
      box-shadow: 0 0 24px rgba(255,46,136,.34);
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
      min-width: 0;
    }

    .brand-title {
      font-size: 15px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 360px;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
    }

    .nav-link {
      position: relative;
      padding: 10px 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: #fff;
      background: rgba(255,46,136,.10);
      outline: none;
    }

    .nav-link.active {
      color: #fff;
      background: rgba(255,46,136,.13);
      box-shadow: inset 0 -2px 0 var(--pink), 0 0 18px rgba(255,46,136,.18);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      min-height: 46px;
      padding: 0 20px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 12px 30px rgba(255,46,136,.22);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 16px 42px rgba(255,46,136,.34), 0 0 0 3px rgba(255,46,136,.16);
      outline: none;
    }

    .btn-primary:active { transform: translateY(0); }
    .btn-primary:disabled { opacity: .55; transform: none; cursor: not-allowed; box-shadow: none; }

    .btn-secondary {
      color: #fff;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,46,136,.38);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(255,46,136,.10);
      border-color: rgba(255,46,136,.72);
      transform: translateY(-1px);
      outline: none;
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: #fff;
      background: rgba(255,255,255,.045);
      align-items: center;
      justify-content: center;
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid var(--line);
      background: #08070D;
    }

    .mobile-panel.open { display: block; }
    .mobile-nav {
      display: grid;
      gap: 10px;
      padding: 16px 0 22px;
    }

    .mobile-nav a {
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      color: var(--muted);
      background: rgba(255,255,255,.035);
    }

    .mobile-nav a.active {
      color: #fff;
      border-color: rgba(255,46,136,.55);
      box-shadow: inset 3px 0 0 var(--pink);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      padding: 62px 0 44px;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.2) 76%, transparent);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -8%;
      right: -8%;
      bottom: 10%;
      height: 240px;
      z-index: -1;
      background:
        linear-gradient(92deg, transparent 0 10%, rgba(255,46,136,.18) 10% 11%, transparent 11% 20%, rgba(34,230,184,.12) 20% 21%, transparent 21% 100%);
      transform: skewY(-7deg);
      opacity: .75;
    }

    .hero-stage {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-billboard {
      min-height: 520px;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: clamp(28px, 5vw, 58px);
      background:
        linear-gradient(135deg, rgba(255,46,136,.18), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02)),
        #111018;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .hero-billboard::after {
      content: "";
      position: absolute;
      right: -80px;
      top: 70px;
      width: 340px;
      height: 340px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 50%;
      background:
        repeating-conic-gradient(from 20deg, rgba(255,46,136,.16) 0 12deg, transparent 12deg 25deg),
        radial-gradient(circle, rgba(34,230,184,.12), transparent 62%);
      opacity: .72;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 760px;
    }

    .eyebrow,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.045);
      color: var(--muted);
      padding: 7px 12px;
      font-size: 13px;
      line-height: 1.4;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 16px rgba(34,230,184,.7);
      flex: 0 0 auto;
    }

    h1 {
      margin: 24px 0 18px;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.16;
      font-weight: 900;
      letter-spacing: 0;
      color: #fff;
    }

    .hero-copy {
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-stats {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 34px;
    }

    .stat-tile {
      min-height: 104px;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px;
      background: rgba(8,7,13,.52);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .stat-tile:hover {
      transform: translateY(-2px);
      border-color: rgba(255,46,136,.42);
      box-shadow: 0 0 28px rgba(255,46,136,.12);
    }

    .stat-value {
      font-size: 30px;
      line-height: 1.1;
      font-weight: 900;
      color: #fff;
    }

    .stat-label {
      margin-top: 8px;
      color: var(--weak);
      font-size: 13px;
      line-height: 1.55;
    }

    .access-board {
      border-radius: 22px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(34,230,184,.10), transparent 42%),
        #15111D;
      padding: 22px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .board-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .board-title {
      font-size: 18px;
      font-weight: 850;
      color: #fff;
    }

    .board-item {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px;
      background: rgba(255,255,255,.035);
      transition: border-color .2s ease, transform .2s ease;
    }

    .board-item:hover {
      transform: translateY(-1px);
      border-color: rgba(34,230,184,.42);
    }

    .board-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
    }

    .bar {
      height: 7px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      margin-top: 12px;
    }

    .bar span {
      display: block;
      height: 100%;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--pink), var(--green));
      box-shadow: 0 0 18px rgba(255,46,136,.32);
    }

    main section {
      padding: 78px 0;
      position: relative;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(280px, .45fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-kicker {
      color: var(--green);
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.25;
      font-weight: 900;
      color: #fff;
      margin: 0;
    }

    .section-desc {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
      margin: 0;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-card-2);
      box-shadow: 0 0 0 1px rgba(255,255,255,.02);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 34%;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), transparent);
      transition: width .25s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(255,46,136,.38);
      box-shadow: var(--shadow-hover);
      background: rgba(255,255,255,.06);
    }

    .card:hover::before { width: 100%; }

    .benefit-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr .8fr;
      gap: 16px;
      align-items: stretch;
    }

    .benefit-card {
      padding: 22px;
      min-height: 220px;
    }

    .benefit-card.large {
      grid-row: span 2;
      min-height: 456px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(145deg, rgba(255,46,136,.14), rgba(34,230,184,.06)),
        rgba(255,255,255,.045);
    }

    .icon-box {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, rgba(255,46,136,.95), rgba(139,92,246,.78));
      box-shadow: 0 0 24px rgba(255,46,136,.24);
      margin-bottom: 18px;
    }

    .card h3 {
      color: #fff;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 850;
      margin: 0 0 10px;
    }

    .card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
      line-height: 1.8;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 18px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 32px;
      padding: 5px 11px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: rgba(255,255,255,.035);
      font-size: 13px;
      transition: border-color .2s ease, background .2s ease, color .2s ease;
    }

    .chip:hover,
    .chip.active {
      color: #fff;
      border-color: rgba(255,46,136,.62);
      background: rgba(255,46,136,.12);
    }

    .eligibility {
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        rgba(17,16,24,.64);
      border-block: 1px solid var(--line);
    }

    .rule-lanes {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .lane {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 20px;
      background: #111018;
      min-height: 190px;
    }

    .lane-number {
      width: 44px;
      height: 30px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      background: rgba(255,46,136,.14);
      border: 1px solid rgba(255,46,136,.34);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .lane h3 {
      color: #fff;
      font-size: 18px;
      margin: 0 0 8px;
      font-weight: 850;
    }

    .lane p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.75;
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
    }

    .route-panel {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #15111D;
      padding: 18px;
    }

    .route-item {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid var(--line);
    }

    .route-item:last-child { border-bottom: 0; }

    .route-time {
      color: var(--green);
      font-weight: 900;
      font-size: 14px;
    }

    .route-title {
      color: #fff;
      font-weight: 800;
      line-height: 1.45;
    }

    .route-note {
      color: var(--weak);
      font-size: 13px;
      line-height: 1.6;
      margin-top: 4px;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      border: 1px solid rgba(34,230,184,.32);
      color: var(--green);
      background: rgba(34,230,184,.08);
      padding: 5px 10px;
      font-size: 12px;
      white-space: nowrap;
    }

    .score-card {
      padding: 20px;
      background:
        linear-gradient(180deg, rgba(255,184,77,.12), transparent),
        rgba(255,255,255,.045);
    }

    .score-big {
      font-size: 58px;
      line-height: 1;
      font-weight: 950;
      color: #fff;
      margin: 8px 0;
    }

    .compare-wrap {
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      background: #111018;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1.05fr repeat(3, 1fr);
    }

    .compare-cell {
      padding: 18px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      min-height: 72px;
      display: flex;
      align-items: center;
    }

    .compare-cell:nth-child(4n) { border-right: 0; }
    .compare-cell.head {
      color: #fff;
      font-weight: 900;
      background: rgba(255,255,255,.045);
    }

    .compare-cell.recommend {
      color: #fff;
      background: rgba(255,46,136,.09);
      box-shadow: inset 0 0 0 1px rgba(255,46,136,.28);
    }

    .mobile-compare { display: none; }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 18px;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #111018;
      overflow: hidden;
    }

    .news-link {
      display: grid;
      grid-template-columns: 116px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-bottom: 1px solid var(--line);
      transition: background .2s ease;
    }

    .news-link:last-child { border-bottom: 0; }
    .news-link:hover { background: rgba(255,46,136,.08); }

    .news-type {
      color: var(--green);
      font-size: 13px;
      font-weight: 900;
    }

    .news-title {
      color: #fff;
      font-size: 17px;
      font-weight: 850;
      line-height: 1.5;
    }

    .news-summary {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-top: 4px;
    }

    .media-scroll {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 3px 3px 14px;
      scroll-snap-type: x mandatory;
    }

    .media-scroll::-webkit-scrollbar { height: 7px; }
    .media-scroll::-webkit-scrollbar-thumb { background: rgba(255,46,136,.44); border-radius: 999px; }

    .media-card {
      min-width: 260px;
      scroll-snap-align: start;
      padding: 18px;
    }

    .quote-wall {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .quote {
      padding: 18px;
      min-height: 170px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, rgba(255,46,136,.85), rgba(34,230,184,.52));
      display: inline-grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 940px;
      margin-inline: auto;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,.045);
      overflow: hidden;
      transition: border-color .2s ease, background .2s ease;
    }

    details[open] {
      border-color: rgba(34,230,184,.42);
      background: rgba(34,230,184,.055);
    }

    summary {
      min-height: 64px;
      list-style: none;
      cursor: pointer;
      padding: 18px 54px 18px 20px;
      color: #fff;
      font-weight: 850;
      position: relative;
      display: flex;
      align-items: center;
    }

    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--pink);
      font-size: 24px;
      line-height: 1;
    }

    details[open] summary::after {
      content: "−";
      color: var(--green);
    }

    .faq-body {
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
    }

    .cta-section {
      padding-bottom: 92px;
    }

    .cta-shell {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 22px;
      border: 1px solid rgba(255,46,136,.22);
      border-radius: 24px;
      padding: clamp(22px, 4vw, 36px);
      background:
        linear-gradient(135deg, rgba(255,46,136,.16), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
        #111018;
      box-shadow: var(--shadow);
    }

    .mini-meters {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .meter-row {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 14px;
      background: rgba(8,7,13,.42);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full { grid-column: 1 / -1; }
    label {
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(8,7,13,.72);
      color: #fff;
      padding: 13px 14px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    textarea { min-height: 112px; resize: vertical; }
    input::placeholder, textarea::placeholder { color: rgba(184,175,196,.58); }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(255,46,136,.66);
      box-shadow: 0 0 0 3px rgba(255,46,136,.18);
      background: rgba(8,7,13,.92);
    }

    .privacy-note {
      grid-column: 1 / -1;
      border: 1px solid rgba(34,230,184,.28);
      border-radius: 14px;
      padding: 12px 14px;
      color: var(--muted);
      background: rgba(34,230,184,.06);
      font-size: 13px;
      line-height: 1.7;
    }

    .form-message {
      min-height: 24px;
      color: var(--green);
      font-size: 14px;
      margin-top: 10px;
    }

    .site-footer {
      background: #08070D;
      border-top: 1px solid var(--line);
      position: relative;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), var(--purple), var(--green));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      padding: 42px 0 28px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .footer-text,
    .footer-link,
    .copyright {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-link:hover {
      color: #fff;
    }

    .copyright {
      border-top: 1px solid var(--line);
      padding: 18px 0 24px;
    }

    @media (max-width: 1023px) {
      .desktop-nav, .nav-cta { display: none; }
      .menu-button { display: inline-flex; }
      .hero { min-height: auto; padding-top: 44px; }
      .hero-stage,
      .section-head,
      .entry-matrix,
      .news-layout,
      .cta-shell {
        grid-template-columns: 1fr;
      }
      .hero-billboard { min-height: auto; }
      .benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .benefit-card.large { grid-row: auto; min-height: 260px; grid-column: 1 / -1; }
      .rule-lanes { grid-template-columns: repeat(2, 1fr); }
      .quote-wall { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 767px) {
      .site-container { width: min(100% - 24px, 1220px); }
      .brand-title { max-width: 230px; font-size: 13px; }
      .brand-sub { display: none; }
      main section { padding: 54px 0; }
      .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-actions .btn { width: 100%; }
      .benefit-grid,
      .rule-lanes,
      .quote-wall,
      .footer-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }
      .field.full,
      .privacy-note { grid-column: auto; }
      .route-item,
      .news-link {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .compare-grid { display: none; }
      .mobile-compare {
        display: grid;
        gap: 12px;
      }
      .mobile-plan {
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 18px;
        background: #111018;
      }
      .mobile-plan.recommend {
        border-color: rgba(255,46,136,.45);
        box-shadow: 0 0 24px rgba(255,46,136,.12);
      }
      .mobile-plan h3 {
        color: #fff;
        margin: 0 0 10px;
        font-size: 18px;
      }
      .mobile-plan p {
        color: var(--muted);
        margin: 8px 0 0;
        font-size: 14px;
        line-height: 1.7;
      }
    }

    @media (max-width: 520px) {
      .nav-shell { min-height: 66px; }
      .brand-mark { width: 34px; height: 34px; border-radius: 11px; }
      h1 { font-size: 31px; }
      .hero-copy { font-size: 15px; }
      .hero-billboard, .access-board, .cta-shell { border-radius: 18px; }
      .hero-stats { grid-template-columns: 1fr; }
      .score-big { font-size: 46px; }
      .news-title { font-size: 16px; }
      summary { padding-right: 46px; }
    }

/* roulang page: category1 */
:root {
      --bg: #08070D;
      --bg-soft: #111018;
      --bg-card: #15111D;
      --bg-panel: #17121F;
      --text: #F7F3FA;
      --muted: #B8AFC4;
      --weak: #7E748B;
      --primary: #FF2E88;
      --primary-2: #8D4DFF;
      --accent: #22E6B8;
      --warn: #FFB84D;
      --border: rgba(255,255,255,0.10);
      --border-strong: rgba(255,255,255,0.18);
      --shadow: 0 0 0 1px rgba(255,255,255,.08), 0 18px 48px rgba(255,46,136,.10);
      --radius: 16px;
      --radius-sm: 12px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.8;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255,46,136,.16), transparent 28%),
        radial-gradient(circle at 78% 2%, rgba(34,230,184,.10), transparent 26%),
        linear-gradient(180deg, #08070D 0%, #111018 48%, #08070D 100%);
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(255,46,136,.32);
      color: #fff;
    }

    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #09080f;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--primary), var(--primary-2));
      border-radius: 999px;
    }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(8,7,13,.94);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(16px);
    }

    .nav-shell {
      min-height: 72px;
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      color: #fff;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 0 28px rgba(255,46,136,.34);
    }

    .brand-text {
      display: grid;
      gap: 1px;
      min-width: 0;
    }

    .brand-title {
      max-width: 360px;
      color: var(--text);
      font-weight: 800;
      font-size: 15px;
      line-height: 1.35;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.25;
    }

    .desktop-nav {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: transparent;
      transition: background .2s ease, box-shadow .2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff;
      background: rgba(255,46,136,.10);
    }

    .nav-link.active::after {
      background: var(--primary);
      box-shadow: 0 0 12px rgba(255,46,136,.72);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 750;
      font-size: 14px;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 30px rgba(255,46,136,.22);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 38px rgba(255,46,136,.34), 0 0 0 1px rgba(255,255,255,.14) inset;
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 8px 20px rgba(255,46,136,.22);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.035);
      border-color: rgba(255,46,136,.36);
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      background: rgba(255,46,136,.10);
      border-color: rgba(255,46,136,.72);
      box-shadow: 0 0 24px rgba(255,46,136,.16);
    }

    .btn:focus-visible,
    .nav-link:focus-visible,
    .brand:focus-visible,
    .footer-link:focus-visible,
    .chip:focus-visible,
    .menu-button:focus-visible {
      outline: 2px solid rgba(34,230,184,.78);
      outline-offset: 3px;
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      margin-left: auto;
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--text);
      background: rgba(255,255,255,.045);
      align-items: center;
      justify-content: center;
      transition: background .2s ease, border-color .2s ease;
    }

    .menu-button:hover {
      background: rgba(255,46,136,.10);
      border-color: rgba(255,46,136,.44);
    }

    .mobile-panel {
      display: none;
      padding: 0 0 16px;
    }

    .mobile-panel.open {
      display: block;
    }

    .mobile-nav {
      display: grid;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: #0b0911;
      box-shadow: var(--shadow);
    }

    .mobile-nav a {
      padding: 14px 16px;
      color: var(--muted);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: color .2s ease, background .2s ease;
    }

    .mobile-nav a:last-child {
      border-bottom: 0;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
      color: #fff;
      background: rgba(255,46,136,.10);
    }

    main {
      position: relative;
      overflow: hidden;
    }

    .section {
      padding: 78px 0;
      position: relative;
    }

    .hero {
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--border);
      background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255,46,136,.09), transparent 54%),
        linear-gradient(135deg, rgba(23,18,31,.78), rgba(8,7,13,.2));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 28px;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--accent);
      border: 1px solid rgba(34,230,184,.26);
      background: rgba(34,230,184,.07);
      font-size: 13px;
      line-height: 1.2;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 14px rgba(34,230,184,.8);
    }

    h1 {
      margin: 18px 0 18px;
      max-width: 820px;
      font-size: clamp(32px, 4.2vw, 54px);
      line-height: 1.16;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .mini-board {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 32px;
    }

    .metric {
      min-height: 108px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.045);
      box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
    }

    .metric-value {
      display: flex;
      align-items: baseline;
      gap: 4px;
      color: #fff;
      font-size: 28px;
      line-height: 1;
      font-weight: 900;
    }

    .metric-value small {
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
    }

    .metric-label {
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .schedule-panel,
    .side-card,
    .content-card,
    .matrix-card,
    .faq-item,
    .form-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
      box-shadow: var(--shadow);
    }

    .schedule-panel {
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .schedule-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--warn));
    }

    .panel-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .panel-title strong {
      font-size: 18px;
      line-height: 1.35;
    }

    .status-badge,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      padding: 5px 10px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255,255,255,.04);
      font-size: 12px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .status-badge.hot {
      color: #fff;
      border-color: rgba(255,46,136,.42);
      background: rgba(255,46,136,.12);
    }

    .status-badge.ok {
      color: var(--accent);
      border-color: rgba(34,230,184,.36);
      background: rgba(34,230,184,.08);
    }

    .time-grid {
      display: grid;
      gap: 10px;
    }

    .time-row {
      display: grid;
      grid-template-columns: 86px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      background: rgba(8,7,13,.42);
    }

    .time-row .time {
      color: #fff;
      font-weight: 850;
      font-size: 14px;
    }

    .time-row .desc {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .progress {
      height: 8px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      box-shadow: 0 0 18px rgba(255,46,136,.35);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    h2 {
      margin: 0;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.28;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .filter-bar {
      display: flex;
      gap: 10px;
      padding: 12px;
      margin-bottom: 24px;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255,255,255,.035);
      scrollbar-width: thin;
    }

    .chip {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(8,7,13,.42);
      font-size: 14px;
      transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .chip:hover,
    .chip.active {
      color: #fff;
      border-color: rgba(255,46,136,.68);
      background: rgba(255,46,136,.12);
      box-shadow: 0 0 18px rgba(255,46,136,.12);
    }

    .main-layout {
      display: grid;
      grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
      gap: 24px;
      align-items: start;
    }

    .content-list {
      display: grid;
      gap: 16px;
    }

    .content-card {
      position: relative;
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 18px;
      padding: 14px;
      overflow: hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .content-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 16px;
      bottom: 16px;
      width: 3px;
      border-radius: 999px;
      background: rgba(255,46,136,.55);
      transition: background .2s ease, box-shadow .2s ease;
    }

    .content-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255,46,136,.42);
      box-shadow: 0 0 0 1px rgba(255,46,136,.20), 0 16px 40px rgba(255,46,136,.12);
    }

    .content-card:hover::before {
      background: var(--accent);
      box-shadow: 0 0 16px rgba(34,230,184,.64);
    }

    .thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      min-height: 124px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(255,46,136,.22), transparent 42%),
        linear-gradient(315deg, rgba(34,230,184,.16), transparent 38%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 15px),
        #100d16;
    }

    .thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 35%);
    }

    .play-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      width: 48px;
      height: 48px;
      transform: translate(-50%, -50%);
      display: grid;
      place-items: center;
      color: #fff;
      border-radius: 999px;
      background: rgba(255,46,136,.88);
      box-shadow: 0 0 28px rgba(255,46,136,.45);
    }

    .card-body {
      min-width: 0;
      display: grid;
      align-content: center;
      gap: 10px;
    }

    .card-title-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

    h3 {
      margin: 0;
      color: #fff;
      font-size: 21px;
      line-height: 1.35;
      font-weight: 850;
      letter-spacing: 0;
    }

    .card-summary {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--weak);
      font-size: 13px;
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 96px;
    }

    .side-card {
      padding: 18px;
    }

    .side-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      color: #fff;
      font-size: 17px;
      font-weight: 850;
    }

    .index-number {
      color: var(--accent);
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
    }

    .rank-list {
      display: grid;
      gap: 10px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 10px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px;
      background: rgba(8,7,13,.38);
    }

    .rank-no {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,46,136,.18);
      font-size: 12px;
      font-weight: 850;
    }

    .rank-name {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .matrix {
      display: grid;
      grid-template-columns: 1.25fr .9fr .9fr;
      gap: 16px;
    }

    .matrix-card {
      min-height: 190px;
      padding: 20px;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .matrix-card.tall {
      grid-row: span 2;
      min-height: 398px;
    }

    .matrix-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), transparent);
      opacity: .9;
    }

    .matrix-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255,46,136,.45);
      box-shadow: 0 0 0 1px rgba(255,46,136,.16), 0 18px 42px rgba(255,46,136,.12);
    }

    .card-num {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 4px 9px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,46,136,.16);
      border: 1px solid rgba(255,46,136,.28);
      font-size: 12px;
      font-weight: 850;
    }

    .matrix-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .score-table {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255,255,255,.035);
      box-shadow: var(--shadow);
    }

    .score-row {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, 1fr);
      min-height: 70px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .score-row:last-child {
      border-bottom: 0;
    }

    .score-cell {
      display: flex;
      align-items: center;
      padding: 16px 18px;
      color: var(--muted);
      border-right: 1px solid rgba(255,255,255,.08);
      font-size: 14px;
      line-height: 1.65;
    }

    .score-cell:last-child {
      border-right: 0;
    }

    .score-head .score-cell {
      color: #fff;
      font-weight: 850;
      background: rgba(255,255,255,.045);
    }

    .score-cell.recommend {
      color: #fff;
      background: rgba(255,46,136,.10);
      box-shadow: inset 0 0 0 1px rgba(255,46,136,.25);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .faq-item[open] {
      border-color: rgba(34,230,184,.38);
      box-shadow: 0 0 0 1px rgba(34,230,184,.14), 0 14px 34px rgba(34,230,184,.06);
    }

    .faq-item summary {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 18px;
      color: #fff;
      font-weight: 800;
      list-style: none;
      cursor: pointer;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      color: var(--primary);
      border: 1px solid rgba(255,46,136,.28);
      border-radius: 999px;
      transition: transform .2s ease, color .2s ease, border-color .2s ease;
    }

    .faq-item[open] .faq-icon {
      transform: rotate(45deg);
      color: var(--accent);
      border-color: rgba(34,230,184,.42);
    }

    .faq-item p {
      margin: 0;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
    }

    .cta-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
      padding: 26px;
      border: 1px solid rgba(255,46,136,.22);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(255,46,136,.14), rgba(34,230,184,.07)),
        rgba(255,255,255,.035);
      box-shadow: var(--shadow);
    }

    .cta-copy {
      padding: 10px 0;
    }

    .cta-copy p {
      margin: 16px 0 0;
      color: var(--muted);
      line-height: 1.85;
    }

    .signal-bars {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .signal-item {
      display: grid;
      grid-template-columns: 90px 1fr 44px;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 13px;
    }

    .form-card {
      padding: 20px;
      background: rgba(8,7,13,.46);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 750;
    }

    input, select, textarea {
      width: 100%;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      background: rgba(255,255,255,.055);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    input, select {
      min-height: 46px;
      padding: 0 13px;
    }

    textarea {
      min-height: 112px;
      resize: vertical;
      padding: 12px 13px;
      line-height: 1.7;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(184,175,196,.62);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(255,46,136,.72);
      box-shadow: 0 0 0 3px rgba(255,46,136,.18);
      background: rgba(255,255,255,.075);
    }

    .notice {
      padding: 12px;
      border: 1px solid rgba(255,184,77,.28);
      border-radius: 12px;
      color: #E9D2AA;
      background: rgba(255,184,77,.08);
      font-size: 13px;
      line-height: 1.75;
    }

    .form-message {
      min-height: 22px;
      color: var(--accent);
      font-size: 13px;
    }

    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .page-link {
      min-width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--muted);
      background: rgba(255,255,255,.035);
      transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .page-link:hover,
    .page-link.current {
      color: #fff;
      border-color: rgba(255,46,136,.58);
      background: rgba(255,46,136,.12);
      box-shadow: 0 0 18px rgba(255,46,136,.14);
    }

    .site-footer {
      padding: 52px 0 28px;
      border-top: 1px solid var(--border);
      background: #08070D;
      position: relative;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--accent));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .75fr .9fr;
      gap: 34px;
      align-items: start;
    }

    .footer-text {
      max-width: 520px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-title {
      margin-bottom: 12px;
      color: #fff;
      font-weight: 850;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-link {
      width: fit-content;
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      color: var(--weak);
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 13px;
      line-height: 1.75;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .main-layout,
      .cta-wrap {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .matrix-card.tall {
        grid-row: auto;
        min-height: 220px;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .nav-shell {
        min-height: 68px;
      }

      .desktop-nav,
      .nav-cta {
        display: none;
      }

      .menu-button {
        display: inline-flex;
      }

      .brand-title {
        max-width: 210px;
        font-size: 14px;
      }

      .hero {
        padding-top: 38px;
      }

      .mini-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section {
        padding: 56px 0;
      }

      .content-card {
        grid-template-columns: 1fr;
      }

      .thumb {
        min-height: auto;
      }

      .side-stack,
      .matrix {
        grid-template-columns: 1fr;
      }

      .score-table {
        display: grid;
        gap: 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .score-row,
      .score-row.score-head {
        display: grid;
        grid-template-columns: 1fr;
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        background: rgba(255,255,255,.035);
      }

      .score-row.score-head {
        display: none;
      }

      .score-cell {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }

      .score-cell:last-child {
        border-bottom: 0;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 31px;
      }

      .hero-lead,
      .section-desc {
        font-size: 15px;
      }

      .time-row {
        grid-template-columns: 1fr;
      }

      .metric {
        padding: 14px;
      }

      .signal-item {
        grid-template-columns: 78px 1fr 36px;
      }

      .cta-wrap {
        padding: 18px;
        border-radius: 18px;
      }

      .pagination .page-link:nth-child(n+4):nth-child(-n+5) {
        display: none;
      }
    }
