
      :root {
        --crt-bg: #0a0a0a;
        --bezel: #dbd5c9; /* Classic Beige */
        --bezel-dark: #c5beae;
        --bezel-light: #f5f1e9;
      }

body {
  background-color: #0f0f10;
  color: #e5e5e5;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fcd34d;
}

.nav-link.is-active {
  color: #fcd34d;
}

      /* Centered Hero Focus */
      .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 40px 20px;
        text-align: center;
      }

      .crt-container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 40px auto;
        perspective: 1500px;
      }

      /* The Beige Monitor Body */
      .monitor {
        background: var(--bezel);
        border-radius: 40px;
        padding: 35px;
        position: relative;
        box-shadow:
          inset -4px -4px 10px rgba(0, 0, 0, 0.2),
          inset 4px 4px 10px rgba(255, 255, 255, 0.8),
          0 30px 60px rgba(0, 0, 0, 0.6),
          0 0 0 2px var(--bezel-dark);
        transform: rotateX(5deg);
      }

      /* Plastic texture details */
      .monitor::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
          circle at 50% 50%,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 80%
        );
        pointer-events: none;
        border-radius: 40px;
      }

      /* Power LED */
      .power-light {
        position: absolute;
        bottom: 45px;
        right: 60px;
        width: 8px;
        height: 8px;
        background: #44ff44;
        border-radius: 50%;
        box-shadow: 0 0 10px #44ff44;
        z-index: 20;
      }

      /* The actual screen area */
      .screen-bezel {
        background: #111;
        border-radius: 20px;
        padding: 12px;
        box-shadow:
          inset 5px 5px 15px rgba(0, 0, 0, 0.8),
          inset -2px -2px 5px rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        aspect-ratio: 4 / 3;
      }

      .screen-glass {
        width: 100%;
        height: 100%;
        background: var(--crt-bg);
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        /* Curved glass effect */
        mask-image: radial-gradient(circle, black 85%, transparent 100%);
      }

      .scanlines {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          rgba(18, 16, 16, 0) 50%,
          rgba(0, 0, 0, 0.15) 50%
        );
        background-size: 100% 4px;
        pointer-events: none;
        z-index: 10;
      }

      .flicker {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.015);
        opacity: 0;
        pointer-events: none;
        z-index: 11;
        animation: flicker 0.15s infinite;
      }

      .mobile-fullscreen-trigger {
        position: absolute;
        inset: 0;
        z-index: 12;
        border: none;
        background: transparent;
        cursor: pointer;
        display: none;
      }

      @media (max-width: 720px) {
        .mobile-fullscreen-trigger {
          display: block;
        }
      }

      .crt-container:fullscreen {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
      }

      .crt-container:fullscreen .monitor {
        width: 100vh;
        height: 100vw;
        padding: 10px;
        transform: rotate(90deg);
        box-shadow: none;
      }

      .crt-container:fullscreen .screen-bezel {
        height: 100%;
      }

      .crt-container:fullscreen .mobile-fullscreen-trigger {
        display: none;
      }

      .mobile-featured-case {
        display: none;
      }

      @media (max-width: 720px) {
        .crt-container {
          display: none;
        }

        .monitor {
          padding: 6px;
          border-radius: 22px;
          transform: none;
          background: transparent;
          box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
        }

        .monitor::after {
          opacity: 0;
        }

        .power-light {
          display: none;
        }

        .screen-bezel {
          padding: 4px;
          border-radius: 16px;
          background: #0b0b0b;
          box-shadow: none;
          aspect-ratio: 16 / 10;
        }

        .screen-glass {
          border-radius: 12px;
          mask-image: none;
        }

        .mobile-featured-case {
          display: block;
          margin-top: 12px;
        }
      }

      @keyframes flicker {
        0% {
          opacity: 0.01;
        }
        50% {
          opacity: 0.02;
        }
        100% {
          opacity: 0.01;
        }
      }

      .vignette {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.9);
        pointer-events: none;
        z-index: 12;
      }

      iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: contrast(1.1) brightness(1.2) sepia(0.1);
      }

.btn-retro {
  background: var(--bezel);
  color: #333;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 4px solid var(--bezel-dark);
  transition: all 0.1s;
}

.btn-retro--small {
  padding: 8px 18px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.btn-retro:active {
  transform: translateY(2px);
  border-bottom-width: 2px;
}

                  .brand-text {

                    font-size: 0.7rem;

                    letter-spacing: 0.3em;

                    color: rgba(0, 0, 0, 0.3);

                    position: absolute;

                    bottom: 40px;

                    left: 50%;

                    transform: translateX(-50%);

                    font-weight: bold;

                  }

            

            /* TV Set for Works Page */
.tv-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95vh;
    padding: 20px;
}

