/* roulang page: index */
:root {
      --bg: #080d1b;
      --bg-soft: #0e172c;
      --bg-card: rgba(17, 25, 46, .76);
      --bg-card-strong: rgba(23, 35, 64, .92);
      --primary: #8b5cf6;
      --primary-2: #22d3ee;
      --accent: #f59e0b;
      --text: #eef4ff;
      --muted: #aab7d4;
      --soft: #dbe7ff;
      --border: rgba(177, 198, 255, .16);
      --border-strong: rgba(139, 92, 246, .42);
      --shadow: 0 24px 80px rgba(0, 0, 0, .38);
      --shadow-soft: 0 16px 46px rgba(10, 18, 40, .28);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(139, 92, 246, .30), transparent 34%),
        radial-gradient(circle at 86% 14%, rgba(34, 211, 238, .22), transparent 32%),
        linear-gradient(180deg, #080d1b 0%, #0b1020 48%, #090d18 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, textarea, select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    ::selection {
      background: rgba(139, 92, 246, .55);
      color: #fff;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin-inline: auto;
    }

    .glass {
      background: var(--bg-card);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(8, 13, 27, .84);
      border-bottom: 1px solid rgba(177, 198, 255, .12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0 10px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: #fff;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(34, 211, 238, .92));
      box-shadow: 0 12px 34px rgba(139, 92, 246, .34);
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      width: 16px;
      height: 16px;
      border-radius: 999px;
      border: 3px solid rgba(255,255,255,.92);
      box-shadow: 12px 0 0 -4px rgba(255,255,255,.72);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.12;
      min-width: 0;
    }

    .brand-name {
      font-size: 18px;
      white-space: nowrap;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
      margin-top: 3px;
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .search-box {
      width: 285px;
      max-width: 32vw;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(177, 198, 255, .16);
      color: var(--muted);
    }

    .search-box input {
      width: 100%;
      background: transparent;
      border: 0;
      outline: none;
      color: var(--text);
      font-size: 14px;
    }

    .search-box input::placeholder {
      color: rgba(170,183,212,.76);
    }

    .chip-nav-wrap {
      padding: 0 0 13px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .chip-nav-wrap::-webkit-scrollbar {
      display: none;
    }

    .chip-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
    }

    .nav-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(177, 198, 255, .14);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-chip:hover {
      color: #fff;
      border-color: rgba(34,211,238,.42);
      background: rgba(34,211,238,.10);
      transform: translateY(-1px);
    }

    .nav-chip.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(139,92,246,.92), rgba(34,211,238,.72));
      border-color: rgba(255,255,255,.20);
      box-shadow: 0 12px 30px rgba(34,211,238,.16);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 18px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #8b5cf6, #22d3ee);
      box-shadow: 0 16px 36px rgba(139, 92, 246, .28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(34, 211, 238, .24);
    }

    .btn-secondary {
      color: var(--soft);
      background: rgba(255,255,255,.07);
      border-color: rgba(177, 198, 255, .16);
    }

    .btn-secondary:hover {
      color: #fff;
      background: rgba(255,255,255,.11);
      border-color: rgba(177, 198, 255, .28);
      transform: translateY(-2px);
    }

    .btn-ghost {
      color: var(--soft);
      background: rgba(139, 92, 246, .12);
      border-color: rgba(139, 92, 246, .28);
    }

    .btn-ghost:hover {
      color: #fff;
      background: rgba(139, 92, 246, .20);
      transform: translateY(-2px);
    }

    .btn:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(34, 211, 238, .54);
      outline-offset: 3px;
    }

    .hero-section {
      padding: 58px 0 38px;
    }

    .hero-banner {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      padding: clamp(28px, 5vw, 58px);
      min-height: 520px;
      background:
        linear-gradient(90deg, rgba(8,13,27,.78), rgba(8,13,27,.50) 46%, rgba(8,13,27,.84)),
        radial-gradient(circle at 78% 20%, rgba(245,158,11,.22), transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(34,211,238,.24), transparent 35%),
        linear-gradient(135deg, #111a31 0%, #10172b 44%, #15102b 100%);
      border: 1px solid rgba(177, 198, 255, .18);
      box-shadow: var(--shadow);
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,.65), transparent 80%);
      pointer-events: none;
    }

    .hero-banner::after {
      content: "";
      position: absolute;
      right: -8%;
      bottom: -16%;
      width: 620px;
      height: 320px;
      background:
        radial-gradient(circle at center, rgba(139,92,246,.36), transparent 68%);
      transform: rotate(-12deg);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
      gap: 36px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      color: #c9f8ff;
      background: rgba(34, 211, 238, .10);
      border: 1px solid rgba(34, 211, 238, .30);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22d3ee;
      box-shadow: 0 0 0 6px rgba(34, 211, 238, .13);
    }

    .hero-title {
      margin: 22px 0 18px;
      font-size: clamp(34px, 5.5vw, 66px);
      line-height: 1.08;
      letter-spacing: -.055em;
      font-weight: 950;
      color: #fff;
      max-width: 910px;
    }

    .hero-desc {
      max-width: 790px;
      color: var(--soft);
      font-size: clamp(16px, 1.4vw, 19px);
      line-height: 1.9;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .data-pill {
      min-width: 150px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(177, 198, 255, .14);
    }

    .data-pill strong {
      display: block;
      color: #fff;
      font-size: 22px;
      line-height: 1.1;
      letter-spacing: -.02em;
    }

    .data-pill span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 5px;
    }

    .progress-panel {
      position: relative;
      padding: 22px;
      border-radius: 28px;
      background: rgba(9, 15, 31, .76);
      border: 1px solid rgba(177, 198, 255, .18);
      box-shadow: 0 24px 64px rgba(0,0,0,.28);
    }

    .progress-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .progress-ring {
      --p: 72;
      width: 138px;
      height: 138px;
      border-radius: 999px;
      background:
        conic-gradient(from -90deg, #22d3ee calc(var(--p) * 1%), rgba(255,255,255,.10) 0);
      display: grid;
      place-items: center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 18px 42px rgba(34,211,238,.14);
      flex: 0 0 auto;
    }

    .progress-ring-inner {
      width: 104px;
      height: 104px;
      border-radius: 999px;
      background: #0c1326;
      display: grid;
      place-items: center;
      text-align: center;
      border: 1px solid rgba(255,255,255,.10);
    }

    .progress-ring-inner strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      color: #fff;
      font-weight: 950;
    }

    .progress-ring-inner span {
      display: block;
      margin-top: 6px;
      font-size: 12px;
      color: var(--muted);
    }

    .progress-copy h2 {
      margin: 0;
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .progress-copy p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .tier-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .tier-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(177, 198, 255, .13);
    }

    .tier-item:hover {
      background: rgba(255,255,255,.085);
      border-color: rgba(34,211,238,.26);
    }

    .tier-name {
      color: #fff;
      font-weight: 850;
    }

    .tier-desc {
      color: var(--muted);
      font-size: 13px;
      margin-top: 3px;
    }

    .tier-badge {
      border-radius: 999px;
      padding: 7px 10px;
      color: #fff7df;
      background: rgba(245,158,11,.16);
      border: 1px solid rgba(245,158,11,.32);
      font-size: 12px;
      font-weight: 850;
      white-space: nowrap;
    }

    .section {
      padding: 56px 0;
    }

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(260px, .28fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 26px;
    }

    .section-kicker {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      color: #c9f8ff;
      background: rgba(34,211,238,.09);
      border: 1px solid rgba(34,211,238,.22);
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .section-title {
      margin: 0;
      color: #fff;
      font-size: clamp(26px, 3vw, 42px);
      line-height: 1.18;
      letter-spacing: -.035em;
      font-weight: 950;
    }

    .section-desc {
      margin: 0;
      color: var(--muted);
      line-height: 1.9;
      font-size: 16px;
    }

    .benefit-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
    }

    .spotlight-card {
      border-radius: var(--radius-xl);
      padding: 28px;
      min-height: 380px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(139,92,246,.22), rgba(34,211,238,.10)),
        rgba(17,25,46,.78);
      border: 1px solid rgba(177,198,255,.17);
    }

    .spotlight-card::after {
      content: "";
      position: absolute;
      right: -70px;
      bottom: -70px;
      width: 230px;
      height: 230px;
      border-radius: 999px;
      background: rgba(34,211,238,.18);
      filter: blur(2px);
    }

    .spotlight-card h2,
    .content-card h3,
    .matrix-card h3,
    .compare-card h3,
    .faq-item h3 {
      margin: 0;
      color: #fff;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .spotlight-card h2 {
      font-size: 30px;
      line-height: 1.18;
      max-width: 420px;
    }

    .spotlight-card p {
      color: var(--soft);
      margin: 18px 0 0;
      max-width: 450px;
    }

    .mini-poster-wall {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 34px;
      transform: rotate(-1deg);
    }

    .mini-poster {
      aspect-ratio: 4 / 5;
      border-radius: 16px;
      background:
        linear-gradient(150deg, rgba(255,255,255,.18), rgba(255,255,255,.035)),
        linear-gradient(135deg, rgba(139,92,246,.8), rgba(34,211,238,.45));
      border: 1px solid rgba(255,255,255,.13);
      box-shadow: 0 12px 30px rgba(0,0,0,.24);
      display: flex;
      align-items: end;
      padding: 10px;
      color: rgba(255,255,255,.90);
      font-size: 12px;
      font-weight: 850;
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .content-card {
      padding: 22px;
      border-radius: var(--radius-lg);
      background: var(--bg-card);
      border: 1px solid var(--border);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .content-card:hover {
      transform: translateY(-4px);
      border-color: rgba(34,211,238,.28);
      background: rgba(22, 33, 61, .82);
      box-shadow: 0 18px 46px rgba(0,0,0,.22);
    }

    .card-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      background: rgba(139,92,246,.18);
      border: 1px solid rgba(139,92,246,.28);
      margin-bottom: 16px;
    }

    .content-card h3 {
      font-size: 19px;
      margin-bottom: 9px;
    }

    .content-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .rule-panel {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 22px;
      align-items: stretch;
    }

    .rule-list {
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.055);
      border: 1px solid var(--border);
    }

    .rule-item {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 13px;
      padding: 15px 0;
      border-bottom: 1px solid rgba(177,198,255,.10);
    }

    .rule-item:last-child {
      border-bottom: 0;
    }

    .rule-num {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(34,211,238,.12);
      color: #bff7ff;
      font-weight: 900;
      border: 1px solid rgba(34,211,238,.22);
      line-height: 1;
    }

    .rule-item strong {
      display: block;
      color: #fff;
      font-size: 16px;
    }

    .rule-item span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      margin-top: 4px;
      line-height: 1.7;
    }

    .metric-board {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .metric-card {
      padding: 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
      border: 1px solid rgba(177,198,255,.14);
    }

    .metric-card strong {
      display: block;
      color: #fff;
      font-size: 34px;
      line-height: 1.05;
      letter-spacing: -.04em;
      font-weight: 950;
    }

    .metric-card span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      margin-top: 8px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, .68fr) minmax(300px, .32fr);
      gap: 22px;
    }

    .news-list {
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: rgba(255,255,255,.052);
      border: 1px solid var(--border);
    }

    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 15px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(177,198,255,.10);
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: rgba(34,211,238,.075);
    }

    .news-date {
      color: #c9f8ff;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.22);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 850;
      white-space: nowrap;
    }

    .news-title {
      color: #fff;
      font-weight: 850;
      line-height: 1.55;
    }

    .news-desc {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 3px;
      font-weight: 500;
    }

    .arrow {
      color: rgba(255,255,255,.55);
      font-size: 20px;
      transition: transform .2s ease, color .2s ease;
    }

    .news-link:hover .arrow {
      color: #22d3ee;
      transform: translateX(3px);
    }

    .recommend-box {
      border-radius: var(--radius-xl);
      padding: 22px;
      background:
        linear-gradient(155deg, rgba(245,158,11,.13), rgba(139,92,246,.12)),
        rgba(255,255,255,.055);
      border: 1px solid rgba(245,158,11,.20);
    }

    .recommend-box h3 {
      color: #fff;
      margin: 0 0 12px;
      font-size: 20px;
      font-weight: 900;
    }

    .recommend-box p {
      margin: 0 0 18px;
      color: var(--soft);
      font-size: 14px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .tag {
      display: inline-flex;
      border-radius: 999px;
      padding: 7px 10px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(177,198,255,.14);
      color: var(--soft);
      font-size: 13px;
      font-weight: 750;
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .matrix-card {
      padding: 20px;
      border-radius: 22px;
      min-height: 185px;
      background: rgba(255,255,255,.055);
      border: 1px solid var(--border);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .matrix-card:hover {
      transform: translateY(-4px);
      border-color: rgba(139,92,246,.35);
      background: rgba(139,92,246,.105);
    }

    .matrix-card h3 {
      font-size: 18px;
      margin: 15px 0 8px;
    }

    .matrix-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .compare-card {
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.052);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .compare-card.featured {
      border-color: rgba(34,211,238,.34);
      background:
        linear-gradient(180deg, rgba(34,211,238,.12), rgba(139,92,246,.08)),
        rgba(255,255,255,.06);
      box-shadow: 0 18px 56px rgba(34,211,238,.10);
    }

    .compare-card h3 {
      font-size: 21px;
      margin-bottom: 12px;
    }

    .price {
      color: #fff;
      font-size: 34px;
      font-weight: 950;
      letter-spacing: -.04em;
      margin: 8px 0;
    }

    .price small {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 10px;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 9px;
      color: var(--soft);
      font-size: 14px;
      line-height: 1.65;
    }

    .check-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(34,211,238,.12);
      color: #aaf7ff;
      font-size: 12px;
      font-weight: 950;
      margin-top: 2px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .36fr .64fr;
      gap: 22px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 118px;
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(139,92,246,.11);
      border: 1px solid rgba(139,92,246,.24);
    }

    .faq-aside h2 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 24px;
      font-weight: 950;
      letter-spacing: -.03em;
    }

    .faq-aside p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .faq-list {
      display: grid;
      gap: 13px;
    }

    .faq-item {
      padding: 20px;
      border-radius: 20px;
      background: rgba(255,255,255,.052);
      border: 1px solid var(--border);
    }

    .faq-item h3 {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.85;
    }

    .apply-wrap {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 22px;
      align-items: stretch;
    }

    .apply-copy {
      padding: 30px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 20% 12%, rgba(34,211,238,.18), transparent 34%),
        rgba(255,255,255,.055);
      border: 1px solid var(--border);
    }

    .apply-copy h2 {
      margin: 0;
      color: #fff;
      font-size: 34px;
      line-height: 1.2;
      font-weight: 950;
      letter-spacing: -.04em;
    }

    .apply-copy p {
      margin: 16px 0 0;
      color: var(--soft);
    }

    .apply-note {
      margin-top: 22px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(245,158,11,.11);
      border: 1px solid rgba(245,158,11,.26);
      color: #ffe6ad;
      font-size: 14px;
    }

    .form-card {
      padding: 24px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(177,198,255,.16);
      box-shadow: var(--shadow-soft);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      color: #fff;
      font-size: 14px;
      font-weight: 850;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      color: #fff;
      background: rgba(8,13,27,.62);
      border: 1px solid rgba(177,198,255,.16);
      border-radius: 15px;
      padding: 12px 13px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(170,183,212,.72);
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: rgba(34,211,238,.55);
      box-shadow: 0 0 0 4px rgba(34,211,238,.12);
      background: rgba(8,13,27,.82);
    }

    .form-help {
      color: var(--muted);
      font-size: 13px;
      margin: 12px 0 0;
    }

    .submit-message {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 15px;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.24);
      color: #c9f8ff;
      font-size: 14px;
    }

    .submit-message.show {
      display: block;
    }

    .site-footer {
      margin-top: 30px;
      padding: 44px 0 30px;
      background: rgba(5, 8, 18, .76);
      border-top: 1px solid rgba(177,198,255,.12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, .55fr) minmax(260px, .45fr);
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 950;
      font-size: 18px;
    }

    .footer-desc {
      max-width: 620px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.9;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a {
      border-radius: 999px;
      padding: 8px 12px;
      color: var(--muted);
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(177,198,255,.12);
      font-size: 13px;
      font-weight: 750;
    }

    .footer-links a:hover {
      color: #fff;
      border-color: rgba(34,211,238,.28);
      background: rgba(34,211,238,.08);
    }

    .copyright {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(177,198,255,.10);
      color: rgba(170,183,212,.78);
      font-size: 13px;
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 45;
      display: none;
      width: min(560px, calc(100% - 28px));
      padding: 10px;
      border-radius: 999px;
      background: rgba(8,13,27,.82);
      border: 1px solid rgba(177,198,255,.18);
      box-shadow: 0 18px 55px rgba(0,0,0,.38);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .floating-cta span {
      color: var(--soft);
      font-size: 13px;
      padding-left: 10px;
      font-weight: 750;
    }

    @media (max-width: 1024px) {
      .hero-content,
      .benefit-layout,
      .rule-panel,
      .news-layout,
      .apply-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .matrix-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .faq-aside {
        position: static;
      }

      .progress-panel {
        max-width: 640px;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .brand-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .top-actions {
        width: 100%;
      }

      .search-box {
        width: 100%;
        max-width: none;
      }

      .top-actions > .btn {
        display: none;
      }

      .hero-section {
        padding-top: 32px;
      }

      .hero-banner {
        min-height: auto;
        border-radius: 26px;
        padding: 24px;
      }

      .progress-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .data-pill {
        min-width: 0;
      }

      .content-grid,
      .compare-grid,
      .metric-board {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 42px 0;
      }

      .news-link {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
        width: fit-content;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .floating-cta {
        display: flex;
      }

      body {
        padding-bottom: 76px;
      }
    }

    @media (max-width: 520px) {
      .brand-name {
        font-size: 16px;
      }

      .brand-sub {
        display: none;
      }

      .hero-title {
        font-size: 32px;
        letter-spacing: -.04em;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn,
      .progress-panel .btn,
      .form-card .btn {
        width: 100%;
      }

      .hero-points,
      .matrix-grid,
      .mini-poster-wall {
        grid-template-columns: 1fr;
      }

      .tier-item {
        grid-template-columns: 1fr;
      }

      .progress-ring {
        width: 124px;
        height: 124px;
      }

      .progress-ring-inner {
        width: 94px;
        height: 94px;
      }

      .apply-copy h2 {
        font-size: 28px;
      }

      .floating-cta span {
        display: none;
      }

      .floating-cta .btn {
        width: 100%;
      }
    }
