    body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
      background: radial-gradient(circle at top, #101515 0, #050808 55%, #020404 100%);
      color: #e0e0e0;
      line-height: 1.6;
      height: 100%;
      overflow-x: hidden;
    }

    html {
      height: 100%;
      scroll-behavior: smooth;
    }

    * {
      box-sizing: border-box;
    }

    /* Navigation */
    nav {
      position: static;
      width: 100%;
      background: transparent;
      backdrop-filter: none;
      padding: 0.5rem 1.6rem;
      z-index: auto;
      border-bottom: none;
      box-shadow: none;
      margin: 0 auto;
      max-width: 1400px;
    }

    .nav-toggle {
      display: none;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 1.4rem;
      flex-wrap: wrap;
      max-width: 1400px;
      margin-inline: auto;
      transition: max-height 0.3s ease;
    }

    nav a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: all 0.3s ease;
      position: relative;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    }

    nav a:hover {
      color: #00ffc8;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #00ffc8;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    #resumeNavLink {
      color: #ffd400;
    }

    #resumeNavLink:hover {
      color: #ffd400;
    }

    /* Hero Section */
    .hero {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 3.25rem 1.5rem 3.25rem;
      background: transparent;
      position: relative;
      overflow: hidden;
      max-width: 1400px;
      margin-inline: auto;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      left: -10%;
      width: 140%;
      height: 140%;
      background: 
        radial-gradient(circle at top left, rgba(0, 255, 200, 0.09), transparent 55%),
        linear-gradient(90deg, rgba(0, 255, 200, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 200, 0.03) 1px, transparent 1px);
      background-size: auto, 50px 50px, 50px 50px;
      opacity: 0.35;
      pointer-events: none;
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* Intro Media */
    .intro-media {
      width: 100%;
      margin-bottom: 3rem;
    }

    .media-container {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(0, 255, 200, 0.18);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 255, 200, 0.08);
      backdrop-filter: blur(8px);
      background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.12), #050707 55%);
      transition: all 0.3s ease;
      position: relative;
    }

    .media-container:hover {
      border-color: #00ffc8;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.65);
      transform: translateY(-1px);
    }

    .intro-gif {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease-in-out;
    }

    .intro-gif.is-ready {
      opacity: 1;
      visibility: visible;
    }

    .intro-play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75));
      color: #00ffc8;
      font-family: 'SF Mono', monospace;
      font-size: 0.95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .intro-play-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
    }

    .intro-play-overlay span {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 1.4rem;
      border-radius: 999px;
      border: 2px solid rgba(0, 255, 200, 0.85);
      background: rgba(0, 0, 0, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .intro-play-overlay svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .media-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.15), #050707 55%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .demo-placeholder {
      display: none;
    }

    .placeholder-text {
      font-size: 1.5rem;
      color: #00ffc8;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .placeholder-subtext {
      font-size: 0.9rem;
      color: #808080;
      text-align: center;
    }

    .hero-label {
      color: #00ffc8;
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 0.75rem;
    }

    .hero-greeting {
      font-size: 1.1rem;
      color: #c4c4c4;
      max-width: 720px;
      margin: 0 0 0.75rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      text-shadow: none;
    }

    .hero h1 {
      font-size: 4rem;
      margin: 0 0 1.5rem;
      color: #ffffff;
      font-weight: 900;
      line-height: 1.1;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      text-shadow: none;
    }

    .hero h1 .highlight {
      color: #00ffc8;
      position: relative;
      display: inline-block;
      white-space: nowrap;
      text-shadow: none;
    }

    .hero-proof {
      font-size: 0.85rem;
      margin: -0.5rem 0 1.2rem;
      white-space: nowrap;
    }

    .hero-subtext {
      font-size: 1.3rem;
      color: #b0b0b0;
      max-width: 700px;
      margin-bottom: 2.5rem;
      line-height: 1.7;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      text-shadow: none;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .hero-stats-visual {
      display: none;
      width: 100%;
      height: auto;
    }

    .stat {
      text-align: left;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 900;
      color: #00ffc8;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #808080;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2.5rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      transition: all 0.25s ease;
      border: 2px solid;
      cursor: pointer;
      font-family: 'SF Mono', monospace;
      position: relative;
      overflow: hidden;
      box-shadow: none;
    }

    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .btn-primary {
      background: #00ffc8;
      color: #0a0a0a;
      border-color: #00ffc8;
      box-shadow: none;
    }

    .btn-primary:hover {
      background: transparent;
      color: #00ffc8;
      box-shadow: 0 18px 45px rgba(0, 255, 200, 0.55);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: #00ffc8;
      border-color: #00ffc8;
      box-shadow: none;
    }

    .btn-secondary:hover {
      background: rgba(0, 255, 200, 0.08);
      color: #00ffc8;
      box-shadow: 0 14px 40px rgba(0, 255, 200, 0.35);
      transform: translateY(-2px);
    }

    .btn:hover::after {
      opacity: 1;
    }

    /* Section Styles */
    section {
      padding: 5rem 2.5rem;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    section h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #ffffff;
      font-weight: 900;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    section h2 .highlight {
      color: #00ffc8;
    }

    .section-intro {
      font-size: 1.2rem;
      color: #b0b0b0;
      margin-bottom: 3rem;
      max-width: 800px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Panel Shell (ghostified card for key sections) */
    .panel-section {
      background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.06), transparent 60%),
                  radial-gradient(circle at bottom right, rgba(0, 255, 200, 0.04), transparent 60%),
                  linear-gradient(145deg, #050808 0%, #111111 50%, #050808 100%);
      border-radius: 20px;
      border: 1px solid rgba(0, 255, 200, 0.14);
      box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 255, 200, 0.05);
      padding: 2.5rem 2.5rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .panel-section::before,
    .panel-section::after {
      content: '';
      position: absolute;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(0, 255, 200, 0.3), transparent);
      opacity: 0.55;
      pointer-events: none;
    }

    .panel-section::before {
      top: 0;
      transform: translateY(-1px);
    }

    .panel-section::after {
      bottom: 0;
      transform: translateY(1px);
    }

    /* Demo Theater */
    #demos h2 {
      margin-bottom: 0.75rem;
    }

    #demos .section-intro {
      margin-bottom: 2.25rem;
    }

    .demo-carousel-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 1.5rem 0;
      max-width: 1400px;
      margin: 0 auto;
      overflow-x: hidden;
    }

    .demo-carousel {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0 3rem;
      scroll-snap-type: x proximity;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      align-items: stretch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .demo-carousel::-webkit-scrollbar {
      display: none;
    }

    .demo-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: 1px solid rgba(0, 255, 200, 0.45);
      color: #00ffc8;
      width: 44px;
      height: 44px;
      font-size: 1.7rem;
      cursor: pointer;
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      z-index: 10;
      border-radius: 8px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    }

    .demo-nav-btn:hover {
      background: rgba(0, 255, 200, 0.12);
      color: #00ffc8;
      transform: translateY(-50%) translateY(-1px);
      box-shadow: 0 16px 40px rgba(0, 255, 200, 0.35);
    }

    .demo-nav-prev {
      left: 0;
    }

    .demo-nav-next {
      right: 0;
    }

    .see-all-demos-btn {
      display: block;
      margin: 2rem auto 0;
      padding: 1rem 2rem;
      background: rgba(0, 255, 200, 0.06);
      border: 2px solid #00ffc8;
      border-radius: 999px;
      color: #00ffc8;
      font-family: 'SF Mono', monospace;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: none;
    }

    .see-all-demos-btn:hover {
      background: #00ffc8;
      color: #0a0a0a;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0, 255, 200, 0.35);
    }

    /* All Demos Modal */
    .all-demos-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 3, 4, 0.96);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      overflow-y: auto;
    }

    .all-demos-modal.active {
      display: flex;
    }

    .all-demos-content {
      max-width: 1400px;
      width: 100%;
      background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.08), #050707 55%);
      border: 1px solid #00ffc8;
      border-radius: 16px;
      padding: 3rem;
      position: relative;
      max-height: 90%;
      overflow-y: auto;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
    }

    .all-demos-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: #00ffc8;
      font-size: 2rem;
      cursor: pointer;
      font-weight: 700;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .all-demos-close:hover {
      transform: scale(1.15) rotate(90deg);
    }

    .all-demos-content h2 {
      color: #00ffc8;
      font-size: 2.5rem;
      margin-top: 0;
      margin-bottom: 2rem;
      font-family: 'Anton', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
    }

    .demo-categories {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .category-btn {
      padding: 0.75rem 1.5rem;
      background: rgba(0, 255, 200, 0.1);
      border: 1px solid rgba(0, 255, 200, 0.3);
      color: #00ffc8;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.25s ease;
      font-family: 'SF Mono', monospace;
    }

    .category-btn:hover,
    .category-btn.active {
      background: #00ffc8;
      color: #0a0a0a;
      box-shadow: 0 14px 36px rgba(0, 255, 200, 0.3);
    }

    .demo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2rem;
    }

    .demo-card {
      background: rgba(11, 16, 16, 0.96);
      border: 1px solid rgba(0, 255, 200, 0.18);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
      min-width: 240px;
      width: 260px;
      flex-shrink: 0;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
      display: flex;
      flex-direction: column;
      scroll-snap-align: start;
      height: 100%;
    }

    .demo-card:hover {
      border-color: #00ffc8;
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
    }

    .demo-card:nth-child(1) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/cypress.png');
    }

    .demo-card:nth-child(2) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/shiftleft.png');
    }

    .demo-card:nth-child(3) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/CICDvideo.png');
    }

    .demo-card:nth-child(4) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/PLAYWRIGHT-demo.png');
    }

    .demo-card:nth-child(5) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/apitesting.png');
    }

    .demo-card:nth-child(6) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/PHONETESTING.png');
    }

    .demo-card:nth-child(7) .demo-thumbnail {
      background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1)),
        url('../video-thumbnails/QAXAI.png');
    }

    .demo-thumbnail {
      width: 100%;
      aspect-ratio: 2 / 3;
      background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 0.6rem;
    }

    .demo-thumbnail::before {
      content: '';
      position: absolute;
      z-index: 2;
      transition: all 0.3s ease;
      inset: 0;
    }

    .demo-play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 72px;
      height: 72px;
      border: none;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.36);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    .demo-play-button::before {
      content: '';
      position: absolute;
      width: 88px;
      height: 88px;
      border-radius: 50%;
    }

    .demo-play-button img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      display: block;
    }

    .demo-card:hover .demo-play-button {
      transform: translate(-50%, -50%) scale(1.06);
      background: rgba(0, 0, 0, 0.45);
    }

    .demo-info {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      flex: 1;
      justify-content: flex-start;
    }

    .demo-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .demo-description {
      font-size: 0.88rem;
      color: #b0b0b0;
      margin: 0;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .demo-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: auto;
    }

    .tag {
      padding: 0.25rem 0.75rem;
      background: rgba(0, 255, 200, 0.1);
      border: 1px solid rgba(0, 255, 200, 0.3);
      color: #00ffc8;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Video Player Modal */
    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 3, 4, 0.96);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .video-modal.active {
      display: flex;
    }

    .video-container {
      max-width: 1200px;
      width: 100%;
      position: relative;
    }

    .video-close {
      position: absolute;
      top: -3rem;
      right: 0;
      background: none;
      border: none;
      color: #00ffc8;
      font-size: 2rem;
      cursor: pointer;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .video-close:hover {
      transform: scale(1.15);
    }

    .video-player {
      width: 100%;
      aspect-ratio: 16/9;
      background: #000;
      border: 2px solid #00ffc8;
      border-radius: 10px;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
    }

    /* Resume Modal */
    .resume-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2500;
      padding: 1.5rem;
    }

    .resume-overlay.active {
      display: flex;
    }

    .resume-modal {
      background: #0b0f0f;
      border: 1px solid rgba(255, 212, 0, 0.35);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 212, 0, 0.12);
      border-radius: 14px;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .resume-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.25rem;
      gap: 1rem;
      background: rgba(255, 212, 0, 0.06);
      border-bottom: 1px solid rgba(255, 212, 0, 0.18);
    }

    .resume-modal-title {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 800;
      color: #ffd400;
      letter-spacing: 0.5px;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .resume-modal-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .resume-modal-actions a,
    .resume-modal-actions button {
      padding: 0.6rem 1rem;
      border-radius: 8px;
      border: 1px solid rgba(255, 212, 0, 0.9);
      background: rgba(255, 212, 0, 0.14);
      color: #ffd400;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .resume-modal-actions button {
      background: rgba(255, 212, 0, 0.1);
    }

    .resume-modal-actions a:hover,
    .resume-modal-actions button:hover {
      box-shadow: 0 10px 22px rgba(255, 212, 0, 0.25);
      transform: translateY(-1px);
    }

    .resume-close {
      background: none;
      border: none;
      color: #ffd400;
      font-size: 1.4rem;
      cursor: pointer;
      padding: 0.2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      transition: background 0.2s ease;
    }

    .resume-close:hover {
      background: rgba(255, 212, 0, 0.12);
    }

    .resume-modal-body {
      padding: 1rem;
      flex: 1;
      overflow: hidden;
      background: #0d0f11;
    }

    .resume-frame {
      width: 100%;
      height: 80vh;
      border: none;
      border-radius: 10px;
      background: #0d0f11;
      box-shadow: inset 0 0 0 1px rgba(255, 212, 0, 0.08);
    }

    /* Proof Section */
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 1.75rem;
    }

    .proof-card {
      background: rgba(11, 16, 16, 0.96);
      border: 1px solid rgba(0, 255, 200, 0.16);
      border-radius: 14px;
      padding: 2rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
    }

    .proof-card:hover {
      border-color: #00ffc8;
      transform: translateY(-3px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
    }

    .mobile-proof-extra {
      display: none;
    }

    .proof-metric {
      font-size: 3.5rem;
      font-weight: 900;
      color: #00ffc8;
      line-height: 1;
      margin-bottom: 0.6rem;
    }

    .proof-label {
      font-size: 1.1rem;
      color: #ffffff;
      margin-bottom: 0.35rem;
      font-weight: 600;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .proof-description {
      font-size: 0.95rem;
      color: #b0b0b0;
      line-height: 1.5;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* AI Assisted QA tweaks */
    #ai-assisted-qa {
      padding-top: 4.25rem;
      padding-bottom: 3.25rem;
    }

    #ai-assisted-qa .proof-grid {
      gap: 1.5rem;
    }

    #ai-assisted-qa .proof-card {
      padding: 1.6rem 1.7rem;
    }

    /* Skills Carousel Section */
    #skills {
      padding-top: 3.25rem;
      background: radial-gradient(circle at 20% 20%, rgba(0, 255, 200, 0.06), rgba(6, 10, 10, 0.9) 55%);
      border: 1px solid rgba(0, 255, 200, 0.18);
      border-radius: 16px;
    }

    #skills h2 {
      margin-bottom: 0.75rem;
    }

    #skills .section-intro {
      margin-bottom: 1.75rem;
    }

    #skills .panel-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2.5rem 2rem 3rem;
      background: none;
      border: none;
      box-shadow: none;
    }

    .skills-carousel-section {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2.5rem;
      align-items: stretch;
    }

    .mobile-skills-wrapper {
      display: none;
    }

    .carousel-wrapper {
      position: relative;
      width: 100%;
      overflow: visible;
      padding: 1.5rem 0 2rem;
      min-height: 360px;
    }

      .skills-carousel {
        position: relative;
        height: auto;
        min-height: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
      }

    .skill-card {
      position: absolute;
      width: 280px;
      min-height: 360px;
      max-width: 100%;
      background: rgba(11, 16, 16, 0.98);
      border: 2px solid rgba(0, 255, 200, 0.22);
      border-radius: 14px;
      padding: 1.4rem;
      display: flex;
      flex-direction: column;
      cursor: grab;
      user-select: none;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .skill-card:active {
      cursor: grabbing;
    }

    .skill-card.center {
      z-index: 10;
      transform: translateX(0) translateY(0) scale(1);
      opacity: 1;
      border-color: #00ffc8;
      box-shadow: 0 12px 26px rgba(0, 255, 200, 0.18);
    }

    .skill-card.left {
      z-index: 5;
      transform: translateX(-18%) translateY(6px) scale(0.9) rotateY(18deg);
      opacity: 0.35;
      pointer-events: none;
    }

    .skill-card.right {
      z-index: 5;
      transform: translateX(18%) translateY(6px) scale(0.9) rotateY(-18deg);
      opacity: 0.35;
      pointer-events: none;
    }

    .skill-card.hidden {
      opacity: 0;
      pointer-events: none;
      transform: scale(0.5);
    }

    .skill-card h3 {
      color: #00ffc8;
      font-size: 1.6rem;
      margin-top: 0;
      margin-bottom: 0.75rem;
      font-weight: 700;
      font-family: 'Anton', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
    }

    .skill-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 0.75rem 0;
    }

    .skill-card li {
      color: #e0e0e0;
      padding: 0.35rem 0;
      position: relative;
      padding-left: 1.3rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.9rem;
    }

    .skill-card li::before {
      color: #00c7a5;
      content: '›';
      position: absolute;
      left: 0;
      color: #00ffc8;
      font-weight: 900;
      font-size: 1.3rem;
    }

    .skill-accordion {
      display: none;
    }

    .skill-card.open .skill-accordion {
      display: none;
    }

    .card-usage-btn {
      display: none;
      margin-top: auto;
    }

      .carousel-dots {
        display: none;
      }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(0, 255, 200, 0.2);
      border: 2px solid rgba(0, 255, 200, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot.active {
      background: #00ffc8;
      box-shadow: 0 0 15px rgba(0, 255, 200, 0.8);
      transform: scale(1.3);
    }

    .view-all-skills-btn {
      background: #00f5c8;
      color: #000;
      display: block;
      margin: 2rem auto 0;
      padding: 1rem 2.5rem;
      background: rgba(0, 255, 200, 0.06);
      border: 2px solid #00ffc8;
      border-radius: 999px;
      color: #00ffc8;
      font-family: 'SF Mono', monospace;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: none;
    }

    .view-all-skills-btn:hover {
      background: #00ffc8;
      color: #0a0a0a;
      transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(0, 255, 200, 0.38);
    }

    .mobile-skill-cta {
      display: none;
      text-align: center;
      margin-top: 1.5rem;
    }

    .mobile-skill-cta p {
      margin: 0;
      color: #e0e0e0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      text-align: center;
      font-size: 0.95rem;
    }

    .mobile-findout-btn {
      padding: 0.6rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(0, 255, 200, 0.4);
      background: rgba(0, 255, 200, 0.12);
      color: #00ffc8;
      font-family: 'SF Mono', monospace;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      cursor: pointer;
    }

    /* Skills Modal */
    .skills-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(1, 3, 4, 0.96);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      overflow-y: auto;
    }

    .skills-modal.active {
      display: flex;
    }

    .skills-modal-content {
      max-width: 1200px;
      width: 100%;
      background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.08), #050707 55%);
      border: 2px solid #00ffc8;
      border-radius: 16px;
      padding: 3rem;
      position: relative;
      max-height: 90%;
      overflow-y: auto;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
    }

    .skills-modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: #00ffc8;
      font-size: 2rem;
      cursor: pointer;
      font-weight: 700;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .skills-modal-close:hover {
      transform: scale(1.15) rotate(90deg);
    }

    .skills-modal h2 {
      color: #00ffc8;
      font-size: 2.5rem;
      margin-top: 0;
      margin-bottom: 2rem;
      font-family: 'Anton', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
    }

    .modal-skill-section {
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(0, 255, 200, 0.2);
      border-radius: 10px;
      padding: 2rem;
      margin-bottom: 2rem;
    }

    .modal-skill-section h3 {
      color: #00ffc8;
      font-size: 1.8rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      font-family: 'Anton', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .modal-skill-section h4 {
      color: #ffffff;
      font-size: 1.2rem;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 600;
    }

    .modal-skill-section ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 0.5rem;
    }

    .modal-skill-section li {
      padding: 0.5rem 0;
      color: #e0e0e0;
      position: relative;
      padding-left: 1.5rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 0.95rem;
    }

    .modal-skill-section li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: #00ffc8;
      font-weight: 900;
      font-size: 1.2rem;
    }

    .modal-skill-section p {
      color: #b0b0b0;
      line-height: 1.7;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 1rem;
      margin: 0;
    }

    /* Terminal Panel */
    .terminal-panel {
      background: #000000;
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(0, 255, 200, 0.35);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
    }

    .terminal-header {
      background: linear-gradient(135deg, rgba(0, 255, 200, 0.26), rgba(0, 255, 200, 0.12));
      padding: 0.8rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-bottom: 1px solid rgba(0, 255, 200, 0.4);
    }

    .terminal-buttons {
      display: flex;
      gap: 0.5rem;
    }

    .terminal-btn {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .terminal-btn.red {
      background: #ff5f56;
    }

    .terminal-btn.yellow {
      background: #ffbd2e;
    }

    .terminal-btn.green {
      background: #27c93f;
    }

    .terminal-title {
      color: #02110f;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .terminal-body {
      padding: 1.75rem;
      font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
      font-size: 0.9rem;
      line-height: 1.8;
      flex: 1;
      overflow-y: auto;
      background: radial-gradient(circle at top left, rgba(0, 255, 200, 0.18), #030606 60%);
    }

    .terminal-prompt {
      color: #00ffc8;
      margin-bottom: 1rem;
    }

    .terminal-output {
      color: #e0e0e0;
      white-space: pre-wrap;
      min-height: 260px;
    }

    .terminal-cursor {
      display: inline-block;
      width: 8px;
      height: 18px;
      background: #00ffc8;
      animation: blink 1s infinite;
      margin-left: 2px;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    /* Experience Section */
    .experience-item {
      background: rgba(11, 16, 16, 0.96);
      border-left: 2px solid rgba(0, 255, 200, 0.35);
      border-radius: 12px;
      padding: 2.25rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
      border-top: 1px solid rgba(0, 255, 200, 0.12);
      border-right: 1px solid rgba(0, 255, 200, 0.08);
      border-bottom: 1px solid rgba(0, 255, 200, 0.08);
    }

    .experience-item h3 {
      color: #ffffff;
      font-size: 1.6rem;
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-weight: 700;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .experience-item .company {
      color: #00ffc8;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .experience-item .dates {
      color: #808080;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .experience-item ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .experience-item li {
      padding: 0.5rem 0;
      color: #e0e0e0;
      position: relative;
      padding-left: 1.25rem;
      line-height: 1.7;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .experience-item li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: #00ffc8;
      font-weight: 900;
      font-size: 1.3rem;
    }

    /* Contact Section */
    .contact-content {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-content p {
      font-size: 1.3rem;
      color: #b0b0b0;
      margin-bottom: 3rem;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .contact-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .contact-link {
      padding: 1rem 2rem;
      background: rgba(0, 255, 200, 0.06);
      border: 2px solid #00ffc8;
      border-radius: 999px;
      color: #00ffc8;
      text-decoration: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      font-family: 'SF Mono', monospace;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    }

    .contact-link:hover {
      background: #00ffc8;
      color: #0a0a0a;
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(0, 255, 200, 0.3);
    }

    /* Repo Explorer */
    body.repo-drawer-open {
      overflow: hidden;
    }

    #repos {
      padding-top: 3rem;
    }

    #repos .section-intro {
      margin-bottom: 1.75rem;
      max-width: 920px;
    }

    .repo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
      gap: 1rem;
    }

    .repo-card {
      background: rgba(11, 16, 16, 0.96);
      border: 1px solid rgba(0, 255, 200, 0.18);
      border-radius: 12px;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      min-height: 220px;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .repo-card:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 255, 200, 0.5);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
    }

    .repo-card h3 {
      margin: 0;
      font-size: 1.06rem;
      color: #ffffff;
      font-weight: 700;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      word-break: break-word;
    }

    .repo-card-description {
      margin: 0;
      color: #b0b0b0;
      font-size: 0.9rem;
      line-height: 1.45;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      min-height: 3.9em;
    }

    .repo-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .repo-pill {
      padding: 0.22rem 0.6rem;
      border: 1px solid rgba(0, 255, 200, 0.3);
      border-radius: 999px;
      font-size: 0.72rem;
      color: #00ffc8;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      font-weight: 600;
      font-family: 'SF Mono', monospace;
      background: rgba(0, 255, 200, 0.08);
    }

    .repo-card-actions {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .repo-action-btn,
    .repo-inline-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0.5rem 0.85rem;
      border-radius: 8px;
      font-weight: 700;
      letter-spacing: 0.4px;
      font-size: 0.78rem;
      text-transform: uppercase;
      font-family: 'SF Mono', monospace;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.22s ease;
    }

    .repo-action-btn {
      border: 1px solid rgba(0, 255, 200, 0.55);
      background: rgba(0, 255, 200, 0.12);
      color: #00ffc8;
    }

    .repo-action-btn:hover {
      background: #00ffc8;
      color: #05110f;
    }

    .repo-inline-link {
      border: 1px solid rgba(224, 224, 224, 0.22);
      background: rgba(255, 255, 255, 0.03);
      color: #d4d4d4;
    }

    .repo-inline-link:hover {
      border-color: rgba(224, 224, 224, 0.4);
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
    }

    .repo-card-state {
      margin: 0;
      color: #b0b0b0;
      font-size: 0.92rem;
      line-height: 1.45;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .repo-drawer {
      position: fixed;
      inset: 0;
      display: none;
      align-items: flex-end;
      justify-content: center;
      padding: 1.2rem;
      z-index: 2600;
      background: rgba(1, 3, 4, 0.82);
      backdrop-filter: blur(2px);
    }

    .repo-drawer.active {
      display: flex;
    }

    .repo-drawer-panel {
      width: min(1100px, 100%);
      max-height: 90vh;
      background: linear-gradient(160deg, #0a0f10 0%, #060a0b 100%);
      border: 1px solid rgba(0, 255, 200, 0.28);
      border-radius: 14px;
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.62);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      animation: repoDrawerSlideIn 0.22s ease;
    }

    @keyframes repoDrawerSlideIn {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .repo-drawer-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.2rem;
      border-bottom: 1px solid rgba(0, 255, 200, 0.2);
      background: rgba(0, 255, 200, 0.04);
    }

    .repo-drawer-kicker {
      margin: 0;
      color: #00ffc8;
      font-size: 0.78rem;
      letter-spacing: 0.75px;
      text-transform: uppercase;
      font-weight: 700;
      font-family: 'SF Mono', monospace;
    }

    #repoDrawerTitle {
      margin: 0.24rem 0 0;
      color: #ffffff;
      font-size: 1.22rem;
      font-weight: 700;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      word-break: break-word;
    }

    .repo-drawer-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    #repoOpenOnGitHub {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0.5rem 0.85rem;
      border-radius: 8px;
      text-decoration: none;
      border: 1px solid rgba(0, 255, 200, 0.55);
      background: rgba(0, 255, 200, 0.1);
      color: #00ffc8;
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: 'SF Mono', monospace;
      transition: all 0.2s ease;
    }

    #repoOpenOnGitHub:hover {
      background: #00ffc8;
      color: #05110f;
    }

    .repo-drawer-close {
      border: none;
      background: rgba(255, 255, 255, 0.03);
      color: #00ffc8;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      font-size: 1.2rem;
      cursor: pointer;
      line-height: 1;
      transition: all 0.2s ease;
    }

    .repo-drawer-close:hover {
      background: rgba(0, 255, 200, 0.16);
      color: #ffffff;
    }

    .repo-drawer-body {
      padding: 1rem 1.2rem 1.2rem;
      overflow: auto;
      flex: 1;
    }

    .repo-drawer-loading {
      color: #00ffc8;
      font-size: 0.88rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: 700;
      font-family: 'SF Mono', monospace;
      display: none;
      margin-bottom: 0.9rem;
    }

    .repo-drawer-loading.active {
      display: block;
    }

    .repo-readme-content {
      color: #d7d7d7;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.62;
      font-size: 0.98rem;
      display: none;
    }

    .repo-readme-content.is-visible {
      display: block;
    }

    .repo-readme-content h1,
    .repo-readme-content h2,
    .repo-readme-content h3 {
      color: #ffffff;
      line-height: 1.25;
      margin: 1.2rem 0 0.6rem;
    }

    .repo-readme-content h1 {
      font-size: 1.55rem;
      border-bottom: 1px solid rgba(0, 255, 200, 0.22);
      padding-bottom: 0.35rem;
    }

    .repo-readme-content h2 {
      font-size: 1.28rem;
    }

    .repo-readme-content h3 {
      font-size: 1.1rem;
    }

    .repo-readme-content p {
      margin: 0.65rem 0;
      color: #cccccc;
    }

    .repo-readme-content ul,
    .repo-readme-content ol {
      padding-left: 1.35rem;
      margin: 0.65rem 0;
    }

    .repo-readme-content li {
      margin: 0.2rem 0;
    }

    .repo-readme-content a {
      color: #5effdc;
    }

    .repo-readme-content code {
      background: rgba(255, 255, 255, 0.08);
      padding: 0.12rem 0.32rem;
      border-radius: 5px;
      font-size: 0.9em;
      font-family: 'SF Mono', monospace;
    }

    .repo-readme-content pre {
      background: #05090a;
      border: 1px solid rgba(0, 255, 200, 0.16);
      border-radius: 8px;
      padding: 0.9rem;
      overflow-x: auto;
    }

    .repo-readme-content pre code {
      background: transparent;
      padding: 0;
    }

    .repo-readme-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 0.9rem 0;
      font-size: 0.9rem;
    }

    .repo-readme-content th,
    .repo-readme-content td {
      border: 1px solid rgba(255, 255, 255, 0.13);
      padding: 0.5rem 0.55rem;
      text-align: left;
    }

    .repo-readme-content img {
      max-width: 100%;
      border-radius: 8px;
      border: 1px solid rgba(0, 255, 200, 0.22);
      background: rgba(0, 0, 0, 0.2);
    }

    .accordion-toggle {
      position: absolute;
      opacity: 0;
      pointer-events: auto;
      width: 1px;
      height: 1px;
    }

    .accordion-toggle-label {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.6rem 1.2rem;
      margin: 0.25rem 0 0.75rem;
      background: rgba(0, 255, 200, 0.06);
      border: 1px solid rgba(0, 255, 200, 0.3);
      color: #00ffc8;
      border-radius: 10px;
      font-family: 'SF Mono', monospace;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .accordion-toggle-label:hover {
      background: rgba(0, 255, 200, 0.12);
    }

    .accordion-toggle-label .toggle-less {
      display: none;
    }

    .accordion-extra-proof,
    .accordion-extra-ai {
      transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease;
    }

    .proof-toggle,
    .ai-toggle {
      grid-column: 1 / -1;
      text-align: center;
      margin: 0.25rem 0 0.5rem;
    }

    .proof-toggle .toggle-less,
    .ai-toggle .toggle-less {
      display: none;
    }

    #proofAccordion:checked ~ .proof-grid .proof-toggle .toggle-more,
    #aiAccordion:checked ~ .proof-grid .ai-toggle .toggle-more {
      display: none;
    }

    #proofAccordion:checked ~ .proof-grid .proof-toggle .toggle-less,
    #aiAccordion:checked ~ .proof-grid .ai-toggle .toggle-less {
      display: inline;
    }

    /* Footer */
    footer {
      background: rgba(3, 5, 6, 0.98);
      padding: 2rem;
      text-align: center;
      color: #808080;
      border-top: 1px solid rgba(0, 255, 200, 0.3);
      font-size: 0.9rem;
      margin-top: 3rem;
      box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.45);
    }

    /* Responsive */
    @media (min-width: 900px) {
      .hero {
        padding-bottom: 20px;
      }

      .hero-stats {
        display: block;
        width: 100%;
      }

      .hero-stats-visual {
        display: block;
        max-width: none;
        width: 100vw;
        margin-left: calc((100vw - 100%) / -2);
        margin-right: calc((100vw - 100%) / -2);
        opacity: 0;
        transform-origin: 50% 50%;
        transform: perspective(1200px) translateX(-48px) translateY(18px) translateZ(-120px) scale(1.06) rotateY(6deg) rotateX(4deg) rotateZ(-0.6deg);
        filter: blur(10px) saturate(0.78) drop-shadow(0 32px 60px rgba(0, 255, 200, 0.22));
        transition:
          opacity 0.75s ease,
          transform 1s cubic-bezier(0.2, 0.8, 0.25, 1),
          filter 0.85s ease;
        will-change: transform, opacity, filter;
      }

      .hero-stats-visual.is-visible {
        opacity: 1;
        transform: perspective(1200px) translateX(0) translateY(0) translateZ(0) scale(1) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
        filter: blur(0px) saturate(1.05) drop-shadow(0 28px 90px rgba(0, 255, 200, 0.28));
      }

      .reveal-target {
        opacity: 1;
        transform: none;
        filter: none;
        transition: opacity 0.35s ease;
        will-change: opacity;
      }

      .reveal-target.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
      }

      .hero-stats .stat {
        display: none;
      }

      .stat {
        text-align: left;
      }

      .stat:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
      }

      .stat:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
      }

      .stat:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
      }

      .stat-number {
        font-size: 4.5rem;
        line-height: 0.9;
      }
    }

    @media (max-width: 1024px) {
      .skills-carousel-section {
        grid-template-columns: 1fr;
      }

      .terminal-panel {
        display: none;
      }

      .card-usage-btn {
        display: none;
      }

      .mobile-skill-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-top: 0.75rem;
      }

      .skill-card {
        width: 240px;
        min-height: 320px;
        transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
      }

      .skill-card.center {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(0.95);
      }

      .skill-card.left {
        opacity: 0.6;
        transform: translateX(-30%) translateY(4px) scale(0.86) rotateY(16deg);
      }

      .skill-card.right {
        opacity: 0.6;
        transform: translateX(30%) translateY(4px) scale(0.86) rotateY(-16deg);
      }
    }

    @media (max-width: 900px) {
      nav {
        padding-inline: 1.4rem;
      }

      nav ul {
        gap: 1.5rem;
      }

      .hero {
        padding: 3rem 1.5rem 2.75rem;
      }

      section {
        padding: 3.75rem 1.5rem;
      }

      .panel-section {
        padding-inline: 1.5rem;
      }

      .experience-item {
        padding: 2rem 1.75rem;
        border-left: none;
        border-top: 1px solid rgba(0, 255, 200, 0.18);
      }

      .experience-item li {
        padding: 0.5rem 0;
        padding-left: 1.15rem;
      }

      .repo-drawer {
        padding: 0.8rem;
      }

      .repo-drawer-header {
        flex-direction: column;
      }

      .repo-drawer-actions {
        width: 100%;
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      #proof,
      #ai-assisted-qa {
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
        padding-left: 1.4rem;
        padding-right: 1.4rem;
        border-top: 1px solid rgba(0, 255, 200, 0.08);
        border-bottom: 1px solid rgba(0, 255, 200, 0.08);
      }

      .mobile-proof-extra {
        display: block;
      }

      #proof .section-intro,
      #ai-assisted-qa .section-intro {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
      }

      #proof h2,
      #ai-assisted-qa h2 {
        margin-top: 0;
      }

      #proof .proof-grid,
      #ai-assisted-qa .proof-grid,
      .proof-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 0.18rem;
        align-items: stretch;
        padding-bottom: 0.05rem;
        margin-bottom: 0;
      }

      #proof .proof-card,
      #ai-assisted-qa .proof-card,
      .proof-card {
        padding: 1.2rem 1.2rem;
        margin: 0;
        border-radius: 8px;
        order: 1;
        text-align: center;
      }

      .repo-grid {
        grid-template-columns: 1fr;
      }

      .repo-card {
        min-height: auto;
      }

      #proof .proof-metric {
        font-size: 3rem;
        margin-bottom: 0.35rem;
      }

      #proof .proof-label,
      #ai-assisted-qa .proof-label {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
        line-height: 1.3;
        display: inline-block;
      }

      #proof .proof-description,
      #ai-assisted-qa .proof-description {
        font-size: 0.95rem;
        line-height: 1.65;
        text-align: center;
      }

      #proof .proof-metric {
        font-size: 1.05rem;
        font-weight: 800;
        color: #00ffc8;
        margin: 0 0.35rem 0 0;
        display: inline-block;
        vertical-align: middle;
      }

      .all-demos-content h2 {
        font-size: 1.6rem;
        white-space: nowrap;
        line-height: 1.1;
        text-align: center;
      }

      #skills .panel-section {
        padding: 1rem !important;
        max-width: 100% !important;
        background: none;
        border: none;
        box-shadow: none;
      }

      nav {
        padding: 0.2rem 1.25rem;
      }

      nav ul {
        gap: 0.35rem 0.85rem;
        max-height: none;
        overflow: visible;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
      }

      nav a {
        font-size: 0.68rem;
        letter-spacing: 1.1px;
        padding: 0.2rem 0.15rem;
      }
      
      .accordion-toggle-label {
        display: none;
      }

      #navToggle,
      .nav-toggle {
        display: none !important;
      }

      #skills .panel-section {
        max-width: 100%;
        margin: 0;
        padding: 2rem 1.25rem 2.5rem;
        background: none;
        border: none;
        box-shadow: none;
      }

    /* Fixed: Ensure padding and border are zero when hidden to remove gap */
    #proof .proof-grid .accordion-extra-proof,
    #ai-assisted-qa .proof-grid .accordion-extra-ai {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      margin: 0;
      padding: 0 !important;
      border: none !important;
      pointer-events: none;
      transition: max-height 0.45s ease-in-out, opacity 0.35s ease-in-out, margin 0.35s ease-in-out, padding 0.35s ease-in-out;
    }

    /* Fixed: Restore padding and border when checked */
      #proof #proofAccordion:checked ~ .proof-grid .accordion-extra-proof {
        max-height: 2000px;
        opacity: 1;
        margin-top: 0.15rem;
        padding: 1.2rem 1.2rem !important;
        border: 1px solid rgba(0, 255, 200, 0.16) !important;
        pointer-events: auto;
        transition: max-height 0.45s ease-in-out, opacity 0.35s ease-in-out, margin 0.35s ease-in-out, padding 0.35s ease-in-out;
      }

      #aiAccordion:checked ~ .proof-grid .accordion-extra-ai {
        max-height: 2000px;
        opacity: 1;
        margin-top: 0.15rem;
        padding: 1.2rem 1.2rem !important;
        border: 1px solid rgba(0, 255, 200, 0.16) !important;
        pointer-events: auto;
        transition: max-height 0.45s ease-in-out, opacity 0.35s ease-in-out, margin 0.35s ease-in-out, padding 0.35s ease-in-out;
      }

    #proof .proof-card.accordion-extra-proof,
    .proof-card.accordion-extra-ai {
      order: 2;
    }

      .accordion-toggle-label {
        width: auto;
        align-self: center;
      }

      .accordion-toggle-label.proof-toggle,
      .accordion-toggle-label.ai-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
        margin-bottom: 0.02rem;
        background: rgba(10, 15, 15, 0.8);
        border: 1px solid rgba(0, 255, 200, 0.35);
        color: #00ffc8;
        border-radius: 999px;
        padding: 0.45rem 0.82rem;
        font-size: 0.7rem;
        gap: 0.5rem;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
        order: 3;
        align-self: center;
      }

      .accordion-toggle-label.proof-toggle::after,
      .accordion-toggle-label.ai-toggle::after {
        content: '▼';
        font-size: 0.9rem;
        line-height: 1;
        color: rgba(0, 255, 200, 0.85);
        background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.2));
        border: 1px solid rgba(0, 255, 200, 0.35);
        border-radius: 50%;
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 0 12px rgba(0, 255, 200, 0.15);
      }

      #proofAccordion:checked ~ .proof-grid .proof-toggle::after,
      #aiAccordion:checked ~ .proof-grid .ai-toggle::after {
        content: '▲';
      }

      #ai-assisted-qa {
        padding-top: 0.2rem;
      }

      .skills-carousel-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
      }

      .carousel-wrapper {
        order: 1;
        width: 100vw;
        margin-left: calc(-1 * (100vw - 100%) / 2);
        padding: 0;
        overflow: visible;
        height: auto;
        min-height: 300px;
      }

      .skills-carousel {
        position: relative;
        width: 100vw;
        height: auto;
        min-height: 0;
        display: none;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        overflow: hidden;
      }

      .mobile-skills-wrapper {
        display: block;
        width: 100vw;
        margin-left: calc(-1 * (100vw - 100%) / 2);
        overflow: visible;
        padding: 0;
      }

      .mobile-skills-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.75rem 20px 1rem;
        scroll-padding-inline: 20px;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        -webkit-mask-repeat: initial;
        mask-repeat: initial;
        -webkit-mask-size: auto;
        mask-size: auto;
      }

      .mobile-skill-slide {
        flex: 0 0 68vw;
        max-width: 320px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        display: flex;
        justify-content: center;
      }

      .mobile-skill-slide img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
        object-fit: contain;
      }

      .mobile-skill-cta {
        display: none;
      }

      .mobile-skill-cta p {
        padding: 0.1rem 1rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        margin: 0 auto;
        display: block;
      }

      .view-all-skills-btn {
        margin-top: 0.5rem;
      }

      .skill-card {
        display: none;
      }

      .terminal-panel {
        display: none !important;
      }

      .hero {
        padding: 2.25rem 1.5rem 1.6rem;
      }

      .hero h1 {
        font-size: 2.3rem;
        line-height: 1.15;
        max-width: 18ch;
      }

      .hero-proof {
        display: none;
      }

      .hero-subtext {
        font-size: 1.1rem;
      }

      .hero-stats {
        gap: 1.5rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }

      section {
        padding: 2.4rem 1.5rem;
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
      }

      section h2 {
        font-size: 2rem;
      }

      .demo-carousel-wrapper {
        max-width: 100%;
        padding: 0.35rem 0 1.45rem;
        perspective: 1200px;
        overflow: visible;
      }

      .demo-nav-btn {
        display: none !important;
      }

      .demo-carousel.demo-mobile-3d {
        position: relative;
        padding: 0;
        gap: 0;
        overflow: visible;
        min-height: 430px;
        transform-style: preserve-3d;
        touch-action: pan-y;
      }

      .demo-carousel.demo-mobile-3d .demo-card {
        position: absolute;
        top: 16px;
        left: 50%;
        width: min(56vw, 210px);
        min-width: 0;
        max-width: none;
        margin-left: calc(min(56vw, 210px) / -2);
        border-radius: 16px;
        transform-style: preserve-3d;
        transition: transform 0.34s cubic-bezier(0.2, 0.7, 0.25, 1);
        border: 1px solid rgba(0, 255, 200, 0.26);
        background: linear-gradient(165deg, rgba(7, 10, 10, 0.98), rgba(0, 0, 0, 0.96));
        box-shadow: 0 30px 46px rgba(0, 0, 0, 0.62), 0 10px 0 rgba(0, 0, 0, 0.45);
        will-change: transform;
        cursor: grab;
      }

      .demo-carousel.demo-mobile-3d .demo-card:active {
        cursor: grabbing;
      }

      .demo-carousel.demo-mobile-3d .demo-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: inset -14px 0 22px rgba(0, 0, 0, 0.55), inset 2px 0 2px rgba(255, 255, 255, 0.08);
        pointer-events: none;
      }

      .demo-carousel.demo-mobile-3d .demo-card::before {
        content: '';
        position: absolute;
        right: -7px;
        top: 6px;
        bottom: 6px;
        width: 8px;
        border-radius: 0 10px 10px 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.95));
        transform: rotateY(28deg);
        transform-origin: left center;
        pointer-events: none;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-thumbnail {
        margin-bottom: 0;
        background-size: contain;
        background-position: center;
        transition: filter 0.35s ease;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-thumbnail::before {
        display: none;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-play-button {
        width: 84px;
        height: 84px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.78);
        transition: opacity 0.25s ease, transform 0.25s ease;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-play-button::before {
        width: 96px;
        height: 96px;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-play-button img {
        width: 50px;
        height: 50px;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-info {
        padding: 0.85rem 0.9rem 1rem;
      }

      .demo-carousel.demo-mobile-3d .demo-card .demo-description,
      .demo-carousel.demo-mobile-3d .demo-card .demo-tags {
        display: none;
      }

      .demo-carousel.demo-mobile-3d .demo-card.is-center {
        border-color: rgba(0, 255, 200, 0.75);
        box-shadow: 0 35px 52px rgba(0, 0, 0, 0.65), 0 0 36px rgba(0, 255, 200, 0.22);
      }

      .demo-carousel.demo-mobile-3d .demo-card.is-center .demo-thumbnail {
        background-size: contain;
        filter: saturate(1.08) brightness(1.06);
      }

      .demo-carousel.demo-mobile-3d .demo-card.is-center .demo-thumbnail::before {
        display: none;
      }

      .demo-carousel.demo-mobile-3d .demo-card.is-center .demo-play-button {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }

      .demo-carousel.demo-mobile-3d .demo-card.is-adjacent-left,
      .demo-carousel.demo-mobile-3d .demo-card.is-adjacent-right {
        animation: demoTapeWiggle 0.95s ease-in-out infinite alternate;
      }

      @keyframes demoTapeWiggle {
        0% {
          transform: translate3d(var(--dx, 0), var(--dy, 0), var(--dz, 0)) rotateY(var(--ry, 0deg)) rotateZ(calc(var(--rz, 0deg) - 0.7deg)) scale(var(--scale, 1));
        }
        100% {
          transform: translate3d(var(--dx, 0), calc(var(--dy, 0) - 1.8px), var(--dz, 0)) rotateY(var(--ry, 0deg)) rotateZ(calc(var(--rz, 0deg) + 0.7deg)) scale(var(--scale, 1));
        }
      }

      .see-all-demos-btn {
        margin-top: 2.55rem;
        position: relative;
        z-index: 30;
      }

      .proof-grid {
        grid-template-columns: 1fr;
      }

      .terminal-body {
        padding: 1.5rem;
        font-size: 0.85rem;
      }

      .media-container {
        max-width: 100%;
      }

      .intro-media {
        margin-bottom: 2rem;
      }

      .cta-buttons {
        justify-content: center;
        gap: 1.25rem;
        margin-top: 1rem;
      }

      #demos {
        padding-top: 1.6rem;
        padding-bottom: 1.8rem;
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
      }

      #demos .panel-section {
        box-shadow: none;
      }

      #ai-assisted-qa {
        padding-top: 0.35rem;
        padding-bottom: 1.6rem;
      }

      #skills {
        padding-top: 3rem;
      }

      #proof {
        padding-top: 1.6rem;
        padding-bottom: 0.8rem;
      }
    }

    @media (min-width: 769px) {
      nav,
      .hero,
      section {
        padding-left: clamp(1.9rem, 2.6vw, 2.6rem);
        padding-right: clamp(1.9rem, 2.6vw, 2.6rem);
      }

      .accordion-toggle-label {
        display: none !important;
      }

      .hero h1 {
        white-space: normal;
        max-width: 26ch;
        line-height: 1.03;
        margin-bottom: 1.25rem;
      }

      #proof {
        padding-top: 5px;
      }
      #ai-assisted-qa {
        padding-top: 5px;
      }

      .accordion-extra-proof,
      .accordion-extra-ai {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 2rem !important;
        pointer-events: auto !important;
      }

      .skill-card li::before {
        content: none;
        display: none;
      }
    }

    /* Mobile overrides */
    @media (max-width: 768px) {
      .carousel-wrapper {
        padding-top: 2px;
        min-height: 360px;
        height: auto;
        overflow: visible;
      }

      .skill-card {
        width: 72vw;
        max-width: 280px;
        min-height: 260px;
        padding: 1rem 1.25rem 1.25rem;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
      }

      .skills-modal {
        padding: 1rem;
        align-items: center;
      }

      .skills-modal-content {
        --modal-bg: #050707;
        width: min(92vw, 520px);
        max-width: 92vw;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 14px;
        padding: 1rem 1rem 1.25rem;
        margin: 0 auto;
      }

      .skills-modal-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: rgba(5, 7, 7, 0.95);
        padding: 0.2rem 0.55rem;
        border-radius: 999px;
        font-size: 1.2rem;
        z-index: 15;
      }

      .skills-modal h2 {
        font-size: 1.25rem;
        margin: 0.2rem 0 0.9rem;
        text-align: left;
        letter-spacing: 1px;
        padding-right: 2.2rem;
      }

      .modal-skill-section {
        display: none;
      }

      .skills-modal-mobile {
        display: grid;
        gap: 0.75rem;
      }

      .skills-accordion-item {
        border: 1px solid rgba(0, 255, 200, 0.2);
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.35);
        overflow: hidden;
      }

      .skills-accordion-toggle {
        width: 100%;
        border: none;
        background: transparent;
        color: #00ffc8;
        font-family: 'Anton', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 1rem;
        padding: 0.75rem 0.9rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
      }

      .skills-accordion-chevron {
        color: #00ffc8;
        font-size: 1rem;
        transition: transform 0.25s ease;
      }

      .skills-accordion-item.open .skills-accordion-chevron {
        transform: rotate(180deg);
      }

      .skills-accordion-panel {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.35s ease;
        padding: 0 0.9rem;
      }

      .skills-accordion-item.open .skills-accordion-panel {
        max-height: 1200px;
        opacity: 1;
        padding-bottom: 0.9rem;
      }

      .skills-accordion-list {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 0.75rem;
        display: grid;
        gap: 0.25rem;
      }

      .skills-accordion-list li {
        color: #e0e0e0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: 0.88rem;
        padding-left: 1.1rem;
        position: relative;
      }

      .skills-accordion-list li::before {
        content: '›';
        position: absolute;
        left: 0;
        color: #00ffc8;
        font-weight: 900;
      }

      .skills-accordion-exp {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 0.6rem;
      }

      .skill-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        position: relative;
        color: #b0b0b0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: 0.86rem;
        line-height: 1.55;
        margin: 0;
      }

      .skill-desc::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1.2em;
        background: linear-gradient(to bottom, transparent, var(--modal-bg));
        transition: opacity 0.2s ease;
      }

      .skills-accordion-item.expanded .skill-desc {
        -webkit-line-clamp: unset;
      }

      .skills-accordion-item.expanded .skill-desc::after {
        opacity: 0;
      }

      .skill-desc-toggle {
        width: 100%;
        margin-top: 0.5rem;
        border: none;
        background: none;
        color: #00ffc8;
        font-family: 'SF Mono', monospace;
        font-size: 0.74rem;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        padding: 0.3rem 0;
      }

      .skill-card.center {
        transform: translateX(-50%) translateY(0) scale(1);
      }

      .skill-card ul li {
        text-align: center;
      }

      .skill-card ul li::before,
      .skill-card ul li::after {
        display: none;
      }
    }

    @media (min-width: 769px) {
      .scroll-fade-target {
        will-change: opacity;
        transition: opacity 220ms ease-out;
      }
    }

/* ---- inline style block 2 from index.html ---- */

@view-transition { navigation: auto; }