.tv-set {
    display: flex;
    gap: 20px;
    background: linear-gradient(to right, #6d4c41, #8d6e63); /* Wood grain */
    border: 4px solid #4e342e;
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), inset -10px -10px 15px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 1200px; /* Increased width */
    height: 700px; /* Increased height */
}

.tv-screen-container {
    flex-grow: 1;
    position: relative;
    background: #111;
    border-radius: 20px;
    padding: 15px;
    box-shadow: inset 5px 5px 15px rgba(0,0,0,0.8);
    mask-image: radial-gradient(circle, black 85%, transparent 100%);
    display: flex;
}

.screen-vignette {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
    pointer-events: none;
    z-index: 15;
    border-radius: 20px;
}

#tv-screen {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: #000;
}

.tv-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 200px;
}

.speaker-grille {
    flex-grow: 1;
    background: repeating-linear-gradient(
        45deg,
        #3e2723,
        #3e2723 5px,
        #4e342e 5px,
        #4e342e 10px
    );
    border-radius: 15px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.controls-panel {
    background: #c5beae;
    padding: 15px;
    border-radius: 15px;
    box-shadow: inset -2px -2px 5px rgba(0,0,0,0.3), inset 2px 2px 5px rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #4e342e;
}

.channel-display-wrapper {
    background: #333;
    color: #ff4141;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: inset 0 0 5px #000;
    width: 80%;
}

.channel-display {
    font-family: 'VT323', monospace;
    font-size: 2.5rem;
    line-height: 1;
    text-shadow: 0 0 5px #ff4141;
}

.channel-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.dials {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.channel-btn {
    background: #4e342e;
    color: #dbd5c9;
    border: 2px solid #3e2723;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.1s;
}

.channel-btn:active {
    background: #3e2723;
    transform: translateY(1px);
}

.brand-name {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.3);
}

/* About page */
.about-page {
  background: radial-gradient(circle at 20% 20%, rgba(255, 200, 120, 0.08), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(120, 200, 255, 0.08), transparent 40%),
    #0f0f10;
}

.about-hero {
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  opacity: 0.35;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffb347;
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.7);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(15, 15, 16, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.portrait-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.portrait-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  transform: translateZ(0);
}

.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(10%) contrast(1.1) brightness(1.05);
  transition: transform 0.4s ease;
}

