@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

  :root {
    --black: #000000;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-bright: #ffd66b;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --gold-soft: rgba(201, 168, 76, 0.08);
    --gray: #888888;
    --gray-light: #aaaaaa;
    --glass: rgba(255,255,255,0.04);
    --glass-strong: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.08);
    --shadow-gold: 0 0 30px rgba(201,168,76,0.18), 0 0 80px rgba(201,168,76,0.1);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background:
      radial-gradient(circle at 20% 20%, rgba(201,168,76,0.08), transparent 25%),
      radial-gradient(circle at 80% 10%, rgba(255,214,107,0.06), transparent 30%),
      radial-gradient(circle at 50% 80%, rgba(201,168,76,0.04), transparent 30%),
      #000000;
    color: #ffffff;
    overflow-x: hidden;
    cursor: none;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.32;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
      radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.45) 100%);
  }

  nav, section, footer {
    position: relative;
    z-index: 5;
  }

  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 9997;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), #fff0b3);
    box-shadow: 0 0 20px rgba(201,168,76,0.6), 0 0 40px rgba(201,168,76,0.25);
  }

  .bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 85%);
    animation: gridShift 18s linear infinite;
    opacity: 0.35;
  }

  @keyframes gridShift {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
  }

  .bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 0;
    opacity: 0.22;
    will-change: transform;
  }

  .orb-1 {
    width: 320px;
    height: 320px;
    top: 10%;
    left: -80px;
    background: radial-gradient(circle, rgba(255,214,107,0.8) 0%, rgba(201,168,76,0.2) 40%, transparent 70%);
    animation: drift1 14s ease-in-out infinite;
  }

  .orb-2 {
    width: 460px;
    height: 460px;
    top: 45%;
    right: -120px;
    background: radial-gradient(circle, rgba(201,168,76,0.55) 0%, rgba(201,168,76,0.18) 40%, transparent 70%);
    animation: drift2 18s ease-in-out infinite;
  }

  .orb-3 {
    width: 260px;
    height: 260px;
    bottom: -40px;
    left: 40%;
    background: radial-gradient(circle, rgba(255,230,160,0.5) 0%, rgba(201,168,76,0.12) 45%, transparent 70%);
    animation: drift3 16s ease-in-out infinite;
  }

  @keyframes drift1 {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(80px,30px,0) scale(1.15); }
  }

  @keyframes drift2 {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(-80px,-40px,0) scale(1.1); }
  }

  @keyframes drift3 {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(50px,-50px,0) scale(1.2); }
  }

  .bg-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      linear-gradient(to bottom, rgba(255,255,255,0.02), transparent 15%, transparent 85%, rgba(255,255,255,0.02)),
      linear-gradient(to right, rgba(255,255,255,0.02), transparent 15%, transparent 85%, rgba(255,255,255,0.02));
  }

  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, opacity 0.2s ease;
    box-shadow: 0 0 16px rgba(201,168,76,0.8), 0 0 40px rgba(201,168,76,0.45);
  }

  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    box-shadow: inset 0 0 16px rgba(201,168,76,0.08), 0 0 30px rgba(201,168,76,0.08);
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.82), rgba(0,0,0,0.5));
    backdrop-filter: blur(22px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 50px rgba(0,0,0,0.35);
  }

  .nav-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo::before {
    content: '👑';
    font-size: 14px;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
  }

  .nav-logo span {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(201,168,76,0.35);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.7px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
  }

  .nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: #000 !important;
    padding: 10px 22px !important;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(201,168,76,0.25);
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, #ffe392 100%) !important;
    color: #000 !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 40px rgba(201,168,76,0.3);
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 180px;
    isolation: isolate;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1200px, 90vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.55), transparent);
    box-shadow: 0 0 24px rgba(201,168,76,0.2);
    opacity: 0.8;
  }

  .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 840px;
    height: 840px;
    background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.07) 30%, transparent 68%);
    pointer-events: none;
    animation: pulseGlow 5s ease-in-out infinite;
    filter: blur(8px);
  }

  .hero-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(201,168,76,0.07) 30deg, transparent 70deg, rgba(255,255,255,0.03) 95deg, transparent 145deg, rgba(201,168,76,0.06) 190deg, transparent 240deg, rgba(201,168,76,0.04) 300deg, transparent 360deg);
    mask-image: radial-gradient(circle at center, black 12%, transparent 65%);
    opacity: 0.9;
    animation: spinSlow 18s linear infinite;
  }

  .hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.14);
    pointer-events: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -56%);
  }

  .orbit-1 {
    width: 560px;
    height: 560px;
    box-shadow: inset 0 0 40px rgba(201,168,76,0.03), 0 0 60px rgba(201,168,76,0.04);
    animation: spinSlowReverse 22s linear infinite;
  }

  .orbit-2 {
    width: 720px;
    height: 720px;
    border-style: dashed;
    border-color: rgba(255,255,255,0.06);
    animation: spinSlow 30s linear infinite;
  }

  .orbit-1::before,
  .orbit-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 16px rgba(255,214,107,0.75), 0 0 30px rgba(201,168,76,0.45);
  }

  .orbit-2::before {
    left: auto;
    right: 16%;
    top: 10%;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.85);
  }

  @keyframes spinSlow {
    from { transform: translate(-50%, -56%) rotate(0deg); }
    to { transform: translate(-50%, -56%) rotate(360deg); }
  }

  @keyframes spinSlowReverse {
    from { transform: translate(-50%, -56%) rotate(360deg); }
    to { transform: translate(-50%, -56%) rotate(0deg); }
  }

  @keyframes pulseGlow {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -60%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -60%) scale(1.08); }
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
    animation: gridFloat 10s ease-in-out infinite;
  }

  @keyframes gridFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.7; }
    50% { transform: scale(1.03) translateY(-10px); opacity: 1; }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(255,255,255,0.04));
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 auto 40px auto;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
    box-shadow: 0 10px 30px rgba(201,168,76,0.08), inset 0 0 30px rgba(255,255,255,0.02);
    backdrop-filter: blur(14px);
  }

  .badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: blink 1.8s ease infinite;
    box-shadow: 0 0 14px rgba(255,214,107,0.75);
  }

  @keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
  }

  .hero-title {
    font-size: clamp(50px, 9vw, 140px);
    font-weight: 900;
    letter-spacing: -4.6px;
    line-height: 1.05;
    text-align: center;
    margin: 0 auto 36px auto;
    padding: 0 24px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.4s forwards;
    text-wrap: balance;
    max-width: 1000px;
  }

  .hero-title .line1 {
    display: block;
    color: #ffffff;
    text-shadow: 0 6px 30px rgba(255,255,255,0.08);
  }

  .hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, #fff4ca 0%, var(--gold-bright) 20%, var(--gold) 50%, var(--gold-light) 75%, #fff1b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 240% 240%;
    animation: shimmer 3.5s ease infinite, fadeUp 0.9s ease 0.4s forwards;
    filter: drop-shadow(0 0 24px rgba(201,168,76,0.2));
  }

  @keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.68);
    font-weight: 300;
    max-width: 600px;
    text-align: center;
    line-height: 1.8;
    margin: 0 auto 52px auto;
    padding: 0 24px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.6s forwards;
    text-shadow: 0 0 14px rgba(255,255,255,0.02);
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
  }

  .btn-primary,
  .btn-ghost,
  .btn-king {
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px) saturate(140%);
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: #000;
    border: none;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: none;
    box-shadow: 0 16px 40px rgba(201,168,76,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  }

  .btn-primary::before,
  .btn-ghost::before,
  .btn-king::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-18deg);
    transition: left 0.6s ease;
  }

  .btn-primary:hover::before,
  .btn-ghost:hover::before,
  .btn-king:hover::before {
    left: 140%;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, #ffe7a0 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 24px 70px rgba(201,168,76,0.34), 0 0 30px rgba(201,168,76,0.2);
  }

  .btn-ghost {
    background: rgba(255,255,255,0.03);
    color: var(--gray-light);
    border: 1px solid rgba(255,255,255,0.12);
    font-weight: 500;
    cursor: none;
  }

  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,255,255,0.04);
  }

  .btn-king {
    background: rgba(255,215,0,0.04);
    color: #FFD700;
    border: 1px solid rgba(255,215,0,0.55);
    font-weight: 800;
    cursor: none;
    box-shadow: inset 0 0 18px rgba(255,215,0,0.04), 0 10px 34px rgba(255,215,0,0.08);
  }

  .btn-king:hover {
    background: linear-gradient(135deg, #FFD700 0%, #ffed8a 100%);
    color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255,215,0,0.24), 0 0 30px rgba(255,215,0,0.16);
  }

  .hero-royal-panel {
    margin-top: 42px;
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.9s ease 1s forwards;
  }

  .royal-item {
    position: relative;
    padding: 22px 22px 20px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
      rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px) saturate(140%);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
  }

  .royal-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(201,168,76,0.2), transparent 45%);
    pointer-events: none;
  }

  .royal-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.22);
    margin-bottom: 14px;
    font-size: 18px;
    box-shadow: inset 0 0 12px rgba(201,168,76,0.08), 0 0 18px rgba(201,168,76,0.08);
  }

  .royal-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
    color: #fff;
  }

  .royal-item small {
    display: block;
    color: rgba(255,255,255,0.56);
    line-height: 1.5;
    font-size: 13px;
    font-weight: 400;
  }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
  }

  .scroll-hint span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.85), transparent);
    animation: scrollPulse 2s ease infinite;
    box-shadow: 0 0 14px rgba(201,168,76,0.28);
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.12); }
  }

  .stats {
    padding: 100px 60px 70px;
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
  }

  .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1200px, calc(100% - 120px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  }

  .stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(1200px, calc(100% - 120px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  }

  .stat-item {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 34px 30px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
      rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
  }

  .stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(201,168,76,0.18), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
  }

  .stat-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #fff0b7 35%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(201,168,76,0.18);
  }

  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .features {
    padding: 120px 60px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    text-shadow: 0 0 18px rgba(201,168,76,0.2);
  }

  .section-label.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .section-title {
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
    letter-spacing: -2.4px;
    line-height: 1.02;
    margin-bottom: 80px;
    max-width: 640px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.1s;
    text-shadow: 0 6px 30px rgba(255,255,255,0.04);
  }

  .section-title.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .feature-card {
    --mx: 50%;
    --my: 50%;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
      rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: none;
    border-radius: 28px;
    transform-style: preserve-3d;
    box-shadow: 0 24px 70px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(14px) saturate(130%);
  }

  .feature-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.1), transparent 25%),
      radial-gradient(circle at top left, rgba(201,168,76,0.14), transparent 38%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .feature-card:hover {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
      rgba(201,168,76,0.04);
    border-color: rgba(201,168,76,0.22);
    box-shadow: 0 30px 90px rgba(0,0,0,0.3), 0 0 40px rgba(201,168,76,0.08);
  }

  .feature-card:hover::before,
  .feature-card:hover::after {
    opacity: 1;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, rgba(201,168,76,0.18), rgba(201,168,76,0.09));
    border: 1px solid rgba(201,168,76,0.24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 22px;
    box-shadow: inset 0 0 14px rgba(201,168,76,0.08), 0 10px 30px rgba(201,168,76,0.08);
    transform: translateZ(32px);
  }

  .feature-title {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    color: #fff;
    transform: translateZ(24px);
  }

  .feature-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.56);
    line-height: 1.75;
    font-weight: 300;
    transform: translateZ(16px);
  }

  .cta-section {
    padding: 160px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto;
  }

  .cta-shell {
    position: relative;
    padding: 80px 32px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
      rgba(255,255,255,0.02);
    box-shadow: 0 30px 100px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(16px) saturate(140%);
  }

  .cta-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(201,168,76,0.13) 0%, transparent 55%),
      linear-gradient(120deg, transparent 15%, rgba(255,255,255,0.06) 50%, transparent 85%);
    pointer-events: none;
  }

  .cta-shell::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transform: skewX(-18deg);
    animation: ctaSweep 6s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes ctaSweep {
    0% { left: -35%; opacity: 0; }
    10% { opacity: 1; }
    40% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
  }

  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(12px);
  }

  .cta-title {
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.98;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
    z-index: 2;
  }

  .cta-title.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.62);
    font-weight: 300;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.1s;
    position: relative;
    z-index: 2;
  }

  .cta-sub.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-btn-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
    position: relative;
    z-index: 2;
  }

  .cta-btn-wrap.visible {
    opacity: 1;
    transform: translateY(0);
  }

  footer {
    padding: 36px 60px 44px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(255,255,255,0.015), transparent);
    backdrop-filter: blur(8px);
  }

  .footer-logo {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
  }

  .footer-logo span {
    color: var(--gold);
    text-shadow: 0 0 14px rgba(201,168,76,0.24);
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.5px;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.34);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
  }

  .footer-links a:hover {
    color: var(--gold);
    transform: translateY(-1px);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: float linear infinite;
    box-shadow: 0 0 14px rgba(201,168,76,0.45);
    z-index: 3;
  }

  @keyframes float {
    0% { transform: translateY(100vh) translateX(0) scale(0.8); opacity: 0; }
    8% { opacity: 0.8; }
    50% { opacity: 0.45; }
    100% { transform: translateY(-120px) translateX(100px) scale(1.2); opacity: 0; }
  }

  @media (max-width: 1100px) {
    .hero-royal-panel {
      grid-template-columns: 1fr;
      max-width: 640px;
    }
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .stats {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 80px 24px 60px;
    }
    .features, .cta-section { padding: 80px 24px; }
    footer {
      flex-direction: column;
      gap: 18px;
      text-align: center;
      padding: 28px 24px 34px;
    }
    .hero-actions {
      flex-direction: column;
      width: 100%;
      max-width: 420px;
    }
    .btn-primary, .btn-ghost, .btn-king {
      width: 100%;
      text-align: center;
      justify-content: center;
      display: flex;
    }
    .orbit-2 { width: 540px; height: 540px; }
    .orbit-1 { width: 420px; height: 420px; }
    .hero-glow { width: 620px; height: 620px; }
    .cta-shell { padding: 64px 24px; }
  }

  @media (hover: none), (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    .btn-primary, .btn-ghost, .btn-king, .feature-card, .nav-links a { cursor: pointer; }
    .feature-card:hover { transform: none; }
  }