
    :root {
      --bg: #0a0a0a;
      --bg-elevated: #111111;
      --fg: #fafafa;
      --muted: #8a8a8a;
      --accent: #c9a962;
      --accent-light: #e8d5a3;
      --accent-dark: #9a7b3c;
      --card: #161616;
      --border: #2a2a2a;
      --silver: #b8b8b8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--fg);
      overflow-x: hidden;
      line-height: 1.6;
    }

    .font-display {
      font-family: 'Cormorant Garamond', serif;
    }

    /* Luxury gold gradient text */
    .text-gold-gradient {
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Ambient background */
    .ambient-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .ambient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.15;
      animation: float 20s ease-in-out infinite;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: var(--accent);
      top: -200px;
      right: -200px;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 400px;
      height: 400px;
      background: var(--accent-dark);
      bottom: 20%;
      left: -150px;
      animation-delay: -7s;
    }

    .orb-3 {
      width: 300px;
      height: 300px;
      background: var(--accent-light);
      top: 50%;
      right: 10%;
      animation-delay: -14s;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(30px, -30px) scale(1.05); }
      50% { transform: translate(-20px, 20px) scale(0.95); }
      75% { transform: translate(20px, 30px) scale(1.02); }
    }

    /* Grain overlay */
    .grain-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1000;
      opacity: 0.03;
      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)'/%3E%3C/svg%3E");
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Hero specific */
    .hero-content {
      opacity: 0;
      animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

    @keyframes heroReveal {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Elegant line animation */
    .elegant-line {
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      animation: lineExpand 1.5s ease-out 0.8s forwards;
    }

    @keyframes lineExpand {
      to { width: 120px; }
    }

    /* Button styles */
    .btn-primary {
      position: relative;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: var(--bg);
      padding: 16px 40px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.75rem;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(201, 169, 98, 0.2);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary span {
      position: relative;
      z-index: 1;
    }

    .btn-secondary {
      position: relative;
      border: 1px solid var(--border);
      color: var(--fg);
      padding: 16px 40px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.75rem;
      background: transparent;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-secondary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: -1;
    }

    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--bg);
    }

    .btn-secondary:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* Service cards */
    .service-card {
      position: relative;
      background: linear-gradient(180deg, var(--card) 0%, rgba(22, 22, 22, 0.5) 100%);
      border: 1px solid var(--border);
      padding: 48px 36px;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(201, 169, 98, 0.3);
    }

    .service-card:hover::before,
    .service-card:hover::after {
      opacity: 1;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      stroke: var(--accent);
      stroke-width: 1;
      fill: none;
      margin-bottom: 24px;
      transition: all 0.5s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.1);
      filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.4));
    }

    /* Markets section */
    .market-card {
      position: relative;
      padding: 32px;
      text-align: center;
      border: 1px solid transparent;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .market-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid var(--border);
      transition: border-color 0.5s ease;
    }

    .market-card:hover::before {
      border-color: var(--accent);
    }

    .market-card:hover {
      background: rgba(201, 169, 98, 0.03);
    }

    /* Process steps */
    .process-step {
      position: relative;
      padding: 40px;
      background: var(--card);
      border: 1px solid var(--border);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .process-step::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .process-step:hover::before {
      opacity: 1;
    }

    .process-step:hover {
      background: rgba(201, 169, 98, 0.03);
      border-color: rgba(201, 169, 98, 0.2);
    }

    .step-number {
      font-size: 4rem;
      font-weight: 200;
      color: var(--border);
      line-height: 1;
      transition: color 0.5s ease;
    }

    .process-step:hover .step-number {
      color: var(--accent);
    }

    /* Navigation */
    .nav-link {
      position: relative;
      color: var(--muted);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 8px 0;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: var(--fg);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Scroll indicator */
    .scroll-indicator {
      animation: scrollBounce 2s ease-in-out infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(10px); opacity: 0.5; }
    }

    /* Why Ventioria cards */
    .why-card {
      position: relative;
      padding: 48px;
      background: var(--card);
      border: 1px solid var(--border);
      text-align: center;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .why-card:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 169, 98, 0.3);
    }

    /* Contact form inputs */
    .form-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      color: var(--fg);
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      transition: border-color 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--accent);
    }

    .form-input::placeholder {
      color: var(--muted);
    }

    /* Section divider */
    .section-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    /* Parallax effect for hero image */
    .parallax-bg {
      transform: translateY(0);
      will-change: transform;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      
      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 100;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    .mobile-menu.active {
      opacity: 1;
      pointer-events: all;
    }

    /* Logo shimmer effect */
    .logo-shimmer {
      position: relative;
      overflow: hidden;
    }

    .logo-shimmer::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      50%, 100% { left: 100%; }
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent);
    }
  