 /* ===== CSS VARIABLES ===== */
    :root {
      --black:   #050508;
      --deep:    #0a0a12;
      --navy:    #0d0d1a;
      --card:    #111120;
      --border:  rgba(180,150,80,0.18);
      --gold:    #c8a84b;
      --gold2:   #e6c96e;
      --gold3:   #f5dfa0;
      --white:   #f0ece0;
      --muted:   #8a8a9a;
      --accent:  #6a4fc8;
      --teal:    #1ecbc8;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Outfit', sans-serif;
      --font-mono:    'Space Mono', monospace;
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::selection { background: var(--gold); color: var(--black); }

    /* ===== CUSTOM CURSOR ===== */
    #cursor-dot {
      position: fixed; top: 0; left: 0; z-index: 99999;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold);
      pointer-events: none;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, opacity 0.3s;
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 99998;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid rgba(200,168,75,0.55);
      pointer-events: none;
      transform: translate(-50%,-50%);
      transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
    }
    body:hover #cursor-dot { opacity: 1; }
    .hoverable:hover ~ #cursor-ring,
    a:hover ~ #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

    /* ===========================
       LAUNCH / PASSWORD PAGE
    =========================== */
    #launch-page {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--black);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      overflow: hidden;
    }
    #launch-page.hidden { display: none; }

    /* Animated grid background */
    .lp-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,168,75,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,168,75,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 20s linear infinite;
    }
    @keyframes gridMove {
      0%   { background-position: 0 0; }
      100% { background-position: 60px 60px; }
    }

    /* Glow orbs */
    .lp-orb {
      position: absolute; border-radius: 50%;
      filter: blur(100px); opacity: 0.25;
      animation: orbFloat 8s ease-in-out infinite alternate;
    }
    .lp-orb-1 { width: 500px; height: 500px; background: #6a4fc8; top: -10%; left: -10%; }
    .lp-orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: -10%; right: -10%; animation-delay: -4s; }
    .lp-orb-3 { width: 300px; height: 300px; background: #1ecbc8; top: 40%; left: 50%; animation-delay: -2s; }
    @keyframes orbFloat {
      0%   { transform: translate(0, 0) scale(1); }
      100% { transform: translate(40px, -30px) scale(1.1); }
    }

    .lp-content {
      position: relative; z-index: 2;
      text-align: center; padding: 2rem;
      animation: fadeUp 1s var(--ease-out) both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .lp-logo {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 10vw, 7rem);
      font-weight: 300;
      letter-spacing: 0.15em;
      background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .lp-tagline {
      font-family: var(--font-mono);
      font-size: clamp(0.7rem, 2vw, 0.9rem);
      letter-spacing: 0.25em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 3rem;
    }

    .lp-badge {
      display: inline-block;
      border: 1px solid var(--border);
      padding: 0.4rem 1.2rem;
      border-radius: 100px;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 2rem;
      background: rgba(200,168,75,0.06);
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.3); }
      50%       { box-shadow: 0 0 0 10px rgba(200,168,75,0); }
    }

    /* Password form */
    #launch-form { position: relative; }
    .pw-label {
      display: block;
      font-size: 0.75rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 0.8rem;
    }
    .pw-input-wrap {
      position: relative; display: flex; align-items: center;
      width: min(360px, 90vw);
    }
    #pw-input {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem 3.5rem 1rem 1.2rem;
      color: var(--white);
      font-family: var(--font-mono);
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    #pw-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
    }
    #pw-input::placeholder { color: rgba(138,138,154,0.5); }

    #pw-toggle {
      position: absolute; right: 0.9rem;
      background: none; border: none; cursor: pointer;
      color: var(--muted); font-size: 1.1rem;
      display: flex; align-items: center;
      transition: color 0.2s;
    }
    #pw-toggle:hover { color: var(--gold); }

    #pw-submit {
      width: 100%;
      margin-top: 1rem;
      padding: 1rem;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border: none; border-radius: 8px;
      font-family: var(--font-body); font-weight: 600;
      font-size: 0.9rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--black);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s, opacity 0.2s;
    }
    #pw-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(200,168,75,0.35);
    }
    #pw-submit:active { transform: translateY(0); }

    .pw-error {
      margin-top: 0.8rem;
      font-size: 0.8rem; color: #ff6b6b;
      letter-spacing: 0.05em;
      animation: shake 0.4s ease;
      display: none;
    }
    @keyframes shake {
      0%,100% { transform: translateX(0); }
      25%      { transform: translateX(-8px); }
      75%      { transform: translateX(8px); }
    }
    .pw-error.visible { display: block; }

    /* Countdown */
    #countdown-wrap {
      display: none;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 1.5rem;
    }
    #countdown-wrap.visible { display: flex; }

    .cd-ring-container {
      position: relative; width: 140px; height: 140px;
    }
    .cd-ring-svg {
      position: absolute; inset: 0;
      transform: rotate(-90deg);
    }
    .cd-ring-bg { fill: none; stroke: rgba(200,168,75,0.15); stroke-width: 4; }
    .cd-ring-progress {
      fill: none; stroke: var(--gold2); stroke-width: 4;
      stroke-linecap: round;
      stroke-dasharray: 377; /* 2π×60 */
      stroke-dashoffset: 0;
      transition: stroke-dashoffset 1s linear;
    }
    .cd-number {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 4rem; font-weight: 300;
      color: var(--gold);
    }
    .cd-text {
      font-size: 0.85rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--muted);
    }
    .cd-launching {
      font-family: var(--font-display); font-size: 1.8rem;
      color: var(--gold3); letter-spacing: 0.05em;
      animation: glimmer 1s ease-in-out infinite alternate;
    }
    @keyframes glimmer {
      from { opacity: 0.7; }
      to   { opacity: 1; text-shadow: 0 0 30px rgba(200,168,75,0.5); }
    }

    /* ===========================
       MAIN WEBSITE
    =========================== */
    #main-site { display: none; }
    #main-site.visible { display: block; }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.2rem 4vw;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
    }
    nav.scrolled {
      background: rgba(5,5,8,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.8rem; font-weight: 300;
      letter-spacing: 0.1em;
      background: linear-gradient(135deg, var(--gold3), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links {
      display: flex; gap: 2.5rem; list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--muted);
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width 0.3s var(--ease-out);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 0.55rem 1.5rem;
      border: 1px solid var(--gold);
      border-radius: 100px;
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold) !important;
      transition: background 0.3s, color 0.3s !important;
    }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--black) !important;
    }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none; background: none; border: none;
      flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: var(--gold); transition: 0.3s;
    }

    /* Mobile nav */
    .mobile-menu {
      display: none; position: fixed;
      inset: 0; z-index: 999;
      background: rgba(5,5,8,0.97);
      backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 2.5rem; font-weight: 300;
      letter-spacing: 0.08em; color: var(--white);
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu-close {
      position: absolute; top: 1.5rem; right: 4vw;
      background: none; border: none; color: var(--muted);
      font-size: 1.5rem; cursor: pointer;
    }

    /* ===== HERO ===== */
    #home {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      padding: 10rem 4vw 6rem;
      overflow: hidden;
    }

    /* Particle canvas */
    #hero-canvas {
      position: absolute; inset: 0;
      pointer-events: none; z-index: 0;
    }

    /* Hero background elements */
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      overflow: hidden;
    }
    .hero-orb-1 {
      position: absolute; width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(106,79,200,0.2) 0%, transparent 70%);
      top: -200px; left: -200px;
      animation: heroFloat 12s ease-in-out infinite alternate;
    }
    .hero-orb-2 {
      position: absolute; width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,168,75,0.15) 0%, transparent 70%);
      bottom: -100px; right: -100px;
      animation: heroFloat 10s ease-in-out infinite alternate-reverse;
    }
    @keyframes heroFloat {
      from { transform: translate(0,0) rotate(0deg); }
      to   { transform: translate(50px, 30px) rotate(15deg); }
    }

    /* Decorative ring */
    .hero-ring {
      position: absolute;
      border: 1px solid rgba(200,168,75,0.12);
      border-radius: 50%;
      animation: ringPulse 4s ease-in-out infinite;
    }
    .hero-ring-1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
    .hero-ring-2 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.3s; }
    .hero-ring-3 { width: 1200px; height: 1200px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2.6s; }
    @keyframes ringPulse {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 0.6; }
    }

    .hero-content {
      position: relative; z-index: 1;
      text-align: center; max-width: 1000px;
    }
    .hero-eyebrow {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.75rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
      padding: 0.4rem 1rem;
      border: 1px solid rgba(200,168,75,0.3);
      border-radius: 100px;
      background: rgba(200,168,75,0.08);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(4rem, 12vw, 10rem);
      font-weight: 300;
      line-height: 0.95;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }
    .hero-title .line-gold {
      background: linear-gradient(135deg, var(--gold3) 0%, var(--gold) 50%, var(--gold2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }
    .hero-title .line-light {
      color: var(--white); display: block;
      font-style: italic;
    }

    .hero-tagline-wrap {
      margin: 1.8rem auto 2.5rem;
      padding: 1rem 2rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(200,168,75,0.05);
      display: inline-block;
      max-width: 700px;
    }
    .hero-tagline {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 3vw, 1.6rem);
      font-weight: 300;
      font-style: italic;
      color: var(--gold3);
      letter-spacing: 0.03em;
    }
    .hero-tagline strong {
      font-weight: 600; font-style: normal;
      color: var(--gold);
    }

    .hero-desc {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: var(--muted);
      max-width: 600px; margin: 0 auto 3rem;
      line-height: 1.8;
    }

    .hero-btns {
      display: flex; gap: 1rem;
      justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      padding: 0.9rem 2.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border: none; border-radius: 8px;
      font-family: var(--font-body); font-weight: 600;
      font-size: 0.88rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--black);
      cursor: pointer; display: inline-block;
      transition: transform 0.25s, box-shadow 0.3s;
      position: relative; overflow: hidden;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--gold2), var(--gold3));
      opacity: 0; transition: opacity 0.3s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(200,168,75,0.4); }
    .btn-primary:hover::before { opacity: 1; }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-outline {
      padding: 0.9rem 2.5rem;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--font-body); font-weight: 500;
      font-size: 0.88rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--white);
      cursor: pointer; display: inline-block;
      transition: border-color 0.3s, color 0.3s, transform 0.25s;
    }
    .btn-outline:hover {
      border-color: var(--gold); color: var(--gold);
      transform: translateY(-3px);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      z-index: 1;
    }
    .scroll-indicator span {
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--muted);
    }
    .scroll-line {
      width: 1px; height: 50px; background: var(--border);
      position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: ''; position: absolute;
      top: -100%; left: 0; width: 100%; height: 100%;
      background: var(--gold);
      animation: scrollDown 1.8s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0%   { top: -100%; }
      100% { top: 100%; }
    }

    /* ===== SECTION COMMON ===== */
    section { padding: 8rem 4vw; }
    .section-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.7rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .section-eyebrow::before {
      content: ''; display: block;
      width: 40px; height: 1px; background: var(--gold);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 300; line-height: 1.1;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-lead {
      font-size: 1.05rem; color: var(--muted);
      line-height: 1.85; max-width: 600px;
      margin-top: 1.2rem;
    }
    .divider {
      width: 60px; height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 2rem 0;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    /* ===== ABOUT SECTION ===== */
    #about { background: var(--deep); position: relative; overflow: hidden; }
    #about::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-frame {
      position: relative; z-index: 1;
      border-radius: 16px; overflow: hidden;
      border: 1px solid var(--border);
    }
    .about-img-placeholder {
      width: 100%; padding-top: 120%;
      background: linear-gradient(135deg, var(--card), var(--navy));
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .about-avatar {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 1rem;
    }
    .about-avatar-icon {
      width: 100px; height: 100px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 2.5rem;
      color: var(--black); font-weight: 600;
    }
    .about-avatar-name {
      font-family: var(--font-display);
      font-size: 1.4rem; color: var(--white);
    }
    .about-avatar-role {
      font-size: 0.8rem; color: var(--gold);
      letter-spacing: 0.15em; text-transform: uppercase;
    }

    .about-img-deco {
      position: absolute;
      width: 100%; height: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      top: 16px; left: 16px; z-index: 0;
    }
    .about-tag {
      position: absolute;
      padding: 0.6rem 1.2rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 0.8rem; letter-spacing: 0.05em;
      z-index: 2;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .about-tag-1 { bottom: -1.5rem; right: -1.5rem; }
    .about-tag-2 { top: -1rem; left: -1.5rem; }
    .about-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

    .about-text { }
    .founder-name {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 400;
      margin-top: 2rem; margin-bottom: 0.3rem;
    }
    .founder-role {
      font-size: 0.8rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .founder-bio {
      color: var(--muted); line-height: 1.85; font-size: 0.98rem;
    }
    .founder-badges {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      margin-top: 1.5rem;
    }
    .badge {
      padding: 0.35rem 0.9rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 0.75rem; letter-spacing: 0.1em;
      color: var(--muted);
      background: rgba(255,255,255,0.03);
    }

    .about-meaning {
      margin-top: 3rem;
      padding: 1.5rem 2rem;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: rgba(200,168,75,0.04);
      position: relative;
      overflow: hidden;
    }
    .about-meaning::before {
      content: '"'; position: absolute;
      top: -0.5rem; left: 1rem;
      font-family: var(--font-display);
      font-size: 6rem; color: rgba(200,168,75,0.1);
      line-height: 1;
    }
    .about-meaning h4 {
      font-family: var(--font-mono);
      font-size: 0.7rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.6rem;
    }
    .about-meaning p {
      font-family: var(--font-display);
      font-size: 1.15rem; color: var(--white);
      font-style: italic; line-height: 1.6;
    }

    /* ===== SERVICES SECTION ===== */
    #services { position: relative; }
    .services-header {
      max-width: 1200px; margin: 0 auto 5rem;
      display: flex; justify-content: space-between;
      align-items: flex-end; flex-wrap: wrap; gap: 2rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      max-width: 1200px; margin: 0 auto;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
    }
    .service-card {
      background: var(--card);
      padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      transition: background 0.4s;
    }
    .service-card::before {
      content: ''; position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,168,75,0.06), transparent);
      opacity: 0; transition: opacity 0.4s;
    }
    .service-card:hover { background: #14141f; }
    .service-card:hover::before { opacity: 1; }

    .service-number {
      font-family: var(--font-mono);
      font-size: 0.7rem; color: rgba(200,168,75,0.4);
      letter-spacing: 0.2em; margin-bottom: 2rem;
    }
    .service-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(200,168,75,0.15), rgba(200,168,75,0.05));
      border: 1px solid rgba(200,168,75,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .service-card:hover .service-icon {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(200,168,75,0.2);
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem; font-weight: 400;
      margin-bottom: 0.8rem; line-height: 1.2;
    }
    .service-card p {
      font-size: 0.9rem; color: var(--muted);
      line-height: 1.75;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-top: 1.5rem;
      font-size: 0.8rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold);
      transition: gap 0.3s;
    }
    .service-card:hover .service-link { gap: 0.8rem; }
    .service-arrow { transition: transform 0.3s; }
    .service-card:hover .service-arrow { transform: translateX(4px); }

    /* Tall featured card */
    .service-card.featured {
      grid-row: span 2;
      background: linear-gradient(160deg, var(--navy) 0%, var(--card) 100%);
      border-right: 1px solid var(--border);
    }
    .service-card.featured h3 { font-size: 2rem; }

    /* ===== PROCESS SECTION ===== */
    #process {
      background: var(--deep);
      position: relative; overflow: hidden;
    }
    #process::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .process-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative; margin-top: 4rem;
    }
    .process-steps::before {
      content: ''; position: absolute;
      top: 32px; left: 10%; right: 10%; height: 1px;
      background: var(--border);
      z-index: 0;
    }
    .process-step {
      text-align: center; padding: 1.5rem;
      position: relative; z-index: 1;
    }
    .step-number {
      width: 64px; height: 64px; border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--black);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
      margin: 0 auto 1.5rem;
      transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .process-step:hover .step-number {
      background: linear-gradient(135deg, rgba(200,168,75,0.2), rgba(200,168,75,0.05));
      box-shadow: 0 0 30px rgba(200,168,75,0.2);
      border-color: var(--gold);
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 1.25rem; font-weight: 400;
      margin-bottom: 0.5rem;
    }
    .step-desc {
      font-size: 0.85rem; color: var(--muted); line-height: 1.7;
    }

    /* ===== WHY US SECTION ===== */
    #why { overflow: hidden; }
    .why-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
    }
    .why-features {
      display: flex; flex-direction: column; gap: 1.5rem;
      margin-top: 3rem;
    }
    .why-feature {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.5rem;
      border: 1px solid transparent;
      border-radius: 12px;
      transition: border-color 0.3s, background 0.3s;
    }
    .why-feature:hover {
      border-color: var(--border);
      background: rgba(200,168,75,0.04);
    }
    .why-feature-icon {
      width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
      background: linear-gradient(135deg, rgba(200,168,75,0.15), rgba(200,168,75,0.05));
      border: 1px solid rgba(200,168,75,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .why-feature-text h4 {
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
      margin-bottom: 0.4rem;
    }
    .why-feature-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

    /* Stats panel */
    .why-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.5px; border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      background: var(--border);
    }
    .stat-box {
      background: var(--card);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: background 0.3s;
    }
    .stat-box:hover { background: #14141f; }
    .stat-number {
      font-family: var(--font-display);
      font-size: 3.5rem; font-weight: 300;
      color: var(--gold); line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem; color: var(--muted);
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-top: 0.5rem;
    }

    /* ===== CMS SECTION ===== */
    #cms {
      background: var(--deep); position: relative; overflow: hidden;
    }
    #cms::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--teal), transparent);
    }
    .cms-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .cms-grid {
      display: grid; grid-template-columns: 1fr 1.3fr;
      gap: 5rem; align-items: center; margin-top: 5rem;
    }
    .cms-mockup {
      position: relative;
      border-radius: 16px; overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card);
      box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    }
    .cms-topbar {
      padding: 0.8rem 1rem;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .cms-dot { width: 10px; height: 10px; border-radius: 50%; }
    .cms-dot-r { background: #ff5f57; }
    .cms-dot-y { background: #ffbd2e; }
    .cms-dot-g { background: #28c840; }
    .cms-url {
      margin-left: 0.5rem; flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border); border-radius: 4px;
      padding: 0.2rem 0.8rem; font-family: var(--font-mono);
      font-size: 0.65rem; color: var(--muted); text-align: center;
    }
    .cms-body { padding: 1.5rem; }
    .cms-row {
      display: flex; gap: 1rem; margin-bottom: 1rem;
    }
    .cms-field {
      flex: 1; padding: 0.6rem 0.8rem;
      border: 1px solid var(--border); border-radius: 6px;
      background: rgba(255,255,255,0.03);
      font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted);
    }
    .cms-field.active { border-color: var(--teal); color: var(--white); }
    .cms-img-preview {
      width: 100%; padding-top: 45%;
      background: linear-gradient(135deg, rgba(30,203,200,0.1), rgba(200,168,75,0.1));
      border: 1px dashed var(--border); border-radius: 8px;
      position: relative; margin-bottom: 1rem;
    }
    .cms-img-label {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      font-size: 0.75rem; color: var(--muted);
    }
    .cms-img-label span { font-size: 1.5rem; margin-bottom: 0.3rem; }
    .cms-save {
      padding: 0.5rem 1.2rem;
      background: linear-gradient(135deg, var(--teal), #1a8f8d);
      border: none; border-radius: 6px;
      font-size: 0.75rem; font-weight: 600; color: var(--black);
      letter-spacing: 0.08em;
      animation: saveGlow 2s ease-in-out infinite;
    }
    @keyframes saveGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(30,203,200,0.3); }
      50%       { box-shadow: 0 0 0 8px rgba(30,203,200,0); }
    }
    .cms-features { display: flex; flex-direction: column; gap: 1.8rem; }
    .cms-feature {
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .cms-feature-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px;
      background: rgba(30,203,200,0.1);
      border: 1px solid rgba(30,203,200,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .cms-feature h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.3rem; }
    .cms-feature p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

    /* ===== INDUSTRIES SECTION ===== */
    #industries { overflow: hidden; }
    .industries-inner { max-width: 1200px; margin: 0 auto; }
    .industries-scroll {
      display: flex; gap: 1.5rem;
      margin-top: 4rem; overflow-x: auto;
      padding-bottom: 1rem;
      scrollbar-width: none;
    }
    .industries-scroll::-webkit-scrollbar { display: none; }
    .industry-card {
      flex-shrink: 0; width: 280px;
      padding: 2rem;
      border: 1px solid var(--border);
      border-radius: 16px; background: var(--card);
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .industry-card:hover {
      transform: translateY(-8px);
      border-color: rgba(200,168,75,0.4);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .industry-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
    .industry-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
    .industry-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

    /* ===== CONTACT SECTION ===== */
    #contact {
      background: var(--deep); position: relative; overflow: hidden;
    }
    #contact::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .contact-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 6rem; align-items: start;
    }
    .contact-info h2 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300; line-height: 1.1;
      margin-top: 1.5rem;
    }
    .contact-info h2 em { font-style: italic; color: var(--gold); }
    .contact-info p { color: var(--muted); line-height: 1.8; margin-top: 1.2rem; }
    .contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-item {
      display: flex; gap: 1rem; align-items: center;
      padding: 1rem 1.2rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: rgba(255,255,255,0.02);
      transition: border-color 0.3s, background 0.3s;
    }
    .contact-item:hover { border-color: var(--gold); background: rgba(200,168,75,0.04); }
    .contact-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px;
      background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2);
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .contact-item-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
    .contact-item-value { font-size: 0.9rem; color: var(--white); margin-top: 0.1rem; }

    /* Contact form */
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-size: 0.72rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--muted);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 0.85rem 1rem;
      color: var(--white); font-family: var(--font-body); font-size: 0.92rem;
      outline: none; transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select option { background: var(--navy); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(138,138,154,0.5); }
    .form-submit { align-self: flex-start; }

    /* Success state */
    .form-success {
      display: none; text-align: center; padding: 3rem;
      border: 1px solid rgba(34,197,94,0.3);
      border-radius: 12px;
      background: rgba(34,197,94,0.05);
    }
    .form-success.visible { display: block; }
    .form-success h3 { font-family: var(--font-display); font-size: 1.8rem; color: #22c55e; }
    .form-success p { color: var(--muted); margin-top: 0.5rem; }

    /* ===== FOOTER ===== */
    footer {
      padding: 4rem 4vw 2rem;
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem; padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }
    .footer-brand .nav-logo { display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
    .footer-tagline-block {
      margin-top: 1rem;
      padding: 0.8rem 1rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--font-display);
      font-style: italic; font-size: 0.95rem;
      color: var(--gold3);
    }
    .footer-col h5 {
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul li a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.8rem; color: var(--muted); }
    .footer-copy span { color: var(--gold); }
    .footer-legal { display: flex; gap: 2rem; }
    .footer-legal a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
    .footer-legal a:hover { color: var(--gold); }

    /* Social links */
    .social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
    .social-link {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; color: var(--muted);
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }
    .social-link:hover {
      border-color: var(--gold); color: var(--gold);
      background: rgba(200,168,75,0.08);
    }

    /* ===== TOP MARQUEE ===== */
    .marquee-section {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--deep);
      padding: 1rem 0;
    }
    .marquee-track {
      display: flex; gap: 3rem;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-item {
      display: flex; align-items: center; gap: 1rem;
      white-space: nowrap;
      font-family: var(--font-mono); font-size: 0.75rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--muted);
    }
    .marquee-dot { color: var(--gold); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .about-grid { grid-template-columns: 1fr; gap: 4rem; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .service-card.featured { grid-row: auto; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .why-inner { grid-template-columns: 1fr; gap: 4rem; }
      .cms-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      section { padding: 5rem 4vw; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-steps::before { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .process-steps { grid-template-columns: 1fr; }
      .why-stats { grid-template-columns: 1fr; }
    }