/* roulang page: index */
:root {
      --bg: #fbf7f3;
      --bg-soft: #fffaf6;
      --surface: rgba(255, 255, 255, 0.86);
      --surface-strong: #ffffff;
      --ink: #1d1720;
      --muted: #716674;
      --weak: #9c919e;
      --line: rgba(38, 24, 45, 0.10);
      --line-strong: rgba(38, 24, 45, 0.16);
      --primary: #c92f66;
      --primary-dark: #9f204f;
      --primary-soft: #ffe4ee;
      --secondary: #33255a;
      --accent: #f6a23d;
      --mint: #19a78b;
      --danger: #e35d5b;
      --radius-xs: 10px;
      --radius-sm: 16px;
      --radius-md: 24px;
      --radius-lg: 34px;
      --shadow-sm: 0 10px 28px rgba(48, 27, 58, 0.08);
      --shadow-md: 0 18px 52px rgba(48, 27, 58, 0.12);
      --shadow-lg: 0 28px 80px rgba(48, 27, 58, 0.18);
      --container: 1180px;
      --ease: cubic-bezier(.2, .8, .2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.7;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 6%, rgba(255, 214, 232, .8), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(255, 222, 171, .72), transparent 32%),
        linear-gradient(180deg, #fff7f2 0%, var(--bg) 42%, #f8f3ef 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    button, input, textarea, select {
      font: inherit;
    }

    button {
      border: none;
      cursor: pointer;
      background: transparent;
    }

    ::selection {
      color: #fff;
      background: var(--primary);
    }

    :focus-visible {
      outline: 3px solid rgba(201, 47, 102, .32);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 14px;
      z-index: 50;
      padding: 14px 0 6px;
    }

    .nav-panel {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(22px);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      padding: 10px 12px;
      border-radius: 20px;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--ink);
      transition: transform .25s var(--ease), background .25s var(--ease);
    }

    .brand:hover {
      transform: translateY(-1px);
      background: var(--primary-soft);
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      font-size: 18px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 26px rgba(201, 47, 102, .28);
    }

    .nav-card-list {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 0;
    }

    .nav-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid transparent;
      border-radius: 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
      white-space: nowrap;
      transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
    }

    .nav-item:hover {
      color: var(--ink);
      background: #fff;
      border-color: var(--line);
      transform: translateY(-1px);
    }

    .nav-item.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
      border-color: rgba(201, 47, 102, .18);
    }

    .nav-dot {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: currentColor;
      box-shadow: 0 0 0 5px rgba(201, 47, 102, .08);
    }

    .nav-search {
      position: relative;
      width: 230px;
      max-width: 25vw;
    }

    .nav-search input {
      width: 100%;
      padding: 11px 14px 11px 38px;
      border: 1px solid var(--line);
      border-radius: 18px;
      color: var(--ink);
      background: rgba(255, 255, 255, .78);
      transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    }

    .nav-search input::placeholder {
      color: var(--weak);
    }

    .nav-search input:focus {
      border-color: rgba(201, 47, 102, .45);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(201, 47, 102, .10);
      outline: none;
    }

    .nav-search span {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--weak);
      font-size: 14px;
      pointer-events: none;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: max-content;
      padding: 11px 16px;
      border-radius: 18px;
      color: #fff;
      font-weight: 850;
      background: linear-gradient(135deg, var(--ink), var(--secondary));
      box-shadow: 0 14px 28px rgba(36, 25, 50, .20);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(36, 25, 50, .26);
      filter: saturate(1.08);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      align-items: center;
      justify-content: center;
      font-weight: 900;
      transition: background .25s var(--ease), transform .25s var(--ease);
    }

    .menu-toggle:hover {
      background: var(--primary-soft);
      transform: translateY(-1px);
    }

    main {
      padding-top: 32px;
    }

    section {
      position: relative;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 52px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding: 7px 12px;
      border: 1px solid rgba(201, 47, 102, .18);
      border-radius: 999px;
      color: var(--primary-dark);
      background: rgba(255, 228, 238, .62);
      font-size: 13px;
      font-weight: 850;
    }

    .section-title {
      max-width: 780px;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -0.045em;
      color: var(--ink);
    }

    .section-desc {
      max-width: 760px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero {
      padding: 28px 0 72px;
    }

    .hero-stage {
      position: relative;
      overflow: hidden;
      min-height: 590px;
      padding: clamp(26px, 5vw, 58px);
      border: 1px solid var(--line);
      border-radius: 42px;
      background:
        linear-gradient(130deg, rgba(29, 23, 32, .94) 0%, rgba(61, 38, 79, .91) 44%, rgba(201, 47, 102, .82) 100%),
        radial-gradient(circle at 80% 18%, rgba(246, 162, 61, .42), transparent 32%);
      box-shadow: var(--shadow-lg);
      color: #fff;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 32px;
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 470px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      width: fit-content;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 999px;
      color: rgba(255, 255, 255, .92);
      background: rgba(255, 255, 255, .10);
      backdrop-filter: blur(12px);
      font-size: 13px;
      font-weight: 800;
    }

    .badge.light {
      color: var(--primary-dark);
      border-color: rgba(201, 47, 102, .18);
      background: var(--primary-soft);
      backdrop-filter: none;
    }

    h1 {
      max-width: 820px;
      font-size: clamp(42px, 7.4vw, 86px);
      line-height: .98;
      letter-spacing: -0.07em;
      font-weight: 950;
    }

    .hero-lead {
      max-width: 720px;
      margin-top: 24px;
      color: rgba(255, 255, 255, .78);
      font-size: clamp(17px, 1.8vw, 20px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 13px 18px;
      border-radius: 18px;
      border: 1px solid transparent;
      font-weight: 900;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
      user-select: none;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #ee7b63);
      box-shadow: 0 18px 36px rgba(201, 47, 102, .28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 46px rgba(201, 47, 102, .36);
    }

    .btn-secondary {
      color: #fff;
      border-color: rgba(255, 255, 255, .20);
      background: rgba(255, 255, 255, .12);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, .18);
    }

    .btn-ghost {
      color: var(--ink);
      border-color: var(--line);
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .btn-ghost:hover {
      color: var(--primary-dark);
      border-color: rgba(201, 47, 102, .24);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 42px;
    }

    .metric {
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 22px;
      background: rgba(255, 255, 255, .10);
    }

    .metric strong {
      display: block;
      font-size: 26px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .metric span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, .68);
      font-size: 13px;
    }

    .apply-card {
      align-self: end;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 30px;
      background: rgba(255, 255, 255, .14);
      box-shadow: 0 24px 58px rgba(0, 0, 0, .16);
      backdrop-filter: blur(18px);
    }

    .apply-card h2 {
      font-size: 24px;
      letter-spacing: -0.03em;
    }

    .apply-card p {
      margin-top: 8px;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
    }

    .apply-form {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: rgba(255, 255, 255, .80);
      font-size: 13px;
      font-weight: 800;
    }

    .field input, .field select, .field textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 16px;
      padding: 12px 13px;
      color: #fff;
      background: rgba(255, 255, 255, .10);
      transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    }

    .field select option {
      color: var(--ink);
      background: #fff;
    }

    .field textarea {
      min-height: 82px;
      resize: vertical;
    }

    .field input::placeholder, .field textarea::placeholder {
      color: rgba(255, 255, 255, .46);
    }

    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: rgba(255, 255, 255, .42);
      background: rgba(255, 255, 255, .15);
      outline: none;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, .10);
    }

    .form-note {
      color: rgba(255, 255, 255, .58);
      font-size: 12px;
    }

    .live-layout {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 22px;
      align-items: start;
    }

    .live-board, .card, .glass-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
    }

    .live-board {
      padding: 24px;
      min-height: 100%;
    }

    .status-bar {
      overflow: hidden;
      height: 12px;
      margin: 22px 0;
      border-radius: 999px;
      background: #f1e7e6;
    }

    .status-bar i {
      display: block;
      width: 68%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      animation: pulseWidth 2.8s ease-in-out infinite;
    }

    @keyframes pulseWidth {
      0%, 100% { width: 62%; }
      50% { width: 74%; }
    }

    .live-board .big-time {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-top: 16px;
    }

    .big-time strong {
      font-size: clamp(42px, 6vw, 72px);
      letter-spacing: -0.06em;
      line-height: .95;
    }

    .big-time span {
      color: var(--muted);
      font-weight: 850;
    }

    .timeline {
      display: grid;
      gap: 12px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, .70);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }

    .timeline-item:hover {
      transform: translateY(-3px);
      border-color: rgba(201, 47, 102, .20);
      box-shadow: var(--shadow-sm);
    }

    .timeline-time {
      color: var(--primary-dark);
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .timeline-title {
      font-weight: 900;
    }

    .timeline-desc {
      margin-top: 2px;
      color: var(--muted);
      font-size: 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--secondary);
      background: #f0eafa;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .tag.hot {
      color: #fff;
      background: var(--primary);
    }

    .tag.green {
      color: #087864;
      background: #dff8f2;
    }

    .highlight-wrap {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      margin-top: 28px;
    }

    .feature-major {
      min-height: 430px;
      padding: 30px;
      border-radius: 34px;
      color: #fff;
      background:
        linear-gradient(145deg, rgba(201, 47, 102, .92), rgba(51, 37, 90, .94)),
        radial-gradient(circle at 85% 18%, rgba(246, 162, 61, .55), transparent 34%);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .feature-major h3 {
      margin-top: 24px;
      max-width: 520px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -0.05em;
    }

    .feature-major p {
      max-width: 560px;
      margin-top: 16px;
      color: rgba(255, 255, 255, .76);
      font-size: 17px;
    }

    .feature-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 36px;
    }

    .feature-point {
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 20px;
      background: rgba(255, 255, 255, .11);
    }

    .feature-point strong {
      display: block;
      font-size: 18px;
    }

    .feature-point span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, .66);
      font-size: 13px;
    }

    .stack-list {
      display: grid;
      gap: 14px;
    }

    .stack-card {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-sm);
      transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    }

    .stack-card:hover {
      transform: translateX(4px);
      border-color: rgba(201, 47, 102, .24);
      box-shadow: var(--shadow-md);
    }

    .icon-box {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 24px rgba(201, 47, 102, .22);
      font-weight: 950;
    }

    .stack-card h3 {
      font-size: 18px;
      letter-spacing: -0.02em;
    }

    .stack-card p {
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
    }

    .matrix {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .matrix-item {
      min-height: 142px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-sm);
      transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
    }

    .matrix-item:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 47, 102, .22);
      background: #fff;
    }

    .matrix-item .symbol {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      border-radius: 16px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-weight: 950;
    }

    .matrix-item h3 {
      font-size: 17px;
    }

    .matrix-item p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
      margin-top: 28px;
    }

    .guide-card {
      padding: 26px;
      border-radius: 30px;
      background: var(--surface-strong);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .guide-list {
      display: grid;
      gap: 12px;
      list-style: none;
      counter-reset: guide;
    }

    .guide-list li {
      position: relative;
      padding: 16px 16px 16px 58px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: #fffaf8;
    }

    .guide-list li::before {
      counter-increment: guide;
      content: counter(guide);
      position: absolute;
      left: 16px;
      top: 18px;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background: var(--secondary);
      font-size: 13px;
      font-weight: 950;
    }

    .guide-list strong {
      display: block;
      font-size: 16px;
    }

    .guide-list span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
    }

    .progress-card {
      padding: 26px;
      border-radius: 30px;
      color: #fff;
      background: linear-gradient(145deg, var(--secondary), #1d1720);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .progress-top {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      margin-bottom: 22px;
    }

    .progress-top strong {
      font-size: 28px;
      letter-spacing: -0.04em;
    }

    .progress-track {
      height: 12px;
      margin: 12px 0 20px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      overflow: hidden;
    }

    .progress-track i {
      display: block;
      width: 76%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--primary));
    }

    .check-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
    }

    .check-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      flex: 0 0 22px;
      height: 22px;
      border-radius: 999px;
      color: #251832;
      background: #fff;
      font-weight: 950;
      line-height: 1;
    }

    .media-shell {
      margin-top: 28px;
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: thin;
      scrollbar-color: rgba(201,47,102,.38) transparent;
    }

    .media-row {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 32%);
      gap: 16px;
    }

    .media-card {
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: linear-gradient(180deg, #fff, #fff6f2);
      box-shadow: var(--shadow-sm);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }

    .media-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .media-card h3 {
      margin-top: 18px;
      font-size: 21px;
      letter-spacing: -0.03em;
    }

    .media-card p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .media-meta {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      color: var(--weak);
      font-size: 13px;
      font-weight: 800;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) 360px;
      gap: 22px;
      margin-top: 28px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 10px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-sm);
    }

    .news-link {
      display: grid;
      grid-template-columns: 116px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 22px;
      transition: background .25s var(--ease), transform .25s var(--ease);
    }

    .news-link:hover {
      background: #fff4f1;
      transform: translateX(3px);
    }

    .news-date {
      color: var(--primary-dark);
      font-weight: 950;
      font-size: 13px;
    }

    .news-link h3 {
      font-size: 17px;
      letter-spacing: -0.02em;
    }

    .news-link p {
      margin-top: 4px;
      color: var(--muted);
      font-size: 14px;
    }

    .arrow {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      transition: transform .25s var(--ease);
    }

    .news-link:hover .arrow {
      transform: translateX(2px);
    }

    .recommend {
      padding: 24px;
      border-radius: 30px;
      border: 1px solid var(--line);
      background: #201827;
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .recommend p {
      margin-top: 10px;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .mini-links {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }

    .mini-link {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 13px 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .86);
      transition: background .25s var(--ease), transform .25s var(--ease);
    }

    .mini-link:hover {
      background: rgba(255, 255, 255, .14);
      transform: translateX(3px);
    }

    .compare-box {
      margin-top: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255, 255, 255, .82);
      box-shadow: var(--shadow-sm);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 760px;
    }

    .compare-table th, .compare-table td {
      padding: 18px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      vertical-align: middle;
    }

    .compare-table th {
      color: var(--ink);
      font-size: 14px;
      background: #fff8f5;
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .plan-name {
      font-weight: 950;
    }

    .recommended-col {
      position: relative;
      color: var(--primary-dark);
      background: linear-gradient(180deg, rgba(255,228,238,.64), rgba(255,255,255,.28));
    }

    .recommended-col .tag {
      margin-left: 8px;
    }

    .table-scroll {
      overflow-x: auto;
    }

    .subscribe-panel {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      padding: clamp(24px, 4vw, 38px);
      border-radius: 36px;
      color: #fff;
      background:
        radial-gradient(circle at 86% 16%, rgba(246, 162, 61, .42), transparent 30%),
        linear-gradient(135deg, #23192c, #5d244d 54%, #c92f66);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .subscribe-panel .section-kicker {
      color: #fff;
      border-color: rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .12);
    }

    .subscribe-panel .section-title {
      color: #fff;
    }

    .subscribe-panel .section-desc {
      color: rgba(255, 255, 255, .72);
    }

    .subscribe-form {
      display: grid;
      gap: 12px;
      align-self: center;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 28px;
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(14px);
    }

    .subscribe-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }

    .subscribe-form input {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 18px;
      color: #fff;
      background: rgba(255, 255, 255, .10);
    }

    .subscribe-form input::placeholder {
      color: rgba(255, 255, 255, .52);
    }

    .subscribe-form input:focus {
      outline: none;
      border-color: rgba(255,255,255,.46);
      box-shadow: 0 0 0 4px rgba(255,255,255,.10);
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    .chip {
      padding: 7px 10px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 999px;
      color: rgba(255, 255, 255, .78);
      background: rgba(255, 255, 255, .08);
      font-size: 12px;
      font-weight: 800;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 24px;
      margin-top: 28px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 118px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: var(--surface-strong);
      box-shadow: var(--shadow-sm);
    }

    .faq-aside p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px;
      color: var(--ink);
      text-align: left;
      font-weight: 950;
    }

    .faq-question span:last-child {
      flex: 0 0 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      transition: transform .25s var(--ease);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .site-footer {
      padding: 52px 0 28px;
      background: #17111d;
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 26px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .footer-text {
      max-width: 620px;
      margin-top: 14px;
      color: rgba(255, 255, 255, .62);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: 14px;
      color: rgba(255, 255, 255, .76);
      transition: background .25s var(--ease), color .25s var(--ease);
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .08);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .10);
      color: rgba(255, 255, 255, .48);
      font-size: 13px;
    }

    .toast {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 80;
      max-width: 360px;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 18px;
      color: #fff;
      background: rgba(29, 23, 32, .92);
      box-shadow: var(--shadow-lg);
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s var(--ease), transform .25s var(--ease);
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .nav-search {
        display: none;
      }

      .hero-grid,
      .live-layout,
      .highlight-wrap,
      .guide-grid,
      .news-layout,
      .subscribe-panel,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        min-height: auto;
      }

      .apply-card {
        align-self: stretch;
      }

      .matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .media-row {
        grid-auto-columns: minmax(260px, 44%);
      }

      .faq-aside {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .site-header {
        top: 8px;
      }

      .nav-panel {
        flex-wrap: wrap;
        border-radius: 24px;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-card-list {
        order: 5;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
      }

      .nav-panel.menu-open .nav-card-list {
        display: flex;
      }

      .nav-item {
        justify-content: space-between;
        width: 100%;
        background: rgba(255,255,255,.72);
      }

      .nav-cta {
        display: none;
      }

      .section {
        padding: 58px 0;
      }

      .hero-stage {
        min-height: auto;
        border-radius: 30px;
      }

      .hero-stage::before {
        inset: 10px;
        border-radius: 24px;
      }

      .hero-metrics,
      .feature-points {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .timeline-item .tag {
        width: fit-content;
      }

      .matrix {
        grid-template-columns: 1fr;
      }

      .news-link {
        grid-template-columns: 1fr;
      }

      .arrow {
        display: none;
      }

      .media-row {
        grid-auto-columns: minmax(240px, 78%);
      }

      .subscribe-row {
        grid-template-columns: 1fr;
      }

      .footer-grid,
      .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 42px;
      }

      .hero {
        padding-top: 18px;
      }

      .hero-stage {
        padding: 22px;
      }

      .brand span:last-child {
        max-width: 164px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .section-title {
        font-size: 30px;
      }

      .apply-card,
      .live-board,
      .guide-card,
      .progress-card,
      .recommend {
        padding: 20px;
        border-radius: 24px;
      }

      .compare-table {
        min-width: 680px;
      }

      .toast {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }
    }
