/* roulang page: index */
:root {
      --bg: #090b12;
      --bg-soft: #101421;
      --bg-card: rgba(255,255,255,.075);
      --bg-card-solid: #151a2a;
      --text: #f7f8fb;
      --text-weak: #aeb6ca;
      --text-muted: #7f8aa3;
      --primary: #ffce52;
      --primary-dark: #d89a16;
      --secondary: #7c5cff;
      --secondary-soft: rgba(124,92,255,.16);
      --cyan: #4dd9ff;
      --green: #55e6a5;
      --danger: #ff6b6b;
      --line: rgba(255,255,255,.12);
      --line-strong: rgba(255,255,255,.2);
      --shadow: 0 24px 70px rgba(0,0,0,.34);
      --shadow-soft: 0 16px 42px rgba(0,0,0,.24);
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 30px;
      --max: 1180px;
      --header-h: 76px;
      --ease: cubic-bezier(.2,.8,.2,1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: var(--text);
      line-height: 1.7;
      background:
        radial-gradient(circle at 18% 8%, rgba(124,92,255,.32), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(77,217,255,.22), transparent 25%),
        linear-gradient(180deg, #090b12 0%, #0c101a 44%, #0b0d14 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button, input, textarea, select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    ::selection {
      background: rgba(255,206,82,.35);
      color: #fff;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: var(--header-h);
      backdrop-filter: blur(22px);
      background: rgba(9,11,18,.78);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.02em;
      font-size: 20px;
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, var(--primary), #fff0a1 45%, var(--secondary));
      color: #15110a;
      box-shadow: 0 14px 34px rgba(255,206,82,.22);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 3px solid rgba(9,11,18,.9);
      border-left-color: transparent;
      transform: rotate(-20deg);
    }

    .nav-links {
      flex: 1;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .nav-links a {
      padding: 10px 16px;
      border-radius: 999px;
      color: var(--text-weak);
      font-size: 14px;
      font-weight: 700;
      transition: .25s var(--ease);
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--text);
      background: rgba(255,255,255,.08);
      outline: none;
    }

    .nav-links a.active {
      color: #120f09;
      background: var(--primary);
      box-shadow: 0 12px 28px rgba(255,206,82,.22);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 850;
      font-size: 14px;
      line-height: 1;
      min-height: 44px;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
      border: 1px solid transparent;
      user-select: none;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:focus-visible,
    .form-control:focus {
      outline: 3px solid rgba(255,206,82,.28);
      outline-offset: 2px;
    }

    .btn-primary {
      color: #17110a;
      background: linear-gradient(135deg, var(--primary), #ffe793);
      box-shadow: 0 18px 36px rgba(255,206,82,.24);
    }

    .btn-primary:hover {
      box-shadow: 0 22px 44px rgba(255,206,82,.32);
    }

    .btn-ghost {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(255,255,255,.06);
    }

    .btn-ghost:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.3);
      box-shadow: var(--shadow-soft);
    }

    .btn-dark {
      color: var(--text);
      background: #171b29;
      border-color: rgba(255,255,255,.12);
    }

    .btn-dark:hover {
      background: #20263a;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,.07);
      border: 1px solid var(--line);
      color: var(--text);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .mobile-toggle span {
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: .25s var(--ease);
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section.compact {
      padding: 64px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: var(--primary);
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .02em;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(85,230,165,.12);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-title {
      margin-top: 16px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.13;
      letter-spacing: -.055em;
      font-weight: 950;
    }

    .section-desc {
      max-width: 590px;
      color: var(--text-weak);
      font-size: 16px;
      margin-top: 14px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
      color: #15110a;
      background: var(--primary);
      white-space: nowrap;
    }

    .badge.purple {
      color: #f2efff;
      background: rgba(124,92,255,.28);
      border: 1px solid rgba(124,92,255,.44);
    }

    .badge.cyan {
      color: #dff9ff;
      background: rgba(77,217,255,.18);
      border: 1px solid rgba(77,217,255,.34);
    }

    .badge.green {
      color: #e7fff5;
      background: rgba(85,230,165,.16);
      border: 1px solid rgba(85,230,165,.32);
    }

    .hero {
      min-height: calc(100vh - var(--header-h));
      display: flex;
      align-items: center;
      padding: 72px 0 48px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 36px 0 auto;
      height: 430px;
      background:
        linear-gradient(115deg, rgba(255,206,82,.16), transparent 42%),
        linear-gradient(270deg, rgba(124,92,255,.28), transparent 54%),
        url("data:image/svg+xml,%3Csvg width='1200' height='420' viewBox='0 0 1200 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.28' fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M0 84h1200M0 168h1200M0 252h1200M0 336h1200M120 0v420M240 0v420M360 0v420M480 0v420M600 0v420M720 0v420M840 0v420M960 0v420M1080 0v420'/%3E%3C/g%3E%3C/svg%3E");
      mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
      pointer-events: none;
    }

    .hero-stage {
      position: relative;
      z-index: 1;
      border: 1px solid var(--line);
      border-radius: 36px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
        radial-gradient(circle at 78% 28%, rgba(255,206,82,.2), transparent 26%);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      right: -180px;
      top: -180px;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(77,217,255,.32), transparent 65%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      min-height: 560px;
      align-items: stretch;
    }

    .hero-copy {
      padding: clamp(34px, 5vw, 64px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      margin-top: 22px;
      font-size: clamp(42px, 7vw, 76px);
      line-height: .98;
      letter-spacing: -.075em;
      font-weight: 950;
      max-width: 820px;
    }

    .hero-lead {
      margin-top: 24px;
      color: #d8deec;
      font-size: clamp(16px, 2vw, 19px);
      max-width: 690px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 36px;
      max-width: 720px;
    }

    .proof-item {
      padding: 16px;
      border-radius: 18px;
      background: rgba(8,10,16,.42);
      border: 1px solid var(--line);
    }

    .proof-item strong {
      display: block;
      font-size: 22px;
      letter-spacing: -.04em;
    }

    .proof-item span {
      display: block;
      margin-top: 4px;
      color: var(--text-muted);
      font-size: 13px;
    }

    .apply-panel {
      position: relative;
      z-index: 2;
      padding: clamp(24px, 4vw, 42px);
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        linear-gradient(180deg, rgba(8,10,16,.15), rgba(8,10,16,.55)),
        linear-gradient(90deg, transparent, rgba(255,255,255,.05));
      border-left: 1px solid var(--line);
    }

    .apply-card {
      width: 100%;
      max-width: 440px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(10,13,22,.7);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow-soft);
      padding: 24px;
    }

    .apply-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .apply-top h2 {
      font-size: 24px;
      letter-spacing: -.04em;
      line-height: 1.2;
    }

    .qualification {
      display: grid;
      gap: 10px;
      margin: 20px 0;
    }

    .q-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-weak);
      font-size: 14px;
    }

    .q-item i {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(85,230,165,.14);
      color: var(--green);
      font-style: normal;
      font-weight: 950;
    }

    .mini-form {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .form-control {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      color: var(--text);
      background: rgba(255,255,255,.07);
      padding: 13px 14px;
      transition: .2s var(--ease);
    }

    .form-control::placeholder {
      color: #778197;
    }

    .form-control:focus {
      border-color: rgba(255,206,82,.72);
      background: rgba(255,255,255,.1);
    }

    .form-note {
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 12px;
    }

    .play-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 26px;
      align-items: stretch;
    }

    .intro-card,
    .glass-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .intro-card {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 420px;
    }

    .intro-card h3 {
      font-size: 34px;
      line-height: 1.14;
      letter-spacing: -.055em;
      margin-top: 18px;
    }

    .intro-card p {
      margin-top: 16px;
      color: var(--text-weak);
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255,255,255,.055);
      transition: .25s var(--ease);
    }

    .step:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,.085);
      border-color: rgba(255,206,82,.32);
    }

    .step-num {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #17110a;
      font-weight: 950;
      background: var(--primary);
      box-shadow: 0 14px 28px rgba(255,206,82,.18);
    }

    .step h3 {
      font-size: 20px;
      letter-spacing: -.025em;
      margin-bottom: 6px;
    }

    .step p {
      color: var(--text-weak);
      font-size: 14px;
    }

    .deal-board {
      border: 1px solid var(--line);
      border-radius: 32px;
      background: #111624;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .deal-head {
      display: grid;
      grid-template-columns: 1.1fr .8fr .8fr .7fr;
      gap: 12px;
      padding: 14px 22px;
      color: var(--text-muted);
      font-size: 13px;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,.035);
    }

    .deal-row {
      display: grid;
      grid-template-columns: 1.1fr .8fr .8fr .7fr;
      gap: 12px;
      align-items: center;
      padding: 20px 22px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: .25s var(--ease);
    }

    .deal-row:last-child {
      border-bottom: 0;
    }

    .deal-row:hover {
      background: rgba(255,255,255,.055);
    }

    .deal-title strong {
      display: block;
      font-size: 17px;
      letter-spacing: -.025em;
    }

    .deal-title span,
    .deal-meta {
      color: var(--text-weak);
      font-size: 13px;
    }

    .progress {
      height: 8px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.1);
      margin-top: 7px;
    }

    .progress i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--secondary), var(--primary));
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 28px;
      align-items: start;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255,255,255,.055);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 118px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: .25s var(--ease);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(255,255,255,.055);
    }

    .date-box {
      border-radius: 18px;
      padding: 13px 14px;
      background: rgba(255,255,255,.07);
      border: 1px solid var(--line);
      color: var(--text-muted);
      font-size: 13px;
    }

    .date-box strong {
      display: block;
      color: var(--text);
      font-size: 22px;
      letter-spacing: -.05em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .news-item h3 {
      font-size: 19px;
      line-height: 1.35;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .news-item p {
      color: var(--text-weak);
      font-size: 14px;
    }

    .arrow-link {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #15110a;
      background: var(--primary);
      font-weight: 950;
      transition: .25s var(--ease);
    }

    .news-item:hover .arrow-link {
      transform: translateX(4px);
    }

    .recommend-side {
      position: sticky;
      top: calc(var(--header-h) + 24px);
      border-radius: 30px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 22% 18%, rgba(255,206,82,.22), transparent 34%),
        rgba(255,255,255,.06);
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .recommend-side h3 {
      font-size: 24px;
      letter-spacing: -.04em;
      margin: 16px 0 10px;
    }

    .side-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .side-list a {
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.06);
      border: 1px solid transparent;
      color: var(--text-weak);
      transition: .22s var(--ease);
    }

    .side-list a:hover {
      color: var(--text);
      border-color: rgba(255,206,82,.28);
      transform: translateX(3px);
    }

    .open-section {
      padding-top: 0;
    }

    .open-panel {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 30px;
      align-items: center;
      border-radius: 36px;
      border: 1px solid rgba(255,206,82,.28);
      background:
        linear-gradient(135deg, rgba(255,206,82,.14), rgba(124,92,255,.16)),
        rgba(255,255,255,.055);
      padding: clamp(28px, 5vw, 54px);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .open-panel::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -180px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,206,82,.24), transparent 68%);
      pointer-events: none;
    }

    .open-panel h2 {
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: -.06em;
    }

    .open-panel p {
      margin-top: 16px;
      color: #d9deea;
      max-width: 690px;
    }

    .open-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .open-card {
      position: relative;
      z-index: 1;
      padding: 24px;
      border-radius: 26px;
      background: rgba(8,10,16,.48);
      border: 1px solid var(--line);
    }

    .open-card ul {
      list-style: none;
      display: grid;
      gap: 12px;
      color: var(--text-weak);
      margin-top: 16px;
    }

    .open-card li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .open-card li::before {
      content: "✓";
      color: var(--green);
      font-weight: 950;
    }

    .hot-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      align-items: stretch;
    }

    .poster-card {
      min-height: 430px;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, transparent 10%, rgba(0,0,0,.74) 78%),
        radial-gradient(circle at 70% 20%, rgba(255,206,82,.28), transparent 30%),
        linear-gradient(135deg, #25304d, #111624 54%, #2b1742);
      position: relative;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: var(--shadow);
    }

    .poster-card::before {
      content: "";
      position: absolute;
      inset: 26px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.11);
      pointer-events: none;
    }

    .poster-content {
      position: relative;
      z-index: 1;
      max-width: 620px;
    }

    .poster-card h3 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: -.06em;
      margin: 14px 0 12px;
    }

    .poster-card p {
      color: #d8deec;
      max-width: 560px;
      margin-bottom: 22px;
    }

    .small-hot {
      display: grid;
      gap: 16px;
    }

    .mini-movie {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 16px;
      padding: 16px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.055);
      transition: .25s var(--ease);
    }

    .mini-movie:hover {
      transform: translateY(-4px);
      border-color: rgba(255,206,82,.3);
      background: rgba(255,255,255,.085);
    }

    .thumb {
      height: 118px;
      border-radius: 18px;
      background:
        linear-gradient(160deg, rgba(255,206,82,.28), transparent),
        linear-gradient(135deg, #1a2136, #322046);
      border: 1px solid rgba(255,255,255,.1);
      position: relative;
      overflow: hidden;
    }

    .thumb::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 12px;
      border: 1px dashed rgba(255,255,255,.22);
    }

    .mini-movie h3 {
      font-size: 18px;
      line-height: 1.35;
      letter-spacing: -.025em;
      margin: 8px 0 6px;
    }

    .mini-movie p {
      color: var(--text-weak);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .assurance-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-radius: 30px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.055);
      overflow: hidden;
    }

    .assurance-item {
      padding: 28px;
      border-right: 1px solid rgba(255,255,255,.08);
      transition: .25s var(--ease);
    }

    .assurance-item:last-child {
      border-right: 0;
    }

    .assurance-item:hover {
      background: rgba(255,255,255,.06);
    }

    .icon {
      width: 46px;
      height: 46px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      color: #17110a;
      background: var(--primary);
      font-weight: 950;
      margin-bottom: 16px;
    }

    .assurance-item h3 {
      font-size: 19px;
      letter-spacing: -.025em;
      margin-bottom: 6px;
    }

    .assurance-item p {
      color: var(--text-weak);
      font-size: 14px;
    }

    .related-track {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .related-card {
      padding: 22px;
      min-height: 210px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
      transition: .25s var(--ease);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .related-card:hover {
      transform: translateY(-6px);
      border-color: rgba(124,92,255,.45);
      box-shadow: var(--shadow-soft);
    }

    .related-card h3 {
      font-size: 20px;
      line-height: 1.32;
      letter-spacing: -.03em;
      margin-top: 14px;
    }

    .related-card p {
      color: var(--text-weak);
      font-size: 14px;
      margin-top: 10px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .76fr 1.24fr;
      gap: 28px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255,255,255,.055);
      padding: 22px;
      transition: .25s var(--ease);
    }

    .faq-item:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,206,82,.25);
    }

    .faq-item h3 {
      font-size: 18px;
      letter-spacing: -.025em;
      margin-bottom: 10px;
    }

    .faq-item p {
      color: var(--text-weak);
      font-size: 14px;
    }

    .footer {
      border-top: 1px solid var(--line);
      background: #07090f;
      padding: 54px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 950;
      letter-spacing: -.02em;
      margin-bottom: 14px;
    }

    .footer p {
      color: var(--text-muted);
      max-width: 680px;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      padding: 9px 12px;
      border-radius: 999px;
      color: var(--text-weak);
      background: rgba(255,255,255,.045);
      border: 1px solid transparent;
      font-size: 13px;
      transition: .22s var(--ease);
    }

    .footer-links a:hover {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(255,255,255,.08);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: #68738a;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .play-grid,
      .open-panel,
      .hot-layout,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .apply-panel {
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .news-layout {
        grid-template-columns: 1fr;
      }

      .recommend-side {
        position: relative;
        top: auto;
      }

      .assurance-strip,
      .related-track {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-actions .btn-ghost {
        display: none;
      }
    }

    @media (max-width: 768px) {
      :root {
        --header-h: auto;
      }

      .container {
        width: min(100% - 28px, var(--max));
      }

      .site-header {
        height: auto;
      }

      .nav-wrap {
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .mobile-toggle {
        display: inline-flex;
        order: 3;
      }

      .nav-links {
        order: 5;
        flex: 0 0 100%;
        justify-content: flex-start;
        display: none;
        padding-top: 10px;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-actions {
        margin-left: auto;
      }

      .nav-actions .btn-primary {
        padding: 11px 14px;
      }

      .hero {
        min-height: auto;
        padding: 34px 0;
      }

      .hero-stage {
        border-radius: 26px;
      }

      .hero-copy,
      .apply-panel {
        padding: 26px;
      }

      .hero h1 {
        font-size: clamp(38px, 12vw, 58px);
      }

      .hero-proof {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 66px 0;
      }

      .deal-head {
        display: none;
      }

      .deal-row {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .news-item {
        grid-template-columns: 1fr;
      }

      .arrow-link {
        justify-self: start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .brand {
        font-size: 18px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
      }

      .nav-actions {
        width: 100%;
        order: 4;
      }

      .nav-actions .btn {
        flex: 1;
      }

      .apply-card {
        padding: 18px;
        border-radius: 22px;
      }

      .hero-actions,
      .open-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .assurance-strip,
      .related-track {
        grid-template-columns: 1fr;
      }

      .assurance-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }

      .assurance-item:last-child {
        border-bottom: 0;
      }

      .mini-movie {
        grid-template-columns: 1fr;
      }

      .thumb {
        height: 150px;
      }
    }