.portrait-frame:hover img {
  transform: scale(1.03);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 200, 120, 0.2), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.portrait-frame figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(12, 12, 14, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card {
  border-radius: 20px;
  padding: 24px;
  background: rgba(15, 15, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
}

.signal-pill {
  border: 1px solid rgba(255, 179, 71, 0.5);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffcf92;
}

.signal-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: "VT323", monospace;
  letter-spacing: 0.08em;
}

.signal-copy {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.signal-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.signal-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 22, 0.9);
  color: #f3f4f6;
  font-family: "VT323", monospace;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.signal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.signal-btn.is-active {
  background: #ffb347;
  color: #1b1b1b;
  border-color: #ffb347;
  box-shadow: 0 0 16px rgba(255, 179, 71, 0.6);
}

.about-console {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.console-panel {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 14, 0.9);
}

.console-title {
  font-size: 1.6rem;
  font-family: "VT323", monospace;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.console-copy {
  color: #a7b0c3;
  margin-bottom: 20px;
  line-height: 1.5;
}

.console-dial input[type="range"] {
  width: 100%;
  accent-color: #ffb347;
}

.console-readout {
  margin-top: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
}

.console-panels {
  display: grid;
  gap: 16px;
}

.console-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(20, 20, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.console-card.is-lit {
  display: block;
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(255, 179, 71, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.console-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.console-card p {
  color: #a7b0c3;
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px;
  background: rgba(12, 12, 14, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0b0f;
}

.lightbox-content img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 12, 0.7);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.stage-section .service-card {
  position: relative;
  overflow: hidden;
}

.example-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 75, 0.45);
  color: #fcd34d;
  background: rgba(252, 211, 75, 0.08);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}

.stage-section .example-banner {
  position: absolute;
  top: 18px;
  right: -22px;
  transform: rotate(14deg);
  margin: 0;
  padding: 4px 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  border-color: rgba(252, 211, 75, 0.4);
}

.section-intro {
  margin-bottom: 2.5rem;
}

.section-intro .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #fcd34d;
  margin-bottom: 1rem;
}

.section-intro h1,
.section-intro h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro p {
  color: rgba(148, 163, 184, 0.9);
}

.cta-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px;
  background: rgba(12, 12, 14, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.cta-block p {
  color: rgba(148, 163, 184, 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.6s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Homepage enhancements */
.nav-scrolled {
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-cursor {
  display: inline-block;
  width: 10px;
  height: 2px;
  background: #fbbf24;
  margin-left: 6px;
  animation: blink-cursor 0.9s steps(2, start) infinite;
}

@keyframes blink-cursor {
  0%,
  60% {
    opacity: 1;
  }
  61%,
  100% {
    opacity: 0;
  }
}

/* Services IDE view */
.services-ide {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.08), transparent 35%);
}

.services-ide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
  opacity: 0.25;
}

.ide-frame {
  position: relative;
  background: #0b120f;
  border: 2px solid rgba(34, 197, 94, 0.35);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 1;
}

.ide-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #0d1a12;
  border-bottom: 2px solid rgba(34, 197, 94, 0.35);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(134, 239, 172, 0.9);
}

.ide-title {
  font-weight: 600;
}

.ide-actions {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(134, 239, 172, 0.7);
}

.ide-command {
  padding: 8px 16px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(134, 239, 172, 0.6);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(10, 20, 14, 0.9);
}

.ide-body {
  display: grid;
  grid-template-columns: 220px 1fr 28px;
  min-height: 360px;
  background: #08110c;
}

.ide-sidebar {
  background: #0b1410;
  border-right: 2px solid rgba(34, 197, 94, 0.2);
  padding: 18px;
  color: rgba(134, 239, 172, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.ide-section {
  margin-bottom: 16px;
  color: rgba(187, 247, 208, 0.85);
}

.ide-file {
  border: none;
  text-align: left;
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  background: transparent;
  color: rgba(134, 239, 172, 0.6);
  cursor: pointer;
}

.ide-file.active {
  background: rgba(34, 197, 94, 0.15);
  color: rgba(187, 247, 208, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.ide-file:hover {
  background: rgba(34, 197, 94, 0.08);
  color: rgba(187, 247, 208, 0.85);
}

.ide-editor {
  padding: 22px 26px;
  color: #bbf7d0;
  font-family: "VT323", monospace;
  font-size: 1.05rem;
  line-height: 1.8;
  overflow-x: auto;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
}

.ide-editor pre {
  margin: 0;
  white-space: pre-wrap;
}

.ide-editor .kw {
  color: #86efac;
}

.ide-editor .fn {
  color: #4ade80;
}

.ide-editor .key {
  color: #fde68a;
}

.ide-editor .str {
  color: #a7f3d0;
}

.ide-editor .com {
  color: rgba(134, 239, 172, 0.5);
}

.ide-lines {
  color: rgba(134, 239, 172, 0.35);
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.8;
  user-select: none;
}

.ide-lines span {
  display: block;
}

.ide-cursor {
  display: inline-block;
  width: 10px;
  height: 14px;
  margin-left: 6px;
  background: rgba(134, 239, 172, 0.8);
  animation: blink-cursor 0.9s steps(2, start) infinite;
  vertical-align: -2px;
}

.ide-minimap {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.2),
    rgba(34, 197, 94, 0.02)
  );
  border-left: 1px solid rgba(34, 197, 94, 0.2);
}

.ide-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #0c1812;
  border-top: 2px solid rgba(34, 197, 94, 0.35);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(134, 239, 172, 0.7);
  gap: 12px;
}

.ide-run {
  padding: 6px 12px;
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 6px;
  color: rgba(187, 247, 208, 0.9);
  text-decoration: none;
}

/* Works page */
.works-hero {
  padding: 140px 32px 80px;
  position: relative;
}

.works-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(251, 191, 36, 0.16), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.12), transparent 40%),
    radial-gradient(circle at 60% 70%, rgba(244, 114, 182, 0.12), transparent 50%);
  pointer-events: none;
}

.works-orbit-shell {
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.works-headline {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.works-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.6rem;
  color: rgba(248, 250, 252, 0.7);
}

.signal-bar {
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.9), rgba(96, 165, 250, 0.2));
}

.works-title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "VT323", monospace;
}

.works-subtitle {
  color: rgba(226, 232, 240, 0.72);
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.works-highlights {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.highlight-card {
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(12, 12, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 6px;
}

.highlight-card span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(148, 163, 184, 0.8);
}

.highlight-card strong {
  font-size: 1.2rem;
  color: #fbbf24;
}

.highlight-card em {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.works-orbit-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.2fr);
  gap: 24px;
  align-items: stretch;
}

.works-orbit-grid--single {
  grid-template-columns: 1fr;
}

.works-telemetry {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(18, 18, 22, 0.92), rgba(8, 8, 10, 0.95));
  padding: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 18px;
}

