
    /* ===== TOKENS ===== */
    :root {
      --navy: #0C1F36;
      --navy-dark: #060F1C;
      --gold: #C9971A;
      --gold-light: #DDB84A;
      --white: #FFFFFF;
      --snow: #F5F6F8;
      --ink: #1A1D22;
      --stone: #5F6670;
      --primary: var(--navy);
      --accent: var(--gold);
      --accent-light: var(--gold-light);
      --bg: var(--white);
      --bg-light: var(--snow);
      --text: var(--ink);
      --text-secondary: var(--stone);
      --max-width: 1200px;
    }

    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      font-size: 16px;
      -webkit-font-smoothing: antialiased
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
      color: var(--text);
      background: var(--navy);
      line-height: 1.6
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none
    }

    /* ===== HERO ===== */
    .hero {
      min-height: auto;
      display: flex;
      align-items: center;
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 80px 0 70px
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(201, 151, 26, 0.06) 0%, transparent 65%), radial-gradient(ellipse 50% 60% at 80% 15%, rgba(255, 255, 255, 0.03) 0%, transparent 65%)
    }

    .hero-wrap {
      position: relative;
      z-index: 1;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 80px;
      align-items: center
    }

    .hero-content {
      max-width: 620px
    }

    .hero-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      border: 1px solid rgba(201, 151, 26, 0.25);
      padding: 5px 14px;
      border-radius: 3px;
      margin-bottom: 28px
    }

    .hero-content h1 {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 28px
    }

    .hero-content h1 em {
      font-style: normal;
      color: var(--accent)
    }

    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 40px
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-bottom: 56px
    }

    .hero-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 52px;
      padding: 0 28px;
      background: var(--accent);
      color: var(--primary);
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 700;
      transition: all 0.2s ease;
      text-decoration: none
    }

    .hero-btn-primary:hover {
      background: var(--accent-light);
      transform: translateY(-1px)
    }

    .hero-btn-ghost {
      display: inline-flex;
      align-items: center;
      height: 52px;
      padding: 0 28px;
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255, 255, 255, 0.18);
      border-radius: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.2s ease;
      text-decoration: none
    }

    .hero-btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.03)
    }

    .hero-foot {
      display: flex;
      gap: 36px
    }

    .hero-foot-item {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .hero-foot-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0
    }

    .hero-foot-item span {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 500
    }

    .hero-panel {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 40px 36px;
      backdrop-filter: blur(10px)
    }

    .hero-panel-row {
      display: flex;
      justify-content: space-between;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06)
    }

    .hero-panel-row:last-child {
      border-bottom: none
    }

    .hero-panel-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      font-family: 'Georgia', serif;
      line-height: 1
    }

    .hero-panel-num small {
      font-size: 1.1rem
    }

    .hero-panel-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.35);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 4px
    }

    @media(max-width:1200px) {
      .hero-wrap {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .hero-panel {
        display: none
      }
    }

    @media(max-width:768px) {
      .hero {
        padding: 60px 0 50px;
        min-height: auto
      }

      .hero-content h1 {
        font-size: 2rem
      }

      .hero-desc {
        font-size: 0.95rem
      }

      .hero-foot {
        flex-direction: column;
        gap: 16px
      }

      .hero-actions {
        flex-direction: column
      }
    }

    @media(max-width:480px) {
      .hero-content h1 {
        font-size: 1.7rem
      }

      .hero-btn-primary,
      .hero-btn-ghost {
        width: 100%;
        justify-content: center
      }
    }
  