  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* ── Scroll container ── */
  .pf {
    font-family: "DM Sans", sans-serif;
    background: #0a0a0a;
    color: #f0ede8;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #c8f53b40 transparent;
  }
  .pf::-webkit-scrollbar {
    width: 6px;
  }
  .pf::-webkit-scrollbar-track {
    background: transparent;
  }
  .pf::-webkit-scrollbar-thumb {
    background: #c8f53b40;
    border-radius: 100px;
  }
  .pf::-webkit-scrollbar-thumb:hover {
    background: #c8f53b80;
  }

  .skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 1000;
    padding: 10px 16px;
    background: #c8f53b;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: top 0.2s;
  }
  .skip-link:focus {
    top: 16px;
  }


  /* ── Fixed background layers ── */
  #bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .noise {
    position: fixed;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
  }

  .accent-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
  }
  .blob1 {
    width: 400px;
    height: 400px;
    background: #c8f53b22;
    top: -100px;
    right: -80px;
    animation: blob-drift 14s ease-in-out infinite;
  }
  .blob2 {
    width: 300px;
    height: 300px;
    background: #3bf5c822;
    bottom: 100px;
    left: -60px;
    animation: blob-drift 18s ease-in-out infinite reverse;
  }
  @keyframes blob-drift {
    0%,
    100% {
      transform: translate(0px, 0px) scale(1);
    }
    25% {
      transform: translate(18px, -22px) scale(1.06);
    }
    50% {
      transform: translate(-8px, 14px) scale(0.95);
    }
    75% {
      transform: translate(24px, 8px) scale(1.03);
    }
  }

  /* ── Fixed nav ── */
  .nav {
    border-bottom: 0.5px solid #ffffff18;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0a0a0a99;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    max-width: 1800px;
    margin: 0 auto;
  }
  .logo {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .logo span {
    color: #c8f53b;
  }

  .nav-links {
    display: flex;
    gap: 28px;
  }
  .nav-links a {
    font-size: 13px;
    color: #ffffff88;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
    padding: 8px 12px;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 12px;
    width: 0;
    height: 1px;
    background: #c8f53b;
    transition: width 0.25s;
  }
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: calc(100% - 24px);
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #f0ede8;
  }

  .nav-cta {
    font-size: 13px;
    background: #c8f53b;
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* ── Full-height sections ── */
  .section {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 40px 40px;
    max-width: 1800px;
    margin: 0 auto;
    overflow: hidden;
  }

  .section-label {
    font-size: 11px;
    color: #ffffff40;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  /* ── Home ── */
  @keyframes text-shimmer {
    0% {
      background-position: -200% center;
    }
    100% {
      background-position: 200% center;
    }
  }
  @keyframes glow-pulse {
    0%,
    100% {
      text-shadow:
        0 0 8px #c8f53b40,
        0 0 20px #c8f53b20;
      color: #c8f53b;
    }
    50% {
      text-shadow:
        0 0 16px #c8f53b80,
        0 0 40px #c8f53b40;
      color: #d4ff50;
    }
  }
  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes reveal-fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .nav {
    animation: reveal-fade 0.8s ease both;
  }
  .hero-badge {
    animation: reveal-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }
  .hero-actions {
    animation: reveal-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
  }
  .scroll-arrow {
    animation: reveal-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0.5px solid #ffffff28;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    color: #ffffff88;
    margin-bottom: 32px;
    width: fit-content;
  }
  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8f53b;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(0.7);
    }
  }

  #home h1 {
    font-family: "Syne", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 600px;
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 40%,
      #c8f53b 50%,
      #ffffff 60%,
      #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
      reveal-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both,
      text-shimmer 6s ease-in-out 1.5s infinite;
  }
  #home h1 em {
    font-style: italic;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    -webkit-text-fill-color: #c8f53b;
    animation: glow-pulse 3s ease-in-out 2s infinite;
  }
  .hero-sub {
    font-size: 16px;
    color: #ffffff70;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 40px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .hero-sub {
    max-width: 420px;
    font-size: 14px;
    color: #ffffff40;
    line-height: 1.7;
    margin-top: 24px;
  }
  .btn-primary {
    background: #f0ede8;
    color: #0a0a0a;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .btn-ghost {
    font-size: 14px;
    color: #ffffff60;
    cursor: pointer;
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid #ffffff20;
    border-radius: 100px;
    transition:
      color 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease,
      transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
      box-shadow 0.3s ease;
  }
  .btn-ghost:hover {
    color: #c8f53b;
    border-color: #c8f53b60;
    box-shadow: 0 0 20px #c8f53b15;
  }
  .btn-ghost:active {
    transform: scale(0.95);
    background: #c8f53b10;
    border-color: #c8f53b;
  }
  .scroll-arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 64px;
    font-size: 11px;
    color: #ffffff30;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
  }
  .scroll-arrow svg {
    animation: arrow-bounce 1.8s ease-in-out infinite;
  }
  @keyframes arrow-bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(5px);
    }
  }

  /* ── About ── */
  #about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
  }
  #about h2 {
    font-family: "Syne", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  #about h2 em {
    font-style: italic;
    color: #c8f53b;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
  }
  .about-bio {
    font-size: 15px;
    color: #ffffff70;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .about-bio + .about-bio {
    color: #ffffff50;
    font-size: 14px;
  }
  .bio-link {
    color: #c8f53b;
    text-decoration: none;
    border-bottom: 1px solid #c8f53b40;
    transition: border-color 0.2s;
  }
  .bio-link:hover {
    border-color: #c8f53b;
  }
  .bio-hl {
    color: #c8f53b;
  }
  .bio-em {
    font-style: italic;
  }

  .skills-col-label {
    font-size: 11px;
    color: #ffffff40;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .skills-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: max-content;
    margin: auto;
  }
  .skill-group-title {
    font-size: 11px;
    color: #ffffff35;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .skill-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .skill-chip {
    font-size: 12px;
    color: #ffffff80;
    border: 0.5px solid #ffffff20;
    padding: 5px 14px;
    border-radius: 100px;
    transition:
      border-color 0.2s,
      color 0.2s;
  }
  .skill-chip.hi {
    border: none;
    background:
      linear-gradient(#0a0a0a, #0a0a0a) padding-box,
      linear-gradient(
          135deg,
          var(--chip-from, #c8f53b),
          var(--chip-to, #3bf5c8)
        )
        border-box;
    border: 1px solid transparent;
    color: #f0ede8;
    text-shadow: 0 0 12px var(--chip-from, #c8f53b44);
  }

  .skills-groups > div:nth-child(1) .skill-chip.hi {
    --chip-from: #c8f53b;
    --chip-to: #a8e63b;
  }
  .skills-groups > div:nth-child(2) .skill-chip.hi {
    --chip-from: #f59b3b;
    --chip-to: #f5d03b;
  }
  .skills-groups > div:nth-child(3) .skill-chip.hi {
    --chip-from: #3bc8f5;
    --chip-to: #3bf5c8;
  }
  .skills-groups > div:nth-child(4) .skill-chip.hi {
    --chip-from: #c8f53b;
    --chip-to: #3bf5c8;
  }
  .skills-groups > div:nth-child(5) .skill-chip.hi {
    --chip-from: #a78bfa;
    --chip-to: #818cf8;
  }
  .skills-groups > div:nth-child(6) .skill-chip.hi {
    --chip-from: #f53b8c;
    --chip-to: #f5713b;
  }
  .skills-groups > div:nth-child(7) .skill-chip.hi {
    --chip-from: #3bf5a8;
    --chip-to: #3bc8f5;
  }

  /* ── Work ── */
  #work {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }
  .work-intro {
    font-size: 13px;
    color: #ffffff35;
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: 0.2px;
  }
  #work .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px 16px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .proj-card {
    border: 0.5px solid #ffffff14;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition:
      border-color 0.3s,
      transform 0.2s,
      opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #111;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .proj-card:hover {
    border-color: #ffffff30;
    transform: translateY(-3px);
  }
  .proj-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .proj-thumb {
    position: relative;
    overflow: hidden;
    background: #111;
  }
  .proj-thumb.t1 {
    background: linear-gradient(135deg, #0d1525, #162540);
  }
  .proj-thumb.t2 {
    background: linear-gradient(135deg, #0d1f0d, #1a3a1a);
  }
  .proj-thumb.t3 {
    background: linear-gradient(135deg, #1a100d, #2e1a0d);
  }
  .proj-thumb.t4 {
    background: linear-gradient(135deg, #0d0d1f, #1a0d3a);
  }
  .proj-thumb.t5 {
    background: linear-gradient(135deg, #1f1a0d, #3a300d);
  }
  .proj-thumb.t6 {
    background: linear-gradient(135deg, #0d1a1f, #0d2a2e);
  }
  .proj-thumb.t7 {
    background: linear-gradient(135deg, #1a0d1a, #2e0d2e);
  }
  .proj-thumb.t8 {
    background: linear-gradient(135deg, #101a10, #1a2e1a);
  }
  .proj-thumb.t9 {
    background: linear-gradient(135deg, #1a1a10, #2e2e10);
  }
  .proj-thumb.t10 {
    background: linear-gradient(135deg, #0d1a1a, #0d2a25);
  }

  .proj-thumb img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  .proj-card:hover .proj-thumb img {
    transform: scale(1.04);
  }

  .proj-tags {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
  }
  .proj-tag {
    font-size: 9px;
    letter-spacing: 0.4px;
    background: #000000bb;
    backdrop-filter: blur(4px);
    color: #ffffff90;
    padding: 3px 7px;
    border-radius: 100px;
  }
  .proj-tag.hi {
    background: #c8f53bcc;
    color: #0a0a0a;
  }
  .proj-info {
    padding: 14px 16px;
  }
  .proj-name {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .proj-desc {
    font-size: 12px;
    color: #ffffff50;
    line-height: 1.5;
  }
  .proj-stack {
    display: flex;
    align-items: center;
    padding: 0 16px 10px 16px;
    gap: 10px;
    justify-content: space-between;
  }
  .proj-stack span {
    font-size: 10px;
    background: #c8f53b18;
    color: #c8f53b;
    padding: 2px 8px;
    border-radius: 100px;
  }
  .proj-tech {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
  }
  .proj-card {
    position: relative;
  }
  .proj-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
    padding: 0 10px;
  }
  .proj-github,
  .proj-live {
    font-size: 12px;
    text-decoration: none;
    transition: color 0.25s;
    width: max-content;
    display: block;
  }
  .proj-github {
    color: rgba(255, 255, 255, 0.45);
  }
  .proj-github:hover {
    color: #c8f53b;
  }
  .proj-live {
    color: #c8f53b88;
    font-size: 11px;
  }
  .proj-live:hover {
    color: #c8f53b;
  }

  /* ── Contact ── */
  #contact {
    align-items: center;
    text-align: center;
  }
  #contact .section-label {
    align-self: flex-start;
  }
  #contact h2 {
    font-family: "Syne", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
    max-width: 500px;
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 40%,
      #c8f53b 50%,
      #ffffff 60%,
      #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 6s ease-in-out 1s infinite;
  }
  #contact h2 em {
    font-style: italic;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    -webkit-text-fill-color: #c8f53b;
    animation: glow-pulse 3s ease-in-out 1.5s infinite;
  }
  .contact-sub {
    font-size: 15px;
    color: #ffffff55;
    margin-bottom: 44px;
    line-height: 1.7;
  }
  .contact-email {
    display: inline-block;
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f0ede8;
    text-decoration: none;
    border-bottom: 1px solid #ffffff30;
    padding-bottom: 4px;
    margin-bottom: 44px;
    transition:
      color 0.2s,
      border-color 0.2s;
  }
  .contact-email:hover {
    color: #c8f53b;
    border-color: #c8f53b;
  }
  .contact-links {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
  .contact-link {
    font-size: 12px;
    color: #ffffff40;
    text-decoration: none;
    border: 0.5px solid #ffffff18;
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    transition:
      color 0.2s,
      border-color 0.2s;
  }
  .contact-link:hover {
    color: #f0ede8;
    border-color: #ffffff40;
  }
  .contact-footer {
    margin-top: 60px;
    font-size: 11px;
    color: #ffffff20;
    letter-spacing: 1px;
  }

  /* ── Custom Cursor ── */
  @media (pointer: fine) {
    * {
      cursor: none !important;
    }
  }
  #cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #c8f53b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition:
      width 0.2s,
      height 0.2s,
      opacity 0.2s;
  }
  #cursor-dot.active {
    width: 0;
    height: 0;
    opacity: 0;
  }

  #cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid #c8f53b88;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition:
      width 0.25s,
      height 0.25s,
      border-color 0.25s,
      background 0.25s;
  }
  #cursor-ring.active {
    width: 54px;
    height: 54px;
    border-color: #c8f53b;
    background: #c8f53b14;
  }
  #cursor-ring.clicking {
    width: 28px;
    height: 28px;
    background: #c8f53b30;
    border-color: #c8f53b;
    transition:
      width 0.08s,
      height 0.08s,
      background 0.08s;
  }

  /* ── Spotlight ── */
  #spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
  }

  /* ── Click burst ── */
  .click-burst {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
  }
  .c-ring {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: c-ring-out 0.55s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
  }
  .c-ring:nth-child(1) {
    border: 1.5px solid #c8f53b;
  }
  .c-ring:nth-child(2) {
    border: 1px solid #c8f53b55;
    animation-delay: 0.07s;
  }
  @keyframes c-ring-out {
    from {
      width: 4px;
      height: 4px;
      opacity: 1;
    }
    to {
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
  .c-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #c8f53b;
    border-radius: 50%;
    animation: c-dot-out 0.55s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
    animation-delay: var(--d, 0s);
  }
  @keyframes c-dot-out {
    0% {
      transform: translate(-50%, -50%) rotate(var(--a)) translateY(0);
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) rotate(var(--a)) translateY(28px);
      opacity: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    #bg-canvas,
    #spotlight,
    #cursor-dot,
    #cursor-ring,
    .click-burst {
      display: none !important;
    }
    .accent-blob {
      animation: none;
    }
    @media (pointer: fine) {
      * {
        cursor: auto !important;
      }
    }
  }

  /* ── Responsive ── */
  .about-toggle {
    display: none;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
  }
  @media (max-width: 1600px) {
    #about {
      padding-bottom: 50px;
    }
    #about h2 {
      font-size: 36px;
      margin-bottom: 18px;
    }
    .about-bio {
      font-size: 13.5px;
      margin-bottom: 14px;
    }
    .about-bio + .about-bio {
      font-size: 12.5px;
    }
    #about .about-grid > div:nth-child(1) {
      max-width: 60%;
    }
    #about .about-grid {
      grid-template-columns: 1fr;
      gap: 0;
      position: relative;
      justify-items: start;
    }
    #about .about-grid > div:nth-child(1),
    #about .about-grid > div:nth-child(2) {
      transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    }
    #about .about-grid > div:nth-child(2) {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      transform: translateX(30px);
      pointer-events: none;
    }
    #about .about-grid.show-skills > div:nth-child(1) {
      opacity: 0;
      transform: translateX(-30px);
      pointer-events: none;
      height: 0;
      overflow: hidden;
    }
    #about .about-grid.show-skills > div:nth-child(2) {
      position: relative;
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
      justify-self: center;
    }
    .about-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      max-width: 40px;
      min-height: 40px;
      max-height: 40px;
      margin-top: 32px;
      border: 1px solid #ffffff20;
      border-radius: 50%;
      cursor: pointer;
      color: #ffffff60;
      transition:
        color 0.2s,
        border-color 0.2s,
        transform 0.3s ease;
    }
    .about-toggle:hover {
      color: #c8f53b;
      border-color: #c8f53b60;
    }
    .about-toggle.flipped {
      transform: rotate(180deg);
    }
  }
  @media (max-width: 1200px) {
    #about .about-grid > div:nth-child(1) {
      max-width: 70%;
    }
  }
  @media (max-width: 1000px) {
    #about .about-grid > div:nth-child(1) {
      max-width: 80%;
    }
  }
  @media (max-width: 800px) {
    #about .about-grid > div:nth-child(1) {
      max-width: 100%;
    }
  }
  @media (max-width: 768px) {
    .nav-inner {
      padding: 20px 24px;
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }
    .nav-links {
      gap: 20px;
    }
    .nav-cta {
      display: none;
    }
    .logo {
      font-size: 16px;
    }
    .section {
      padding: 80px 24px 32px;
    }
    #home h1 {
      font-size: 44px;
      letter-spacing: -1.5px;
    }
    #about h2 {
      font-size: 34px;
      margin-bottom: 16px;
    }
    .about-bio {
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .about-bio + .about-bio {
      font-size: 12px;
    }
    #work .projects-grid {
      grid-template-columns: 1fr 1fr;
    }
    #contact h2 {
      font-size: 40px;
    }
    .about-toggle {
      min-width: 36px;
      max-width: 36px;
      min-height: 36px;
      max-height: 36px;
      margin-top: 24px;
    }
  }
  @media (max-width: 480px) {
    .nav-inner {
      padding: 16px 20px;
    }
    .logo {
      font-size: 14px;
    }
    .nav-links {
      gap: 16px;
    }
    .nav-links a {
      font-size: 11px;
    }
    .section {
      padding: 72px 20px 24px;
    }
    #about h2 {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .about-bio {
      font-size: 11px;
      line-height: 1.5;
      margin-bottom: 8px;
    }
    .about-bio + .about-bio {
      font-size: 10px;
    }
    #home h1 {
      font-size: 36px;
      letter-spacing: -1px;
    }
    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
    #work .projects-grid {
      grid-template-columns: 1fr;
    }
    #contact h2 {
      font-size: 32px;
      letter-spacing: -1px;
    }
    .about-toggle {
      min-width: 32px;
      max-width: 32px;
      min-height: 32px;
      max-height: 32px;
      margin-top: 20px;
      font-size: 14px;
    }
    .contact-email {
      font-size: 16px;
    }
    .blob1 {
      width: 260px;
      height: 260px;
    }
    .blob2 {
      width: 200px;
      height: 200px;
    }
  }