.telemetry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.85);
}

.telemetry-status {
  border: 1px solid rgba(34, 197, 94, 0.65);
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(187, 247, 208, 0.9);
  font-size: 0.6rem;
}

.telemetry-stack {
  display: grid;
  gap: 14px;
}

.telemetry-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(8, 8, 12, 0.55);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.telemetry-card span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(148, 163, 184, 0.7);
}

.telemetry-card strong {
  display: block;
  margin: 8px 0;
  color: #fbbf24;
  font-size: 1.05rem;
}

.telemetry-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.panel-meter span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(226, 232, 240, 0.6);
}

.meter-bar {
  margin-top: 6px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.meter-bar div {
  height: 100%;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.9), rgba(34, 197, 94, 0.9));
}

.works-feature {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 28px;
  background: linear-gradient(140deg, rgba(12, 12, 16, 0.98), rgba(8, 8, 12, 0.85));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.works-feature--full {
  min-width: 0;
}

.works-feature::after {
  content: "";
  position: absolute;
  inset: -40% 30% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent 70%);
  pointer-events: none;
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(251, 191, 36, 0.85);
}

.feature-pill {
  border: 1px solid rgba(96, 165, 250, 0.6);
  border-radius: 999px;
  padding: 4px 12px;
  color: rgba(191, 219, 254, 0.9);
  font-size: 0.6rem;
}

.feature-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.feature-content h3 {
  font-family: "VT323", monospace;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.feature-content p {
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-preview {
  display: grid;
  gap: 16px;
  align-content: start;
}

.preview-screen {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(9, 12, 22, 0.9), rgba(4, 6, 12, 0.95));
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 18px;
  min-height: 220px;
  overflow: hidden;
}

.preview-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.25), transparent 50%);
  pointer-events: none;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.preview-grid span {
  display: block;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-lines {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.preview-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.feature-meta span {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(148, 163, 184, 0.7);
  margin-bottom: 4px;
}

.feature-meta strong {
  font-size: 0.9rem;
  color: rgba(251, 191, 36, 0.95);
  font-weight: 600;
}

.works-cases {
  padding: 0 32px 80px;
}

.cases-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.cases-kicker {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(251, 191, 36, 0.85);
  margin-bottom: 12px;
}

.cases-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}

.cases-copy {
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.7;
  font-size: 1rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.case-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  background: rgba(10, 10, 14, 0.9);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(251, 191, 36, 0.1), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.case-card h3 {
  font-family: "VT323", monospace;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.case-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.75);
  line-height: 1.6;
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(251, 191, 36, 0.85);
}

.case-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}

.case-light.warm {
  background: #f97316;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.8);
}

.case-light.cool {
  background: #60a5fa;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.8);
}

.case-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.92rem;
}

.case-points li {
  position: relative;
  padding-left: 16px;
}

.case-points li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: rgba(251, 191, 36, 0.85);
}

.case-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.case-card--signal {
  border-color: rgba(96, 165, 250, 0.45);
  background: linear-gradient(140deg, rgba(15, 17, 28, 0.95), rgba(8, 10, 18, 0.9));
}

.case-card--signal::after {
  background: linear-gradient(140deg, rgba(96, 165, 250, 0.18), transparent 60%);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-stats span {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(148, 163, 184, 0.7);
  margin-bottom: 4px;
}

.case-stats strong {
  font-size: 0.9rem;
  color: rgba(251, 191, 36, 0.9);
}

@media (max-width: 980px) {
  .works-orbit-grid {
    grid-template-columns: 1fr;
  }

  .feature-body {
    grid-template-columns: 1fr;
  }

  .cases-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  #main-nav .text-xl a span {
    display: none;
  }

  #main-nav .text-xl a::after {
    content: "ROCKS";
    margin-left: 2px;
    font-style: italic;
    font-weight: 300;
  }

  .works-highlights {
    grid-template-columns: 1fr;
  }

  .works-title {
    letter-spacing: 0.05em;
  }

  .feature-meta {
    grid-template-columns: 1fr;
  }

  .case-stats {
    grid-template-columns: 1fr;
  }
}.works-highlights {
    grid-template-columns: 1fr;
  }

  .works-title {
    letter-spacing: 0.05em;
  }

  .module-body {
    grid-template-columns: 1fr;
  }
}
    

