    :root {
      --gold: #C9A84C;
      --gold-glow: rgba(201,168,76,0.18);
    }
 
    *, *::before, *::after { box-sizing: border-box; }
 
    html { scroll-behavior: smooth; }
 
    body {
      background-color: #080C14;
      color: #D8E4F0;
      font-family: 'Outfit', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
 
    /* ── Grid background ── */
    .grid-bg {
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
 
    /* ── Noise grain overlay ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }
 
    /* ── Gold accent line ── */
    .gold-line {
      display: inline-block;
      width: 40px;
      height: 2px;
      background: var(--gold);
      vertical-align: middle;
      margin-right: 12px;
    }
 
    /* ── Glow effects ── */
    .gold-glow {
      box-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(201,168,76,0.08);
    }
    .gold-text-glow { text-shadow: 0 0 30px rgba(201,168,76,0.4); }
 
    /* ── Reveal animation ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
 
    /* ── Nav ── */
    nav a {
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }
    nav a:hover::after { width: 100%; }
 
    /* ── Card hover ── */
    .plan-card {
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px var(--gold-glow);
      border-color: var(--gold) !important;
    }
 
    /* ── Portfolio card ── */
    .portfolio-card {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .portfolio-card:hover {
      transform: scale(1.03);
      box-shadow: 0 0 40px var(--gold-glow);
    }
    .portfolio-overlay {
      background: linear-gradient(to top, rgba(8,12,20,0.95) 0%, rgba(8,12,20,0.3) 60%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .portfolio-card:hover .portfolio-overlay { opacity: 1; }
 
    /* ── Gold button ── */
    .btn-gold {
      background: linear-gradient(135deg, #C9A84C 0%, #E2C77A 50%, #C9A84C 100%);
      background-size: 200% 200%;
      color: #080C14;
      font-weight: 600;
      transition: background-position 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
    }
    .btn-gold:hover {
      background-position: right center;
      box-shadow: 0 0 28px rgba(201,168,76,0.45);
      transform: translateY(-2px);
    }
 
    .btn-outline {
      border: 1px solid rgba(201,168,76,0.5);
      color: var(--gold);
      transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.2s;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
      transform: translateY(-2px);
    }
 
    /* ── Animated counter ── */
    .counter { font-variant-numeric: tabular-nums; }
 
    /* ── Scrolling marquee ── */
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-track { animation: marquee 20s linear infinite; }
 
    /* ── Cursor dot ── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      mix-blend-mode: screen;
    }
    #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: left 0.12s ease, top 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
    }
 
    /* ── Ticker line ── */
    .ticker-item {
      white-space: nowrap;
      padding: 0 48px;
      color: var(--gold);
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .ticker-sep {
      color: rgba(201,168,76,0.3);
    }
 
    /* ── Feature icon ring ── */
    .icon-ring {
      width: 56px; height: 56px;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
      transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
    }
    .feature-card:hover .icon-ring {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
      box-shadow: 0 0 20px var(--gold-glow);
    }
 
    /* ── Modal ── */
    #formModal {
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    #formContent {
      background: #0E1420;
      border: 1px solid rgba(201,168,76,0.2);
    }
    #formContent input, #formContent select {
      background: #121926;
      border: 1px solid #1E2A3A;
      color: #D8E4F0;
      border-radius: 8px;
      padding: 10px 14px;
      width: 100%;
      outline: none;
      transition: border-color 0.3s;
    }
    #formContent input:focus, #formContent select:focus {
      border-color: var(--gold);
    }
    #formContent select option { background: #0E1420; }
    #formContent label { color: #6B7E99; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; display: block; }
 
    /* Hero canvas */
    #hero-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.35;
    }
