
    :root {
      --navy: #0a1628;
      --navy-mid: #0f2044;
      --navy-light: #1a3260;
      --orange: #ff6b1a;
      --orange-bright: #ff8c42;
      --orange-dim: rgba(255, 107, 26, 0.15);
      --white: #f0f4ff;
      --grey: #8899bb;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      background-color: var(--navy);
      color: var(--white);
      font-family: 'Rajdhani', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Grid background */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
    }

    /* Radial glow top center */
    body::after {
      content: '';
      position: fixed;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(255,107,26,0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    header {
      position: relative;
      z-index: 1;
      border-bottom: 1px solid rgba(255,107,26,0.3);
      padding: 18px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10,22,40,0.85);
      backdrop-filter: blur(6px);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 38px;
      height: 38px;
    }

    .logo-text {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1rem;
      color: var(--orange);
      letter-spacing: 0.05em;
    }

    .logo-text span {
      color: var(--grey);
    }

    nav {
      display: flex;
      gap: 32px;
    }

    nav a {
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--orange); }

    .hero {
      position: relative;
      z-index: 1;
      min-height: 88vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px 24px 40px;
    }

    .coming-soon-badge {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      color: var(--orange);
      background: var(--orange-dim);
      border: 1px solid rgba(255,107,26,0.35);
      border-radius: 2px;
      padding: 6px 16px;
      margin-bottom: 36px;
      animation: pulse 2.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.55; }
    }

    h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 16px;
    }

    h1 .accent { color: var(--orange); }

    .subtitle {
      font-family: 'Share Tech Mono', monospace;
      font-size: clamp(0.85rem, 2vw, 1.1rem);
      color: var(--grey);
      letter-spacing: 0.1em;
      margin-bottom: 56px;
      max-width: 580px;
    }

    .cards {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 50px;
      margin-bottom: 64px;
      
    }

    .card {
      background: rgba(15,32,68,0.7);
      border: 1px solid rgba(255,107,26,0.2);
      border-top: 2px solid var(--orange);
      padding: 28px 28px 24px;
      width: 220px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
      cursor: default;
      min-height: 125px;
      color: #ffffff;
    }

    .card::before {
      content: 'click';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 0;
      background: var(--orange-dim);
      transition: height 0.3s ease;
      
    }

    .card:hover::before { height: 100%; }
    .card:hover { border-color: var(--orange); transform: translateY(-4px); }

    .card-label {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .card-title {
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--white);
      position: relative;
      z-index: 1;
    }

    /* TERMINAL BLOCK */
    .terminal {
      background: rgba(5,12,25,0.9);
      border: 1px solid rgba(255,107,26,0.25);
      border-radius: 4px;
      padding: 24px 32px;
      max-width: 560px;
      width: 100%;
      text-align: left;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.85rem;
      color: var(--grey);
      line-height: 1.8;
    }

    .terminal .prompt { color: var(--orange); }
    .terminal .highlight { color: var(--white); }

    .cursor {
      display: inline-block;
      width: 8px;
      height: 14px;
      background: var(--orange);
      vertical-align: middle;
      animation: blink 1.1s step-end infinite;
      margin-left: 2px;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid rgba(255,107,26,0.15);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'Share Tech Mono', monospace;
      font-size: 1rem;
      letter-spacing: 0.1em;
      color: rgba(136,153,187,0.5);
      width: 100%;
    }

    .status-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange);
      margin-right: 8px;
      animation: pulse 2.5s ease-in-out infinite;
    }

    .light_links {
      color: aqua;
    }
    
    #logo_sm {
      height: 150px;
    }

    #hero_logo {
      height: 250px;
    }

    #card_logo {
      height: 90px;
      border-radius: 25%;
      z-index: 1;
    }