/* roulang page: index */
:root {
      --bg: #f7f3ea;
      --bg-soft: #fffaf0;
      --bg-deep: #101828;
      --card: rgba(255, 255, 255, 0.88);
      --card-solid: #ffffff;
      --text: #1c2430;
      --muted: #667085;
      --weak: #8a93a3;
      --line: rgba(28, 36, 48, 0.12);
      --primary: #e65f2b;
      --primary-dark: #b83f18;
      --primary-soft: #fff0e8;
      --accent: #15a087;
      --accent-soft: #e7fbf6;
      --gold: #f2b544;
      --gold-soft: #fff6d8;
      --danger: #d93b45;
      --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.08);
      --shadow: 0 18px 54px rgba(16, 24, 40, 0.13);
      --shadow-lg: 0 30px 90px rgba(16, 24, 40, 0.18);
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 30px;
      --container: 1180px;
      --nav-h: 112px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 0%, rgba(230, 95, 43, 0.14), transparent 34%),
        radial-gradient(circle at 92% 8%, rgba(21, 160, 135, 0.15), transparent 32%),
        linear-gradient(180deg, #fffaf0 0%, var(--bg) 48%, #ffffff 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--text);
      padding: 13px 14px;
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
      outline: 3px solid rgba(230, 95, 43, 0.24);
      outline-offset: 3px;
      border-color: rgba(230, 95, 43, 0.62);
      box-shadow: 0 0 0 4px rgba(230, 95, 43, 0.10);
    }

    textarea {
      min-height: 112px;
      resize: vertical;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      transition: transform var(--ease), background var(--ease), box-shadow var(--ease), border-color var(--ease);
      border-bottom: 1px solid rgba(255, 255, 255, 0.48);
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 250, 240, 0.82);
      backdrop-filter: blur(18px);
      z-index: -1;
      transition: background var(--ease);
    }

    .site-header.is-compact {
      box-shadow: 0 16px 44px rgba(16, 24, 40, 0.10);
      border-color: rgba(16, 24, 40, 0.08);
    }

    .brand-row {
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      transition: height var(--ease), opacity var(--ease);
    }

    .site-header.is-compact .brand-row {
      height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: 20px;
      color: var(--text);
      white-space: nowrap;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background:
        linear-gradient(135deg, rgba(255,255,255,.18), transparent 42%),
        linear-gradient(135deg, var(--primary), var(--gold));
      box-shadow: 0 12px 30px rgba(230, 95, 43, 0.26);
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mini-search {
      position: relative;
      width: 290px;
    }

    .mini-search input {
      padding-left: 42px;
      height: 42px;
      border-radius: 999px;
      background: rgba(255,255,255,.68);
    }

    .mini-search .search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--weak);
      font-size: 15px;
    }

    .channel-row {
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: height var(--ease);
    }

    .site-header.is-compact .channel-row {
      height: 58px;
    }

    .compact-brand {
      display: none;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .site-header.is-compact .compact-brand {
      display: inline-flex;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 7px 15px;
      border-radius: 999px;
      color: #495466;
      font-weight: 700;
      font-size: 14px;
    }

    .nav-link:hover {
      color: var(--primary-dark);
      background: rgba(230, 95, 43, 0.08);
    }

    .nav-link.active {
      color: #fff;
      background: var(--bg-deep);
      box-shadow: 0 10px 24px rgba(16, 24, 40, 0.16);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 9px 15px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(230, 95, 43, 0.22);
    }

    .nav-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(230, 95, 43, 0.28);
    }

    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--text);
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
    }

    .mobile-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      position: relative;
    }

    .mobile-toggle span::before,
    .mobile-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform var(--ease), top var(--ease);
    }

    .mobile-toggle span::before { top: -6px; }
    .mobile-toggle span::after { top: 6px; }

    .mobile-toggle.is-open span { background: transparent; }
    .mobile-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
    .mobile-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

    main {
      padding-top: var(--nav-h);
    }

    .section {
      padding: 76px 0;
      position: relative;
    }

    .section-tight {
      padding: 56px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.18;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .section-desc {
      color: var(--muted);
      max-width: 690px;
      font-size: 16px;
      margin-top: 12px;
    }

    .hero {
      padding: 46px 0 82px;
      min-height: 690px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 102px auto auto 50%;
      width: min(820px, 72vw);
      height: min(820px, 72vw);
      transform: translateX(-50%);
      background:
        radial-gradient(circle, rgba(242,181,68,.22) 0%, transparent 58%),
        radial-gradient(circle at 68% 28%, rgba(230,95,43,.18), transparent 42%),
        radial-gradient(circle at 28% 72%, rgba(21,160,135,.16), transparent 42%);
      filter: blur(8px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
      gap: 30px;
      align-items: center;
    }

    .hero-copy {
      background: rgba(255, 250, 240, 0.72);
      border: 1px solid rgba(255,255,255,.78);
      border-radius: var(--radius-lg);
      padding: clamp(24px, 4vw, 42px);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .trend-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: #111827;
      color: #fff;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 16px;
      box-shadow: 0 10px 25px rgba(16, 24, 40, .18);
    }

    .trend-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(242,181,68,.20);
    }

    h1 {
      font-size: clamp(38px, 5.4vw, 68px);
      line-height: 1.05;
      letter-spacing: -0.065em;
      margin-bottom: 18px;
    }

    .hero-intro {
      font-size: 18px;
      color: #4b5565;
      max-width: 720px;
      margin-bottom: 22px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0;
    }

    .point-pill, .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(28,36,48,.10);
      color: #344054;
      font-weight: 760;
      font-size: 14px;
    }

    .point-pill strong {
      color: var(--primary-dark);
    }

    .hero-actions, .button-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 850;
      border: 1px solid transparent;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #f07f38);
      box-shadow: 0 18px 36px rgba(230, 95, 43, 0.26);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      box-shadow: 0 22px 44px rgba(230, 95, 43, 0.32);
    }

    .btn-dark {
      color: #fff;
      background: var(--bg-deep);
      box-shadow: 0 16px 34px rgba(16, 24, 40, 0.20);
    }

    .btn-dark:hover {
      transform: translateY(-2px);
      background: #263140;
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255,255,255,.78);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      background: #fff;
      border-color: rgba(230,95,43,.30);
      box-shadow: var(--shadow-sm);
    }

    .compare-stage {
      position: relative;
      display: grid;
      grid-template-columns: .86fr 1.12fr .86fr;
      align-items: stretch;
      gap: 14px;
      min-width: 0;
    }

    .plan-card {
      position: relative;
      border-radius: 26px;
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(255,255,255,.78);
      box-shadow: var(--shadow-sm);
      padding: 22px;
      min-height: 388px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .plan-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(230,95,43,.22);
    }

    .plan-card.recommend {
      transform: translateY(-16px);
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,246,216,.88)),
        radial-gradient(circle at 50% 0%, rgba(230,95,43,.20), transparent 38%);
      border: 2px solid rgba(230,95,43,.38);
      box-shadow: var(--shadow-lg);
      z-index: 2;
    }

    .plan-card.recommend:hover {
      transform: translateY(-20px);
    }

    .corner-ribbon {
      position: absolute;
      right: -42px;
      top: 18px;
      width: 150px;
      text-align: center;
      transform: rotate(35deg);
      background: var(--primary);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      padding: 6px 0;
      box-shadow: 0 10px 24px rgba(230,95,43,.24);
    }

    .plan-name {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .plan-note {
      color: var(--muted);
      font-size: 14px;
      min-height: 46px;
    }

    .plan-price {
      margin: 18px 0 16px;
      display: flex;
      align-items: flex-end;
      gap: 6px;
    }

    .plan-price strong {
      font-size: 42px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .plan-price span {
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .plan-list {
      list-style: none;
      display: grid;
      gap: 11px;
      margin: 6px 0 20px;
      color: #3f4857;
      flex: 1;
    }

    .plan-list li {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      font-size: 14px;
    }

    .check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      flex: 0 0 20px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      margin-top: 1px;
    }

    .card-action {
      margin-top: auto;
      width: 100%;
      min-height: 44px;
      border-radius: 14px;
      color: #fff;
      background: var(--bg-deep);
      font-weight: 850;
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }

    .recommend .card-action {
      background: var(--primary);
      box-shadow: 0 12px 28px rgba(230,95,43,.24);
    }

    .card-action:hover {
      transform: translateY(-1px);
      background: var(--primary-dark);
    }

    .benefit-band {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .benefit-panel {
      border-radius: var(--radius-lg);
      background: var(--bg-deep);
      color: #fff;
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .benefit-panel::after {
      content: "";
      position: absolute;
      right: -110px;
      top: -120px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242,181,68,.42), transparent 66%);
    }

    .benefit-panel h2, .benefit-panel .section-title {
      color: #fff;
    }

    .benefit-panel p {
      color: rgba(255,255,255,.72);
    }

    .benefit-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }

    .benefit-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
    }

    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(242,181,68,.18);
      color: var(--gold);
      font-weight: 900;
      font-size: 18px;
    }

    .benefit-item strong {
      display: block;
      margin-bottom: 3px;
      font-size: 16px;
    }

    .benefit-item span {
      color: rgba(255,255,255,.68);
      font-size: 14px;
    }

    .ladder {
      display: grid;
      gap: 14px;
    }

    .ladder-card {
      padding: 20px;
      border-radius: 22px;
      background: var(--card-solid);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .ladder-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 12px;
    }

    .ladder-top strong {
      font-size: 18px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 850;
      color: var(--primary-dark);
      background: var(--primary-soft);
      white-space: nowrap;
    }

    .tag.green {
      color: #087562;
      background: var(--accent-soft);
    }

    .tag.gold {
      color: #8a5b00;
      background: var(--gold-soft);
    }

    .progress {
      width: 100%;
      height: 10px;
      border-radius: 999px;
      background: #eceff3;
      overflow: hidden;
      margin: 12px 0 8px;
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
    }

    .qualification-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 22px;
      align-items: start;
    }

    .notice-card {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #fff, #fff7e6);
      border: 1px solid rgba(242,181,68,.30);
      box-shadow: var(--shadow-sm);
      padding: 28px;
      position: sticky;
      top: 92px;
    }

    .notice-card .big-number {
      font-size: 72px;
      line-height: 1;
      letter-spacing: -0.08em;
      font-weight: 950;
      color: var(--primary);
      margin: 14px 0 8px;
    }

    .rule-grid {
      display: grid;
      gap: 14px;
    }

    .rule-card {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(16,24,40,.05);
    }

    .rule-index {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--bg-deep);
      font-weight: 900;
    }

    .rule-card h3 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .rule-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.36fr) minmax(300px, .64fr);
      gap: 24px;
      align-items: start;
    }

    .news-list {
      border-radius: var(--radius-lg);
      background: var(--card-solid);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 112px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid var(--line);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-date {
      display: grid;
      gap: 2px;
      color: var(--weak);
      font-weight: 800;
      font-size: 13px;
    }

    .news-date strong {
      color: var(--text);
      font-size: 24px;
      line-height: 1;
    }

    .news-title {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .news-title:hover {
      color: var(--primary-dark);
    }

    .news-summary {
      color: var(--muted);
      font-size: 14px;
    }

    .arrow-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
    }

    .news-item:hover .arrow-link {
      background: var(--primary);
      color: #fff;
      transform: translateX(3px);
    }

    .recommend-box {
      border-radius: var(--radius-lg);
      background: var(--bg-deep);
      color: #fff;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .recommend-box::before {
      content: "";
      position: absolute;
      inset: auto -70px -90px auto;
      width: 230px;
      height: 230px;
      border-radius: 50%;
      background: rgba(230,95,43,.34);
      filter: blur(5px);
    }

    .recommend-box h3 {
      font-size: 24px;
      margin-bottom: 10px;
      position: relative;
    }

    .recommend-box p {
      color: rgba(255,255,255,.70);
      margin-bottom: 18px;
      position: relative;
    }

    .hot-list {
      list-style: none;
      display: grid;
      gap: 10px;
      position: relative;
    }

    .hot-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.88);
      font-weight: 760;
    }

    .hot-list a:hover {
      color: var(--gold);
    }

    .form-section {
      padding: 70px 0;
    }

    .form-shell {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 28px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(16,24,40,.96), rgba(39,48,64,.96)),
        radial-gradient(circle at 10% 20%, rgba(230,95,43,.26), transparent 38%);
      color: #fff;
      padding: clamp(24px, 4vw, 44px);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
    }

    .form-shell::after {
      content: "";
      position: absolute;
      right: -160px;
      top: -160px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242,181,68,.34), transparent 60%);
      pointer-events: none;
    }

    .form-copy {
      position: relative;
      z-index: 1;
    }

    .form-copy h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .form-copy p {
      color: rgba(255,255,255,.72);
      max-width: 520px;
    }

    .mini-steps {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .mini-steps li {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
    }

    .mini-steps span {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--bg-deep);
      background: var(--gold);
      font-weight: 900;
      flex: 0 0 30px;
    }

    .apply-form {
      position: relative;
      z-index: 1;
      border-radius: 26px;
      background: rgba(255,255,255,.96);
      color: var(--text);
      padding: 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,.18);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      font-size: 13px;
      font-weight: 850;
      color: #344054;
    }

    .form-hint {
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .security-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .shield-card {
      border-radius: var(--radius-lg);
      padding: 30px;
      background: linear-gradient(135deg, #e7fbf6, #ffffff);
      border: 1px solid rgba(21,160,135,.18);
      box-shadow: var(--shadow-sm);
      min-height: 100%;
    }

    .shield {
      width: 86px;
      height: 98px;
      border-radius: 28px 28px 36px 36px;
      background: linear-gradient(180deg, var(--accent), #0f7f6c);
      margin-bottom: 18px;
      position: relative;
      box-shadow: 0 18px 34px rgba(21,160,135,.24);
    }

    .shield::after {
      content: "✓";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 40px;
      font-weight: 900;
    }

    .security-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .security-item {
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(16,24,40,.05);
    }

    .security-item .icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .security-item h3 {
      font-size: 17px;
      margin-bottom: 5px;
    }

    .security-item p {
      color: var(--muted);
      font-size: 14px;
    }

    .timeline {
      border-radius: var(--radius-lg);
      background: var(--card-solid);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      padding: 26px;
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 46px;
      top: 50px;
      bottom: 50px;
      width: 2px;
      background: linear-gradient(var(--primary), var(--gold), var(--accent));
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      gap: 18px;
      padding: 18px 0;
      position: relative;
      align-items: center;
    }

    .timeline-time {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: var(--primary);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(230,95,43,.22);
      margin-left: 0;
      z-index: 1;
    }

    .timeline-content h3 {
      font-size: 18px;
      margin-bottom: 3px;
    }

    .timeline-content p {
      color: var(--muted);
      font-size: 14px;
    }

    .people-strip {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scroll-snap-type: x mandatory;
    }

    .people-strip::-webkit-scrollbar {
      height: 8px;
    }

    .people-strip::-webkit-scrollbar-thumb {
      background: rgba(230,95,43,.28);
      border-radius: 999px;
    }

    .person-card {
      flex: 0 0 270px;
      scroll-snap-align: start;
      border-radius: 24px;
      background: var(--card-solid);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      padding: 20px;
      transition: transform var(--ease), box-shadow var(--ease);
    }

    .person-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .avatar {
      width: 64px;
      height: 64px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--gold));
      margin-bottom: 14px;
    }

    .person-card h3 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .person-card p {
      color: var(--muted);
      font-size: 14px;
      min-height: 68px;
    }

    .person-card a {
      display: inline-flex;
      margin-top: 14px;
      font-weight: 850;
      color: var(--primary-dark);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .metric-board {
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      padding: 26px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .metric {
      padding: 18px;
      border-radius: 22px;
      background: #fff8ec;
      border: 1px solid rgba(242,181,68,.24);
    }

    .metric strong {
      display: block;
      font-size: 34px;
      line-height: 1;
      color: var(--primary);
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .metric span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 760;
    }

    .quote-wall {
      display: grid;
      gap: 14px;
    }

    .quote {
      padding: 20px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(16,24,40,.05);
    }

    .stars {
      color: var(--gold);
      letter-spacing: 2px;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .quote p {
      color: #465063;
      margin-bottom: 12px;
    }

    .quote small {
      color: var(--weak);
      font-weight: 800;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 26px;
      align-items: start;
    }

    .faq-aside {
      border-radius: var(--radius-lg);
      padding: 26px;
      background: var(--primary-soft);
      border: 1px solid rgba(230,95,43,.16);
      position: sticky;
      top: 92px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 20px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(16,24,40,.05);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      color: var(--text);
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-weight: 900;
      text-align: left;
    }

    .faq-question:hover {
      color: var(--primary-dark);
      background: rgba(230,95,43,.04);
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      flex: 0 0 28px;
      transition: transform var(--ease);
    }

    .faq-item.is-open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.is-open .faq-answer {
      display: block;
    }

    .site-footer {
      background: #0f1724;
      color: rgba(255,255,255,.78);
      padding: 54px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: start;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-brand .logo-mark {
      width: 40px;
      height: 40px;
    }

    .footer-desc {
      max-width: 660px;
      color: rgba(255,255,255,.64);
    }

    .footer-links {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-links a {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.76);
    }

    .footer-links a:hover {
      background: rgba(230,95,43,.24);
      color: #fff;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      color: rgba(255,255,255,.52);
      font-size: 14px;
    }

    .fixed-bar {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 999;
      width: min(720px, calc(100% - 28px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 12px 10px 18px;
      border-radius: 999px;
      background: rgba(16,24,40,.92);
      backdrop-filter: blur(16px);
      color: #fff;
      box-shadow: 0 20px 50px rgba(16,24,40,.22);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--ease), transform var(--ease);
    }

    .fixed-bar.is-show {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .fixed-bar span {
      color: rgba(255,255,255,.76);
      font-size: 14px;
      font-weight: 760;
    }

    .fixed-bar .btn {
      min-height: 40px;
      padding: 9px 15px;
    }

    @media (max-width: 1024px) {
      :root {
        --nav-h: 78px;
      }

      .brand-row {
        display: none;
      }

      .channel-row,
      .site-header.is-compact .channel-row {
        height: 78px;
      }

      .compact-brand {
        display: inline-flex;
      }

      .hero {
        min-height: auto;
        padding-top: 34px;
      }

      .hero-grid,
      .benefit-band,
      .qualification-wrap,
      .news-layout,
      .form-shell,
      .security-grid,
      .proof-grid,
      .faq-layout {
        grid-template-columns: 1fr;
      }

      .compare-stage {
        grid-template-columns: 1fr;
      }

      .plan-card,
      .plan-card.recommend,
      .plan-card.recommend:hover {
        min-height: auto;
        transform: none;
      }

      .notice-card,
      .faq-aside {
        position: relative;
        top: auto;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .nav-wrap {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255,255,255,.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
      }

      .nav-wrap.is-open {
        display: flex;
      }

      .main-nav {
        flex-direction: column;
        align-items: stretch;
      }

      .nav-link,
      .nav-cta {
        justify-content: center;
        width: 100%;
      }

      h1 {
        font-size: clamp(34px, 10vw, 52px);
      }

      .hero-copy {
        padding: 22px;
      }

      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 44px 0;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .arrow-link {
        display: none;
      }

      .form-grid,
      .security-list,
      .metric-board {
        grid-template-columns: 1fr;
      }

      .timeline::before {
        left: 21px;
      }

      .timeline-item {
        grid-template-columns: 44px 1fr;
      }

      .timeline-item .btn {
        grid-column: 2;
        justify-self: start;
      }

      .timeline-time {
        width: 42px;
        height: 42px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }

      .fixed-bar {
        border-radius: 24px;
        align-items: stretch;
        flex-direction: column;
      }

      .fixed-bar .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .logo,
      .compact-brand {
        font-size: 16px;
      }

      .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 13px;
      }

      .hero-actions,
      .button-row {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .point-pill {
        width: 100%;
        justify-content: center;
      }

      .benefit-panel,
      .notice-card,
      .apply-form,
      .shield-card,
      .timeline {
        padding: 20px;
      }

      .form-shell {
        border-radius: 26px;
      }
    }
