/* roulang page: index */
:root {
      --brand: #2563eb;
      --brand-dark: #1e40af;
      --brand-deep: #172554;
      --accent: #f59e0b;
      --accent-soft: #fff7ed;
      --success: #16a34a;
      --bg: #f6f9ff;
      --surface: #ffffff;
      --surface-soft: #f8fbff;
      --text: #122033;
      --muted: #64748b;
      --weak: #94a3b8;
      --line: #e2e8f0;
      --line-strong: #cbd5e1;
      --shadow-sm: 0 10px 24px rgba(15, 23, 42, .07);
      --shadow-md: 0 18px 48px rgba(37, 99, 235, .14);
      --shadow-lg: 0 28px 80px rgba(15, 23, 42, .16);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1180px;
      --nav-height: 74px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.7;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(37, 99, 235, .12), transparent 30%),
        radial-gradient(circle at 92% 14%, rgba(245, 158, 11, .10), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f6f9ff 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      border-radius: 14px;
      padding: 13px 14px;
      outline: none;
      transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(37, 99, 235, .75);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, .13);
    }

    textarea {
      min-height: 108px;
      resize: vertical;
    }

    ::selection {
      background: rgba(37, 99, 235, .18);
      color: var(--brand-deep);
    }

    .site-container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -80px;
      z-index: 100;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--surface);
      color: var(--brand-dark);
      box-shadow: var(--shadow-sm);
    }

    .skip-link:focus {
      top: 14px;
      outline: 3px solid rgba(245, 158, 11, .45);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: linear-gradient(115deg, #172554 0%, #1d4ed8 48%, #38bdf8 100%);
      color: #fff;
      box-shadow: 0 18px 42px rgba(30, 64, 175, .26);
    }

    .nav-wrap {
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, .16);
      border: 1px solid rgba(255, 255, 255, .24);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 30px rgba(15,23,42,.18);
      flex: 0 0 auto;
    }

    .brand-logo span:last-child {
      font-size: 18px;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 15px;
      border-radius: 999px;
      color: rgba(255,255,255,.9);
      font-weight: 700;
      font-size: 15px;
    }

    .nav-link:hover,
    .nav-link:focus {
      background: rgba(255, 255, 255, .14);
      color: #fff;
      outline: none;
    }

    .nav-link.active {
      background: rgba(255, 255, 255, .20);
      color: #fff;
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: #fbbf24;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 18px;
      border-radius: 999px;
      color: #172554;
      background: #fff;
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
    }

    .nav-cta:hover,
    .nav-cta:focus {
      transform: translateY(-1px);
      background: #fffbeb;
      box-shadow: 0 16px 34px rgba(15, 23, 42, .24);
      outline: none;
    }

    .mobile-menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,.14);
      color: #fff;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-button:focus {
      outline: 3px solid rgba(255,255,255,.35);
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(37, 99, 235, .08);
      color: var(--brand-dark);
      border: 1px solid rgba(37, 99, 235, .13);
      font-size: 13px;
      font-weight: 900;
    }

    .section-title {
      margin: 16px 0 0;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      letter-spacing: -.04em;
      font-weight: 950;
      color: var(--brand-deep);
    }

    .section-desc {
      margin-top: 16px;
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero {
      padding: 46px 0 72px;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(125deg, rgba(23, 37, 84, .96), rgba(29, 78, 216, .92) 50%, rgba(14, 165, 233, .82)),
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.28), transparent 30%);
      color: #fff;
      box-shadow: var(--shadow-lg);
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: -120px auto auto -80px;
      width: 310px;
      height: 310px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      filter: blur(2px);
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -120px;
      width: 360px;
      height: 360px;
      border-radius: 999px;
      background: rgba(251,191,36,.22);
      filter: blur(1px);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: clamp(30px, 6vw, 64px);
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 32px;
      align-items: stretch;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      font-size: 13px;
      font-weight: 800;
      color: rgba(255,255,255,.94);
    }

    .hero h1 {
      max-width: 860px;
      margin: 0;
      font-size: clamp(38px, 6vw, 68px);
      line-height: 1.04;
      letter-spacing: -.055em;
      font-weight: 950;
    }

    .hero-summary {
      margin-top: 20px;
      max-width: 760px;
      color: rgba(255,255,255,.86);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 900;
      line-height: 1;
      transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
      user-select: none;
    }

    .btn-primary {
      color: #172554;
      background: #ffffff;
      box-shadow: 0 16px 34px rgba(15,23,42,.20);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      transform: translateY(-2px);
      background: #fffbeb;
      box-shadow: 0 20px 44px rgba(15,23,42,.28);
      outline: none;
    }

    .btn-secondary {
      color: #fff;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.12);
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      transform: translateY(-2px);
      background: rgba(255,255,255,.18);
      outline: none;
    }

    .btn-blue {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      box-shadow: 0 14px 28px rgba(37,99,235,.22);
    }

    .btn-blue:hover,
    .btn-blue:focus {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(37,99,235,.32);
      outline: none;
    }

    .btn-ghost {
      color: var(--brand-dark);
      background: rgba(37,99,235,.07);
      border: 1px solid rgba(37,99,235,.14);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      background: rgba(37,99,235,.11);
      transform: translateY(-2px);
      outline: none;
    }

    .hero-qualification {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .qualification-card {
      padding: 22px;
      border-radius: 26px;
      background: rgba(255,255,255,.94);
      color: var(--text);
      box-shadow: 0 20px 48px rgba(15,23,42,.18);
    }

    .qualification-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 950;
      color: var(--brand-deep);
      font-size: 18px;
      margin-bottom: 14px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #b45309;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .check-list {
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .check-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      margin-top: 2px;
      border-radius: 999px;
      background: rgba(22,163,74,.12);
      color: var(--success);
      font-size: 12px;
      font-weight: 950;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 22px;
    }

    .metric-pill {
      padding: 15px 14px;
      border-radius: 20px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.17);
      backdrop-filter: blur(10px);
    }

    .metric-pill strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      letter-spacing: -.02em;
    }

    .metric-pill span {
      display: block;
      margin-top: 7px;
      color: rgba(255,255,255,.78);
      font-size: 13px;
    }

    .card {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.92);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(37, 99, 235, .24);
      box-shadow: var(--shadow-md);
    }

    .compare-card {
      overflow: hidden;
      margin-top: 28px;
    }

    .comparison-scroll {
      overflow-x: auto;
      scrollbar-color: rgba(37,99,235,.38) transparent;
    }

    .comparison-table {
      width: 100%;
      min-width: 840px;
      border-collapse: separate;
      border-spacing: 0;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 18px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .comparison-table thead th {
      background: linear-gradient(180deg, #f8fbff, #eef5ff);
      color: var(--brand-deep);
      font-size: 15px;
      font-weight: 950;
    }

    .comparison-table tbody th {
      width: 210px;
      color: var(--text);
      font-weight: 900;
      background: #fff;
    }

    .comparison-table tr:last-child th,
    .comparison-table tr:last-child td {
      border-bottom: 0;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .status.yes {
      color: #166534;
      background: #dcfce7;
    }

    .status.mid {
      color: #92400e;
      background: #fef3c7;
    }

    .status.blue {
      color: var(--brand-dark);
      background: var(--brand-50, #eff6ff);
    }

    .tier-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: .9fr 1.18fr .92fr;
      gap: 18px;
      align-items: stretch;
    }

    .tier-card {
      position: relative;
      padding: 24px;
      overflow: hidden;
    }

    .tier-card.featured {
      border-color: rgba(37,99,235,.30);
      box-shadow: var(--shadow-md);
      background:
        linear-gradient(180deg, rgba(239,246,255,.96), rgba(255,255,255,.96));
    }

    .tier-card.featured::before {
      content: "推荐";
      position: absolute;
      top: 18px;
      right: -34px;
      width: 128px;
      padding: 7px 0;
      text-align: center;
      transform: rotate(36deg);
      background: linear-gradient(135deg, #f59e0b, #fbbf24);
      color: #7c2d12;
      font-size: 12px;
      font-weight: 950;
    }

    .tier-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .tier-name {
      font-size: 20px;
      color: var(--brand-deep);
      font-weight: 950;
      letter-spacing: -.02em;
    }

    .tier-rate {
      font-size: 34px;
      line-height: 1;
      color: var(--brand-dark);
      font-weight: 950;
      letter-spacing: -.04em;
    }

    .tier-rate small {
      font-size: 13px;
      color: var(--muted);
      font-weight: 800;
    }

    .tier-desc {
      color: var(--muted);
      font-size: 15px;
      min-height: 50px;
    }

    .tier-card ul {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }

    .tier-card li {
      display: flex;
      gap: 9px;
      color: #334155;
      font-size: 14px;
    }

    .tier-card li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      border-radius: 999px;
      background: var(--brand);
      flex: 0 0 auto;
    }

    .track-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
      gap: 22px;
      align-items: start;
    }

    .poster-rail {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 190px;
      gap: 14px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scroll-snap-type: x mandatory;
      scrollbar-color: rgba(37,99,235,.35) transparent;
    }

    .poster {
      position: relative;
      min-height: 252px;
      overflow: hidden;
      border-radius: 24px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #fff;
      scroll-snap-align: start;
      box-shadow: 0 16px 34px rgba(15,23,42,.16);
      isolation: isolate;
    }

    .poster::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 32% 20%, rgba(255,255,255,.38), transparent 28%),
        linear-gradient(145deg, #1e3a8a, #2563eb 48%, #0f172a);
      transition: transform .35s ease, filter .35s ease;
    }

    .poster:nth-child(2)::before { background: radial-gradient(circle at 28% 25%, rgba(255,255,255,.34), transparent 30%), linear-gradient(145deg, #0f766e, #2563eb 58%, #172554); }
    .poster:nth-child(3)::before { background: radial-gradient(circle at 70% 15%, rgba(255,255,255,.32), transparent 30%), linear-gradient(145deg, #7c2d12, #ea580c 45%, #1e3a8a); }
    .poster:nth-child(4)::before { background: radial-gradient(circle at 36% 20%, rgba(255,255,255,.30), transparent 28%), linear-gradient(145deg, #312e81, #7c3aed 52%, #0f172a); }
    .poster:nth-child(5)::before { background: radial-gradient(circle at 76% 20%, rgba(255,255,255,.28), transparent 28%), linear-gradient(145deg, #164e63, #0284c7 48%, #172554); }

    .poster::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.72));
    }

    .poster:hover::before {
      transform: scale(1.08);
      filter: saturate(1.12);
    }

    .poster-tag {
      align-self: flex-start;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.18);
      font-size: 12px;
      font-weight: 900;
      backdrop-filter: blur(8px);
    }

    .poster-title {
      font-size: 20px;
      line-height: 1.25;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .poster-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,.92);
      font-weight: 900;
      font-size: 13px;
    }

    .ranking-card {
      padding: 22px;
    }

    .ranking-list {
      margin-top: 16px;
      display: grid;
      gap: 11px;
    }

    .ranking-item {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 16px;
      background: var(--surface-soft);
      border: 1px solid rgba(226,232,240,.82);
      transition: background-color .22s ease, transform .22s ease, border-color .22s ease;
    }

    .ranking-item:hover {
      transform: translateX(3px);
      background: #fff;
      border-color: rgba(37,99,235,.22);
    }

    .rank-num {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #e0edff;
      color: var(--brand-dark);
      font-weight: 950;
    }

    .ranking-title {
      font-weight: 900;
      color: var(--text);
      line-height: 1.3;
    }

    .ranking-meta {
      color: var(--weak);
      font-size: 12px;
      margin-top: 3px;
    }

    .trend {
      font-size: 12px;
      font-weight: 950;
      color: #dc2626;
      background: #fee2e2;
      border-radius: 999px;
      padding: 5px 8px;
      white-space: nowrap;
    }

    .material-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .material-card {
      padding: 24px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
    }

    .icon-box {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #dbeafe, #eff6ff);
      color: var(--brand-dark);
      font-weight: 950;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
    }

    .material-card h3 {
      margin: 0;
      color: var(--brand-deep);
      font-size: 19px;
      font-weight: 950;
    }

    .material-card p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 15px;
    }

    .settlement-strip {
      margin-top: 20px;
      padding: 18px;
      border-radius: 24px;
      background: linear-gradient(135deg, #eff6ff, #fff);
      border: 1px solid rgba(37,99,235,.13);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .settlement-step {
      padding: 16px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--line);
    }

    .settlement-step strong {
      display: block;
      color: var(--brand-dark);
      font-size: 14px;
      margin-bottom: 6px;
    }

    .settlement-step span {
      color: var(--muted);
      font-size: 13px;
    }

    .news-layout {
      margin-top: 30px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 22px;
      align-items: start;
    }

    .news-list {
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 18px;
      padding: 18px;
      border-bottom: 1px solid var(--line);
      transition: background-color .22s ease;
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: #f8fbff;
    }

    .news-date {
      display: grid;
      place-items: center;
      min-height: 78px;
      border-radius: 18px;
      background: linear-gradient(135deg, #eff6ff, #fff7ed);
      color: var(--brand-dark);
      font-weight: 950;
      text-align: center;
      line-height: 1.25;
    }

    .news-date span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      margin-top: 4px;
    }

    .news-title {
      display: inline;
      color: var(--text);
      font-size: 18px;
      line-height: 1.35;
      font-weight: 950;
      background-image: linear-gradient(currentColor, currentColor);
      background-size: 0 2px;
      background-position: 0 100%;
      background-repeat: no-repeat;
    }

    .news-title:hover,
    .news-title:focus {
      color: var(--brand-dark);
      background-size: 100% 2px;
      outline: none;
    }

    .news-summary {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .recommend-box {
      padding: 22px;
      position: sticky;
      top: calc(var(--nav-height) + 18px);
    }

    .recommend-box h3 {
      color: var(--brand-deep);
      font-size: 20px;
      font-weight: 950;
      margin: 0;
    }

    .quick-links {
      margin-top: 16px;
      display: grid;
      gap: 10px;
    }

    .quick-link {
      padding: 13px 14px;
      border-radius: 16px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: #334155;
      background: var(--surface-soft);
      border: 1px solid var(--line);
      font-weight: 800;
      font-size: 14px;
    }

    .quick-link:hover,
    .quick-link:focus {
      color: var(--brand-dark);
      background: #fff;
      border-color: rgba(37,99,235,.24);
      transform: translateX(3px);
      outline: none;
    }

    .apply-panel {
      overflow: hidden;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 0;
      background: #fff;
      border: 1px solid rgba(37,99,235,.15);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
    }

    .apply-info {
      padding: clamp(26px, 4vw, 42px);
      color: #fff;
      background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(145deg, var(--brand-deep), var(--brand-dark));
    }

    .apply-info h2 {
      margin: 14px 0 0;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -.04em;
      font-weight: 950;
    }

    .apply-info p {
      margin-top: 14px;
      color: rgba(255,255,255,.82);
    }

    .timeline {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 82px 1fr;
      gap: 13px;
      align-items: start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.15);
    }

    .timeline-time {
      color: #fde68a;
      font-weight: 950;
      font-size: 13px;
    }

    .timeline-title {
      color: #fff;
      font-weight: 950;
      line-height: 1.3;
    }

    .timeline-note {
      color: rgba(255,255,255,.72);
      font-size: 13px;
      margin-top: 3px;
    }

    .apply-form {
      padding: clamp(24px, 4vw, 38px);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-label {
      display: block;
      margin-bottom: 7px;
      color: #334155;
      font-weight: 900;
      font-size: 14px;
    }

    .form-hint {
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .form-message {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      color: #166534;
      background: #dcfce7;
      border: 1px solid #bbf7d0;
      font-weight: 800;
      font-size: 14px;
    }

    .form-message.show {
      display: block;
    }

    .faq-grid {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--brand-deep);
      font-weight: 950;
      transition: background-color .22s ease;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: var(--brand-dark);
      background: #eff6ff;
      font-weight: 950;
      transition: transform .22s ease, background-color .22s ease;
    }

    .faq-item[open] summary {
      background: #f8fbff;
    }

    .faq-item[open] summary::after {
      content: "−";
      transform: rotate(180deg);
      background: #dbeafe;
    }

    .faq-item p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .site-footer {
      padding: 54px 0 28px;
      color: rgba(255,255,255,.82);
      background:
        radial-gradient(circle at 8% 12%, rgba(59,130,246,.28), transparent 34%),
        linear-gradient(145deg, #0f172a, #172554 62%, #0f172a);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,.13);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 20px;
      font-weight: 950;
    }

    .footer-brand .brand-mark {
      width: 38px;
      height: 38px;
    }

    .footer-desc {
      margin-top: 14px;
      max-width: 540px;
      color: rgba(255,255,255,.70);
      font-size: 14px;
    }

    .footer-title {
      color: #fff;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,.70);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: #fff;
      transform: translateX(3px);
      outline: none;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255,255,255,.58);
      font-size: 13px;
    }

    .float-cta {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 40;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      box-shadow: 0 16px 34px rgba(37,99,235,.32);
      font-weight: 950;
      font-size: 14px;
    }

    .float-cta:hover,
    .float-cta:focus {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(37,99,235,.38);
      outline: none;
    }

    @media (max-width: 1024px) {
      :root {
        --nav-height: 68px;
      }

      .hero-inner,
      .apply-panel,
      .track-layout,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .hero-qualification {
        grid-template-columns: 1fr 1fr;
      }

      .tier-grid {
        grid-template-columns: 1fr;
      }

      .settlement-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .recommend-box {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 24px, var(--container));
      }

      .mobile-menu-button {
        display: inline-flex;
      }

      .main-nav {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(var(--nav-height) + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 22px;
        background: rgba(23,37,84,.96);
        border: 1px solid rgba(255,255,255,.14);
        box-shadow: var(--shadow-lg);
      }

      .main-nav.open {
        display: flex;
      }

      .nav-link,
      .nav-cta {
        justify-content: center;
        width: 100%;
      }

      .hero {
        padding-top: 26px;
      }

      .hero-inner {
        padding: 28px;
      }

      .hero-qualification {
        grid-template-columns: 1fr;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 62px 0;
      }

      .material-grid,
      .faq-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .news-item {
        grid-template-columns: 1fr;
      }

      .news-date {
        min-height: auto;
        justify-content: start;
        place-items: start;
        padding: 14px;
        text-align: left;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .float-cta {
        left: 14px;
        right: 14px;
        justify-content: center;
      }
    }

    @media (max-width: 520px) {
      .brand-logo span:last-child {
        font-size: 16px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .hero-panel,
      .apply-panel {
        border-radius: 26px;
      }

      .hero h1 {
        font-size: 36px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .section-title {
        font-size: 30px;
      }

      .poster-rail {
        grid-auto-columns: 78%;
      }

      .settlement-strip {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .copyright {
        padding-bottom: 56px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
      }
    }
