/* import inter  */
      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
      * {
        font-family: "Inter", sans-serif;
      }
      /* Logo interaction styles */
      .logo-wrap {
        perspective: 800px;
        display: inline-block;
      }
      .logo {
        transition: transform 160ms cubic-bezier(0.2, 0.9, 0.2, 1),
          filter 220ms ease, box-shadow 220ms ease;
        transform-origin: center;
        will-change: transform;
      }
      .logo-wrap .glow {
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        pointer-events: none;
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.06),
          0 0 0 0 rgba(99, 102, 241, 0);
        opacity: 0;
        transition: opacity 220ms ease, box-shadow 300ms ease;
      }
      .logo-wrap:hover .glow {
        opacity: 1;
        box-shadow: 0 18px 40px rgba(99, 102, 241, 0.15);
      }

      /* subtle pulsing glow while hovered */
      @keyframes pulseGlow {
        0% {
          box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
        }
        50% {
          box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }
        100% {
          box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
        }
      }
      .logo-wrap:hover .glow {
        animation: pulseGlow 1.6s ease-in-out infinite;
      }

      /* Minimal attachment hero CSS: layout handled with Tailwind utilities below. */
      .attachment-hero {
        background: transparent;
      }

      /* Decorative element behind the photo (small fallback) */
      .photo-deco {
        pointer-events: none;
      }
      /* Skills grid + pill card styles */
      .skills-section {
        padding: 3rem 1rem;
      }

      .skill-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        align-items: center;
        justify-items: center;
      }

      /* single pill-like skill card */
      .skill-card {
        width: 260px;
        height: 72px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #0f1720;
        background: #f3f4f6; /* default neutral color for items beyond the explicit variants */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
        transform: rotate(-6deg);
        transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
          box-shadow 220ms;
        padding: 0 1.5rem;
        text-align: center;
        white-space: nowrap;
      }

      .skill-card:hover {
        transform: rotate(-4deg) translateY(-6px) scale(1.02);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      }

      /* nth-child color variants */
      .skill-grid .skill-card:nth-child(1) {
        background: #fbcfe8;
      }
      .skill-grid .skill-card:nth-child(2) {
        background: #fde68a;
      }
      .skill-grid .skill-card:nth-child(3) {
        background: #a5b4fc;
      }
      .skill-grid .skill-card:nth-child(4) {
        background: #86efac;
      }
      .skill-grid .skill-card:nth-child(5) {
        background: #fecaca;
      }
      .skill-grid .skill-card:nth-child(6) {
        background: #fdba74;
      }

      /* make grid responsive */
      @media (max-width: 1024px) {
        .skill-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 640px) {
        .skill-grid {
          grid-template-columns: 1fr;
        }
        .skill-card {
          width: 92%;
          transform: rotate(0deg);
        }
      }
      /* Rotating emoji (bottom-left) */
      .emoji-rot {
        position: absolute;
        width: 56px;
        height: 56px;
        display: block;
        transform-origin: 50% 50%;
        z-index: 40;
        will-change: transform;
        animation: spin-slow 9s linear infinite;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
        pointer-events: none;
      }

      @keyframes spin-slow {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      /* Respect users who prefer reduced motion */
      @media (prefers-reduced-motion: reduce) {
        .emoji-rot {
          animation: none;
        }
      }

      /* smaller emoji on very small screens */
      @media (max-width: 420px) {
        .emoji-rot {
          width: 40px;
          height: 40px;
          left: 0.75rem;
          bottom: 0.5rem;
        }
      }

      /* border-flare places emoji slightly outside the container edge */
      .emoji-rot.border-flare {
        left: -18px;
        bottom: -18px;
      }

      @media (max-width: 420px) {
        .emoji-rot.border-flare {
          left: -12px;
          bottom: -12px;
        }
      }
      /* Reusable pill header for sections */
      :root {
        --section-pill-bg: #fbcfe8; /* pastel pink */
        --section-pill-color: #0f1720; /* dark text */
      }
      .section-pill-header {
        display: inline-block;
        background: var(--section-pill-bg);
        color: var(--section-pill-color);
        padding: 0.5rem 1rem;
        border-radius: 999px;
        font-weight: 900;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        margin-bottom: 1rem;
      }
      /* Projects (work) section */
      .projects-section {
        padding: 3rem 1rem;
      }

      .project-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        align-items: stretch;
      }

      .project-card {
        width: 100%;
        border-radius: 18px;
        padding: 1rem;
        display: flex;
        gap: 1rem;
        align-items: center;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
        transform: rotate(-4deg);
        transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
          box-shadow 220ms;
        color: #0f1720;
        background: #f3f4f6; /* default */
      }

      .project-card:hover {
        transform: rotate(-2deg) translateY(-6px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
      }

      .project-thumb {
        width: 120px;
        height: 84px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
      }
      .project-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .project-meta h4 {
        margin: 0 0 6px 0;
        font-size: 1.05rem;
        font-weight: 800;
      }
      .project-meta p {
        margin: 0;
        opacity: 0.95;
      }
      .project-meta a {
        display: inline-block;
        margin-top: 8px;
        color: inherit;
        text-decoration: underline;
        font-weight: 700;
      }

      /* nth-child color accents for project cards */
      .project-grid .project-card:nth-child(1) {
        background: #fbcfe8;
      }
      .project-grid .project-card:nth-child(2) {
        background: #fde68a;
      }
      .project-grid .project-card:nth-child(3) {
        background: #a5b4fc;
      }
      .project-grid .project-card:nth-child(4) {
        background: #86efac;
      }
      .project-grid .project-card:nth-child(5) {
        background: #fecaca;
      }
      .project-grid .project-card:nth-child(6) {
        background: #fdba74;
      }

      @media (max-width: 1024px) {
        .project-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 640px) {
        .project-grid {
          grid-template-columns: 1fr;
        }
        .project-card {
          transform: rotate(0deg);
        }
      }

      /* Experience list (company + year) */
      .experience-section {
        padding: 2rem 1rem;
      }
      .exp-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .exp-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 999px;
        background: #f9fafb;
        color: #000;
        box-shadow: none;
        transform: rotate(-6deg);
      }
      @media (max-width: 640px) {
        .exp-item {
          transform: rotate(0deg);
        }
      }

      /* Flat contact + footer styles to match dark UI (no heavy shadows, subtle borders) */
      .contact-card {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.04);
        box-shadow: none;
      }
      .contact-email {
        font-size: 1.125rem;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      .contact-note {
        color: rgba(255, 255, 255, 0.6);
        margin-top: 0.5rem;
      }

      .social-links {
        display: flex;
        gap: 0.75rem;
        margin-top: 1rem;
      }
      .social-icon {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: transform 0.18s ease, background 0.18s, border-color 0.18s;
      }
      .social-icon:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
      }

      .footer {
        padding: 1.25rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        text-align: center;
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.95rem;
        background: transparent;
      }

      .contact-input {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.04);
        padding: 0.65rem 0.9rem;
        border-radius: 10px;
        color: #fff;
      }
      .contact-input::placeholder {
        color: rgba(255, 255, 255, 0.45);
      }

      .contact-card button {
        background: #7dd3fc; /* flat accent */
        color: #071019;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 999px;
        font-weight: 800;
      }
      .contact-card button:hover {
        opacity: 0.95;
        transform: none;
      }

      @media (min-width: 768px) {
        .contact-grid {
          display: flex;
          gap: 2rem;
          align-items: center;
          justify-content: space-between;
        }
        .contact-left {
          flex: 0 0 48%;
        }
        .contact-right {
          flex: 0 0 48%;
        }
      }