      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --bg: #ece9e4;
        --text: #111111;
        --muted: #6d6d6d;
        --border: rgba(255, 255, 255, 0.35);
        --glass: rgba(255, 255, 255, 0.35);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
        animation: fadePage 1s ease;
      }

      @keyframes fadePage {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* background */

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        background:
          radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 30%),
          radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.35), transparent 35%),
          radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 50%);
        z-index: -2;
      }

      body::after {
        content: "";
        position: fixed;
        inset: 0;
        backdrop-filter: blur(120px);
        z-index: -1;
      }

      .container {
        width: 100%;
        max-width: 900px;
        margin: auto;
        padding: 30px 20px 80px;
      }

      /* glass */

      .glass {
        background: var(--glass);
        border: 1px solid var(--border);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        box-shadow:
          0 10px 40px rgba(0, 0, 0, 0.06),
          inset 0 1px 0 rgba(255, 255, 255, 0.45);

        border-radius: 24px;
      }

      /* nav */

      nav {
        position: sticky;
        top: 20px;
        z-index: 1000;
        margin-bottom: 70px;
        padding: 16px 22px;

        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: -0.02em;
      }

      .nav-links {
        display: flex;
        gap: 18px;
        list-style: none;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-size: 0.9rem;
        transition: 0.25s ease;
      }

      .nav-links a:hover {
        color: var(--text);
      }

      /* hero */

      .hero {
        padding: 70px 50px;
        margin-bottom: 30px;
        overflow: hidden;
        position: relative;
      }

      .hero::before {
        content: "RA";
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.18);
        pointer-events: none;
        letter-spacing: -0.08em;
      }

      .hero span,
      .hero h1,
      .hero p {
        opacity: 0;
        transform: translateY(30px);
        animation: reveal 0.8s ease forwards;
      }

      .hero h1 {
        animation-delay: 0.15s;
      }

      .hero p {
        animation-delay: 0.3s;
      }

      @keyframes reveal {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero span {
        color: var(--muted);
        font-size: 0.9rem;
      }

      .hero h1 {
        font-size: clamp(3.2rem, 7vw, 5.5rem);
        line-height: 0.95;
        letter-spacing: -0.08em;
        margin: 18px 0 22px;
        max-width: 650px;
      }

      .hero p {
        max-width: 560px;
        color: var(--muted);
        line-height: 1.8;
        font-size: 1rem;
      }

      /* sections */

      section {
        margin-bottom: 28px;
        padding: 35px;
      }

      .section-title {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--muted);
        margin-bottom: 24px;
      }

      /* about */

      .about p {
        color: var(--muted);
        line-height: 1.9;
        max-width: 700px;
      }

      /* projects */

      .projects {
        display: grid;
        gap: 20px;
      }

      .project {
        overflow: hidden;
        transition:
          transform 0.4s ease,
          box-shadow 0.4s ease;
      }

      .project:hover {
        transform: translateY(-6px);
        box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.08),
          inset 0 1px 0 rgba(255, 255, 255, 0.55);
      }

      .project-image {
        aspect-ratio: 1920 / 990;
        width: 100%;
        overflow: hidden;
        background: #ddd;
      }

      .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }

      .project:hover img {
        transform: scale(1.05);
      }

      .project-content {
        padding: 28px;
      }

      .project-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        letter-spacing: -0.03em;
      }

      .project-content p {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 0.95rem;
      }
      .project a{
        text-decoration:none;
        color:inherit;
        display:block;
  }

      .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .tag {
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.4);
        font-size: 0.78rem;
        color: var(--muted);
        backdrop-filter: blur(10px);
      }

      /* stack */

      .stack-list {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
      }

      .stack-item {
        padding: 14px 18px;
        border-radius: 18px;
        font-size: 0.9rem;
        transition: 0.3s ease;
      }

      .stack-item:hover {
        transform: translateY(-4px);
      }

      /* contact */

      .contact p {
        color: var(--muted);
        margin-bottom: 24px;
      }

      .contact-links {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
      }

      .contact-links a {
        text-decoration: none;
        color: var(--text);
        padding: 13px 18px;
        border-radius: 999px;
        transition:
          transform 0.3s ease,
          background 0.3s ease;
      }

      .contact-links a:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.55);
      }

      /* footer */

      footer {
        padding-top: 25px;
        text-align: center;
        color: var(--muted);
        font-size: 0.85rem;
      }

      /* reveal */

      .hidden {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }

      .show {
        opacity: 1;
        transform: translateY(0);
      }

      /* responsive */

      @media (max-width: 700px) {
        .hero {
          padding: 45px 28px;
        }

        .hero::before {
          display: none;
        }

        section {
          padding: 26px;
        }

        nav {
          flex-direction: column;
          align-items: flex-start;
          gap: 18px;
        }

        .nav-links {
          flex-wrap: wrap;
        }

        .project-image {
          height: 200px;
        }

        .hero h1 {
          font-size: 3.2rem;
        }
    }