   .hero {
      position: relative;
      padding: 70px 0 60px;
      border-bottom: 1px solid rgba(15,23,42,0.7);
      background:
        radial-gradient(circle at top left, rgba(250,25,23,0.35), transparent 65%),
        radial-gradient(circle at bottom right, rgba(201,155,76,0.35), transparent 60%),
        radial-gradient(60% 60% at 70% 10%, rgba(168,85,247,0.12), transparent 60%);
      box-shadow: 0 25px 60px rgba(0,0,0,0.7);
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, rgba(148,163,184,0.18), transparent 65%);
      mix-blend-mode: screen;
      opacity: 0.8;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
      gap: 36px;
      align-items: center;
    }

    @media (min-width: 640px) {
      .hero-inner {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-inner {
        padding: 0 2rem;
      }
    }

    .hero-left,
    .hero-right {
      position: relative;
      z-index: 1;
    }

    .hero-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9ca3af;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: 2.4rem;
      line-height: 1.2;
      margin-bottom: 10px;
      font-weight: 600;
      color: #f9fafb;
    }

    .hero-highlight {
      background: linear-gradient(90deg, #fa1917, #ff4444);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 1rem;
      color: #9ca3af;
      max-width: 460px;
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
    }

    .hero-pill {
      font-size: 0.75rem;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(31, 41, 51, 0.5);
      background: rgba(15, 23, 42, 0.9);
      color: #9ca3af;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      font-size: 0.9rem;
      border-radius: 999px;
      border: 1px solid #fa1917;
      background: rgba(250, 25, 23, 0.18);
      color: #f9fafb;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.2s;
    }

    .hero-btn:hover {
      background: rgba(250, 25, 23, 0.25);
      border-color: #ff4444;
    }

    .hero-btn.secondary {
      border-color: rgba(31, 41, 51, 0.5);
      background: rgba(15, 23, 42, 0.9);
      color: #9ca3af;
    }

    .hero-btn.secondary:hover {
      background: rgba(15, 23, 42, 1);
      color: #f9fafb;
    }

    .hero-right {
      display: grid;
      gap: 14px;
    }

    .hero-graphic-main {
      position: relative;
      border-radius: 18px;
      padding: 12px;
      background: radial-gradient(circle at top left, rgba(250, 25, 23, 0.5), rgba(15, 23, 42, 1));
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow:
        0 18px 35px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    }

    .hero-browser {
      border-radius: 14px;
      background: #020617;
      border: 1px solid #111827;
      overflow: hidden;
      font-size: 0.72rem;
    }

    .hero-browser-top {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      background: linear-gradient(90deg, #020617, #030712);
      border-bottom: 1px solid #111827;
      color: #9ca3af;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
    }

    .hero-dot:nth-child(1) { background: #ef4444; }
    .hero-dot:nth-child(2) { background: #f97316; }
    .hero-dot:nth-child(3) { background: #22c55e; }

    .hero-url {
      flex: 1;
      padding: 4px 8px;
      border-radius: 999px;
      background: #020617;
      border: 1px solid #111827;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-browser-body {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 10px;
      padding: 10px;
    }

    .hero-tech-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
    }

    .hero-tech-item {
      height: 20px;
      border-radius: 4px;
      background: linear-gradient(90deg, rgba(250, 25, 23, 0.3), rgba(250, 25, 23, 0.2));
      border: 1px solid rgba(250, 25, 23, 0.3);
    }

    .hero-tech-code {
      border-radius: 10px;
      background: radial-gradient(circle at top left, #020617, #020617 40%, #020617);
      border: 1px solid #111827;
      padding: 10px;
      font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

    .hero-tech-code-line {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 4px;
    }

    .hero-tech-code-line span {
      display: inline-block;
      height: 6px;
      border-radius: 999px;
      background: #020617;
    }

    .hero-tech-code-line span.fill-1 { width: 70%; background: linear-gradient(90deg, #fa1917, #ff4444); }
    .hero-tech-code-line span.fill-2 { width: 55%; background: linear-gradient(90deg, #ff4444, #ff6b6b); }
    .hero-tech-code-line span.fill-3 { width: 80%; background: linear-gradient(90deg, #f97316, #fa1917); }
    .hero-tech-code-line span.fill-4 { width: 45%; background: #4b5563; }
    .hero-tech-code-tag {
      color: #64748b;
      font-size: 0.7rem;
      width: 20px;
    }

    .hero-badges-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-badge {
      flex: 1;
      min-width: 120px;
      border-radius: 12px;
      padding: 8px 10px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: rgba(15, 23, 42, 0.85);
      font-size: 0.7rem;
      color: #9ca3af;
    }

    .hero-badge strong {
      display: block;
      color: #f9fafb;
      margin-bottom: 2px;
    }

    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }
      .hero-right {
        order: -1;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 50px 0 40px;
      }
      .hero-title {
        font-size: 2rem;
      }
      .hero-subtitle {
        font-size: 0.9rem;
      }
    }
	
	   .portfolio-header {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 28px;
    }

    .portfolio-header-main h1 {
      font-size: 1.8rem;
      margin-bottom: 6px;
      font-weight: 600;
      color: #f9fafb;
    }

    .portfolio-header-main p {
      color: #9ca3af;
      max-width: 520px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .portfolio-header-meta {
      margin-left: auto;
      font-size: 0.8rem;
      color: #9ca3af;
      text-align: right;
      min-width: 160px;
    }

    .portfolio-header-meta div {
      margin-bottom: 4px;
    }

    @media (max-width: 768px) {
      .portfolio-header {
        flex-direction: column;
      }
      .portfolio-header-meta {
        margin-left: 0;
        text-align: left;
      }
    }

    .tech-card {
      padding: 20px;
      border-radius: 12px;
      border: 1px solid rgba(31, 41, 55, 0.5);
      background: radial-gradient(circle at top left, rgba(250, 25, 23, 0.08), rgba(15, 23, 42, 0.9));
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .tech-card:hover {
      border-color: rgba(250, 25, 23, 0.5);
      background: radial-gradient(circle at top left, rgba(250, 25, 23, 0.12), rgba(15, 23, 42, 0.95));
      transform: translateY(-2px);
    }

    .tech-icon {
      font-size: 2rem;
      color: #fa1917;
      margin-bottom: 4px;
    }

    .tech-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: #f9fafb;
    }

    .tech-category {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .impact-card {
      padding: 20px;
      border-radius: 12px;
      border: 1px solid rgba(31, 41, 55, 0.5);
      background: radial-gradient(circle at top left, rgba(250, 25, 23, 0.08), rgba(15, 23, 42, 0.9));
      transition: all 0.3s ease;
    }

    .impact-card:hover {
      border-color: rgba(250, 25, 23, 0.5);
      background: radial-gradient(circle at top left, rgba(250, 25, 23, 0.12), rgba(15, 23, 42, 0.95));
      transform: translateY(-2px);
    }

    .impact-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #f9fafb;
      margin-bottom: 6px;
    }

    .impact-description {
      font-size: 0.75rem;
      color: #9ca3af;
      line-height: 1.4;
    }

    .cta-container {
      padding: 48px;
      border-radius: 16px;
      border: 1px solid rgba(31, 41, 55, 0.5);
      background: radial-gradient(circle at top left, rgba(250, 25, 23, 0.12), rgba(15, 23, 42, 0.95));
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-container::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(250, 25, 23, 0.08), transparent 70%);
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 600;
      color: #f9fafb;
      margin-bottom: 12px;
    }

    .cta-description {
      font-size: 1rem;
      color: #9ca3af;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto 32px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      align-items: center;
    }

    @media (max-width: 768px) {
      .cta-container {
        padding: 32px 24px;
      }
      .cta-title {
        font-size: 1.6rem;
      }
    }