    /* ─── RESET ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    :root {
      --bg: #0c0c0c;
      --bg2: #141414;
      --bg3: #1a1a1a;
      --border: rgba(255, 255, 255, 0.08);
      --border2: rgba(255, 255, 255, 0.14);
      --text: #f2f2f2;
      --muted: #888;
      --muted2: #555;
      --red: #DD2B37;
      --font: 'Plus Jakarta Sans', sans-serif;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button {
      font-family: var(--font);
      cursor: pointer;
      border: none;
      background: none
    }

    img {
      display: block;
      max-width: 100%
    }

    ::-webkit-scrollbar {
      width: 3px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--muted2);
      border-radius: 2px
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 60px;
      background: rgba(12, 12, 12, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s, padding .3s;
    }

    nav.scrolled {
      border-color: var(--border);
      padding: 15px 60px
    }

    .nav-logo {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -.3px
    }

    .nav-logo sup {
      font-size: 9px;
      color: var(--muted);
      font-weight: 400
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
      transition: color .2s
    }

    .nav-links a:hover {
      color: var(--text)
    }

    .nav-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      font-size: 9px;
      font-weight: 700;
      color: var(--muted);
      margin-left: 5px;
      vertical-align: middle;
    }

    .nav-cta {
      padding: 9px 22px;
      border-radius: 6px;
      background: var(--red);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      transition: opacity .2s, transform .15s;
      display: inline-block;
    }

    .nav-cta:hover {
      opacity: .88;
      transform: translateY(-1px)
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 32px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      top: 63px;
      z-index: 190;
      background: rgba(12, 12, 12, .97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all
    }

    .mobile-menu a {
      font-size: 22px;
      font-weight: 700;
      color: var(--muted);
      transition: color .2s
    }

    .mobile-menu a:hover {
      color: var(--text)
    }

    .mobile-menu .m-cta {
      margin-top: 12px;
      background: var(--red);
      color: #fff;
      padding: 14px 36px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 60px 72px;
      position: relative;
      overflow: hidden;
    }

    /* Gradient bg */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 45% at 75% 25%, rgba(221, 43, 55, .08) 0%, transparent 65%),
        radial-gradient(ellipse 35% 35% at 15% 85%, rgba(255, 255, 255, .025) 0%, transparent 55%);
    }

    /* Grid lines */
    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
      opacity: .35;
    }

    /* Wireframe mockups in background */
    .hero-mockups {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 52%;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .5;
    }

    .hero-mockups svg {
      width: 100%;
      height: 100%
    }

    .hero-top-label {
      position: absolute;
      top: 110px;
      left: 60px;
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-top-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--muted2)
    }

    .hero-year-badge {
      position: absolute;
      top: 110px;
      right: 60px;
      font-size: 11px;
      color: var(--muted2);
      letter-spacing: 1px;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 100%;
    }

    /* Availability pill */
    .hero-avail {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 6px 14px 6px 10px;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .5px;
      margin-bottom: 24px;
    }

    .hero-avail .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      flex-shrink: 0;
      box-shadow: 0 0 8px #22c55e;
      animation: glow-green 2s ease-in-out infinite;
    }

    @keyframes glow-green {

      0%,
      100% {
        box-shadow: 0 0 6px #22c55e
      }

      50% {
        box-shadow: 0 0 14px #22c55e, 0 0 20px rgba(34, 197, 94, .3)
      }
    }

    /* H1 — Product + Designer same line */
    .hero-h1 {
      font-size: clamp(58px, 8vw, 120px);
      line-height: .93;
      letter-spacing: -3px;
      color: var(--text);
      margin-bottom: 28px;
    }

    .hero-h1 .line-product {
      display: block;
      font-weight: 800;
    }

    .hero-h1 .line-designer {
      display: block;
      font-weight: 200;
      font-style: italic;
      color: var(--muted);
      font-size: .88em;
    }

    /* "Product Designer" same line with weight contrast */
    .hero-h1 .hero-title-row {
      display: flex;
      align-items: baseline;
      gap: .18em;
      flex-wrap: wrap;
    }

    .hero-h1 .w-heavy {
      font-weight: 800
    }

    .hero-h1 .w-light {
      font-weight: 300;
      font-style: italic;
      color: var(--muted)
    }

    .hero-desc {
      font-size: 15px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 600px;
      margin-bottom: 36px;
    }

    .hero-desc strong {
      color: var(--text);
      font-weight: 600
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 48px
    }

    .btn-primary {
      padding: 13px 28px;
      border-radius: 6px;
      background: var(--red);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: opacity .2s, transform .15s;
    }

    .btn-primary:hover {
      opacity: .88;
      transform: translateY(-1px)
    }

    .btn-ghost {
      padding: 12px 24px;
      border-radius: 6px;
      border: 1px solid var(--red);
      color: var(--red);
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, color .2s;
    }

    .btn-ghost:hover {
      background: rgba(221, 43, 55, .1)
    }

    .hero-divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin-bottom: 32px
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-wrap: wrap
    }

    .stat-item {}

    .stat-num {
      font-size: 30px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1px;
      color: var(--text);
    }

    .stat-num span {
      color: var(--muted);
      font-weight: 300
    }

    .stat-label {
      font-size: 11px;
      color: var(--muted2);
      margin-top: 2px;
      font-weight: 500
    }

    /* ─── TICKER ─── */
    .ticker {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
      background: var(--bg2);
      overflow: hidden;
    }

    .ticker-inner {
      display: flex;
      animation: ticker 28s linear infinite;
      width: max-content
    }

    .ticker-inner:hover {
      animation-play-state: paused
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted2);
      padding: 0 24px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .ticker-item::after {
      content: '✦';
      color: var(--red);
      font-size: 7px;
      opacity: .8
    }

    /* ─── SECTIONS COMMONS ─── */
    section {
      padding: 100px 60px
    }

    .s-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .s-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #DD2B37;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .s-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: rgba(221, 43, 55, .4)
    }

    .s-h2 {
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -1.5px;
      color: var(--text);
    }

    .s-h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--muted)
    }

    .s-desc {
      font-size: 15px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 540px;
      margin-top: 16px
    }

    /* ─── ABOUT ─── */
    #about {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start
    }

    .about-body {
      font-size: 15px;
      line-height: 1.8;
      color: var(--muted);
      margin-top: 28px
    }

    .about-body p {
      margin-bottom: 18px
    }

    .about-body strong {
      color: var(--text);
      font-weight: 600
    }

    .about-cta-row {
      display: flex;
      gap: 10px;
      margin-top: 32px;
      flex-wrap: wrap
    }

    .about-chip {
      padding: 9px 18px;
      border-radius: 6px;
      border: 1px solid var(--red);
      color: var(--red);
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
    }

    .about-chip:hover {
      background: rgba(221, 43, 55, .1)
    }

    /* Right col */
    .skill-section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 12px;
      margin-top: 28px;
    }

    .skill-section-label:first-child {
      margin-top: 0
    }

    .skills-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 4px
    }

    .skill-pill {
      padding: 10px 14px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .02);
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, border-color .2s;
    }

    .skill-pill:hover {
      background: rgba(255, 255, 255, .05);
      border-color: var(--border2)
    }

    .skill-pill::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0
    }

    .tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 6px
    }

    .tag {
      padding: 4px 10px;
      border-radius: 4px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid var(--border);
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .3px;
    }

    /* ─── PROJECTS ─── */
    #projects {
      background: var(--bg)
    }

    .proj-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px
    }

    .proj-count {
      font-size: 72px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -3px;
      color: rgba(255, 255, 255, .05);
      font-style: italic
    }

    .proj-filters {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 40px
    }

    .f-btn {
      padding: 7px 14px;
      border-radius: 20px;
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .3px;
      cursor: pointer;
      transition: all .2s;
      background: none;
    }

    .f-btn:hover,
    .f-btn.active {
      background: var(--red);
      border-color: var(--red);
      color: #fff
    }

    /* Cards grid */
    .proj-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .proj-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
      position: relative;
    }

    .proj-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .5);
      border-color: rgba(255, 255, 255, .14);
    }

    /* Image at top — reveal animation */
    .proj-card-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: var(--bg3);
      cursor: zoom-in;
    }

    .proj-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
      filter: saturate(.75) brightness(.9);
      transform: translateY(-8px) scale(1.04);
      opacity: 0;
      transition: transform .7s var(--ease), filter .4s, opacity .5s;
    }

    .proj-card.img-loaded .proj-card-img-wrap img {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .proj-card:hover .proj-card-img-wrap img {
      filter: saturate(1) brightness(1);
      transform: scale(1.05);
    }

    /* Zoom icon overlay */
    .proj-img-zoom {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(12, 12, 12, .75);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(.8);
      transition: opacity .25s, transform .25s;
      pointer-events: none;
    }

    .proj-img-zoom svg {
      width: 14px;
      height: 14px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round
    }

    .proj-card:hover .proj-img-zoom {
      opacity: 1;
      transform: scale(1)
    }

    /* Card body */
    .proj-card-body {
      padding: 18px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1
    }

    .proj-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px
    }

    .proj-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--muted2);
      font-style: italic;
      letter-spacing: .5px;
      flex-shrink: 0;
      padding-top: 3px
    }

    .proj-card-arrow {
      font-size: 13px;
      color: var(--muted2);
      flex-shrink: 0;
      transition: transform .25s var(--ease), color .2s;
      padding-top: 2px;
    }

    .proj-card:hover .proj-card-arrow {
      transform: translateX(3px) translateY(-3px);
      color: var(--text)
    }

    .proj-row-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -.2px;
      line-height: 1.3;
      flex: 1;
      transition: color .2s
    }

    .proj-row-tags {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 10px
    }

    .proj-row-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted2);
      padding: 2px 7px;
      border-radius: 3px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
    }

    .proj-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }

    .proj-row-year {
      font-size: 11px;
      color: var(--muted2);
      font-weight: 600;
      font-style: italic
    }

    .proj-open-case {
      font-size: 11px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: .5px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0);
      pointer-events: none;
      transition: background .35s;
    }

    .lightbox.open {
      background: rgba(0, 0, 0, .92);
      pointer-events: all
    }

    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 88vh;
      transform: scale(.9);
      opacity: 0;
      transition: transform .4s var(--ease), opacity .35s;
    }

    .lightbox.open .lightbox-inner {
      transform: scale(1);
      opacity: 1
    }

    .lightbox-inner img {
      max-width: 90vw;
      max-height: 82vh;
      object-fit: contain;
      border-radius: 8px;
      display: block;
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .lightbox-close {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg3);
      border: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      transition: all .2s;
      z-index: 2;
    }

    .lightbox-close:hover {
      background: var(--red);
      color: #fff;
      border-color: var(--red)
    }

    .lightbox-caption {
      text-align: center;
      margin-top: 12px;
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      font-weight: 500;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(20, 20, 20, .85);
      border: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      transition: all .2s;
    }

    .lightbox-nav:hover {
      background: var(--red);
      color: #fff;
      border-color: var(--red)
    }

    .lightbox-prev {
      left: -56px
    }

    .lightbox-next {
      right: -56px
    }

    @media(max-width:700px) {
      .lightbox-prev {
        left: 8px
      }

      .lightbox-next {
        right: 8px
      }
    }

    /* ─── PROCESS ─── */
    #process {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border)
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 48px;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .process-cell {
      padding: 36px 28px;
      border-right: 1px solid var(--border);
      transition: background .2s;
      position: relative;
    }

    .process-cell:last-child {
      border-right: none
    }

    .process-cell:hover {
      background: rgba(255, 255, 255, .02)
    }

    .process-n {
      font-size: 11px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    /* Animated outline icons */
    .process-icon-wrap {
      margin-bottom: 18px;
      height: 40px;
      display: flex;
      align-items: center
    }

    .process-icon-wrap svg {
      width: 36px;
      height: 36px;
      stroke: var(--red);
      stroke-width: 1.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      overflow: visible;
    }

    .process-icon-wrap svg path,
    .process-icon-wrap svg circle,
    .process-icon-wrap svg rect,
    .process-icon-wrap svg line,
    .process-icon-wrap svg polyline {
      stroke-dasharray: 200;
      stroke-dashoffset: 200;
      animation: draw-stroke 1.4s var(--ease) forwards;
      animation-play-state: paused;
    }

    .process-cell:hover .process-icon-wrap svg path,
    .process-cell:hover .process-icon-wrap svg circle,
    .process-cell:hover .process-icon-wrap svg rect,
    .process-cell:hover .process-icon-wrap svg line,
    .process-cell:hover .process-icon-wrap svg polyline {
      animation-play-state: running;
    }

    /* Also animate on scroll-reveal */
    .process-cell.vis .process-icon-wrap svg path,
    .process-cell.vis .process-icon-wrap svg circle,
    .process-cell.vis .process-icon-wrap svg rect,
    .process-cell.vis .process-icon-wrap svg line,
    .process-cell.vis .process-icon-wrap svg polyline {
      animation-play-state: running;
      animation-delay: calc(var(--i, 0) * 0.25s);
    }

    @keyframes draw-stroke {
      to {
        stroke-dashoffset: 0
      }
    }

    .process-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      letter-spacing: -.3px
    }

    .process-body {
      font-size: 13px;
      line-height: 1.65;
      color: var(--muted)
    }

    .process-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 14px
    }

    .process-tool {
      font-size: 10px;
      font-weight: 600;
      padding: 3px 7px;
      border-radius: 3px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
      color: var(--muted2);
      letter-spacing: .5px;
    }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--bg)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start
    }

    .contact-big {
      font-size: clamp(38px, 4.8vw, 66px);
      font-weight: 800;
      line-height: 1.0;
      letter-spacing: -2px;
      color: var(--text);
      margin-bottom: 24px;
    }

    .contact-big em {
      font-style: italic;
      font-weight: 300;
      color: var(--muted)
    }

    .contact-p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 360px;
      margin-bottom: 36px
    }

    .contact-info {
      border-top: 1px solid var(--border)
    }

    .c-info-row {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .c-info-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--muted2);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      width: 90px;
      flex-shrink: 0
    }

    .c-info-val {
      font-size: 14px;
      font-weight: 500;
      color: var(--text)
    }

    .c-info-val a {
      color: var(--text);
      transition: color .2s
    }

    .c-info-val a:hover {
      color: var(--muted)
    }

    .form-group {
      margin-bottom: 18px
    }

    .form-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 8px;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 14px;
      color: var(--text);
      font-family: var(--font);
      outline: none;
      transition: border-color .2s, background .2s;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: rgba(255, 255, 255, .2);
      background: rgba(255, 255, 255, .06)
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--muted2)
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px
    }

    .btn-submit {
      width: 100%;
      padding: 14px;
      border-radius: 6px;
      background: var(--red);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      font-family: var(--font);
      cursor: pointer;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: opacity .2s, transform .15s;
      margin-top: 8px;
    }

    .btn-submit:hover {
      opacity: .88;
      transform: translateY(-1px)
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .foot-logo {
      font-size: 15px;
      font-weight: 700
    }

    .foot-logo sup {
      font-size: 8px;
      color: var(--muted)
    }

    .foot-copy {
      font-size: 12px;
      color: var(--muted2)
    }

    .foot-links {
      display: flex;
      gap: 20px
    }

    .foot-links a {
      font-size: 12px;
      color: var(--muted2);
      transition: color .2s
    }

    .foot-links a:hover {
      color: var(--text)
    }

    /* ─── DRAWER ─── */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(0, 0, 0, 0);
      pointer-events: none;
      transition: background .4s var(--ease);
    }

    .drawer-overlay.open {
      background: rgba(0, 0, 0, .65);
      pointer-events: all
    }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 501;
      width: min(680px, 100vw);
      background: var(--bg2);
      border-left: 1px solid var(--border);
      transform: translateX(100%);
      transition: transform .5s var(--ease);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--muted2) var(--bg2);
    }

    .drawer.open {
      transform: translateX(0)
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 32px;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(20, 20, 20, .95);
      backdrop-filter: blur(12px);
    }

    .drawer-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      transition: all .2s;
      background: none;
    }

    .drawer-close:hover {
      border-color: var(--border2);
      color: var(--text);
      background: rgba(255, 255, 255, .05)
    }

    .drawer-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .drawer-badge span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 8px var(--red);
      animation: glow-red 2s infinite;
    }

    @keyframes glow-red {

      0%,
      100% {
        box-shadow: 0 0 6px var(--red)
      }

      50% {
        box-shadow: 0 0 14px var(--red), 0 0 20px rgba(221, 43, 55, .3)
      }
    }

    .drawer-body {
      padding: 32px
    }

    .drawer-title {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 8px
    }

    .drawer-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 24px
    }

    .drawer-tag {
      padding: 4px 10px;
      border-radius: 4px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid var(--border2);
      font-size: 11px;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .drawer-hero-img {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      margin-bottom: 28px;
      aspect-ratio: 16/9;
      cursor: zoom-in;
    }

    .drawer-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top
    }

    .drawer-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 32px;
    }

    .d-metric {
      background: var(--bg3);
      padding: 20px;
      text-align: center
    }

    .d-metric-val {
      font-size: 26px;
      font-weight: 800;
      color: var(--red);
      line-height: 1;
      letter-spacing: -.5px
    }

    .d-metric-label {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
      font-weight: 500
    }

    .d-section {
      margin-bottom: 28px
    }

    .d-section-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    .d-section-title::before {
      content: '';
      width: 14px;
      height: 2px;
      background: var(--red);
      flex-shrink: 0
    }

    .d-section-body {
      font-size: 14px;
      line-height: 1.75;
      color: var(--muted)
    }

    .d-list {
      list-style: none;
      margin-top: 8px
    }

    .d-list li {
      font-size: 13px;
      color: var(--muted);
      padding: 7px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .d-list li::before {
      content: '→';
      color: var(--red);
      font-size: 11px;
      flex-shrink: 0;
      margin-top: 2px
    }

    .d-process-steps {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 8px
    }

    .d-step {
      padding: 14px 16px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, .02)
    }

    .d-step-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px
    }

    .d-step-body {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6
    }

    .drawer-footer {
      padding: 24px 32px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .drawer-nav-btn {
      padding: 10px 20px;
      border-radius: 6px;
      border: 1px solid var(--border2);
      background: none;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      font-family: var(--font);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
    }

    .drawer-nav-btn:hover {
      color: var(--text);
      border-color: rgba(255, 255, 255, .22);
      background: rgba(255, 255, 255, .03)
    }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s var(--ease), transform .7s var(--ease)
    }

    .reveal.vis {
      opacity: 1;
      transform: none
    }

    .reveal-d1 {
      transition-delay: .1s
    }

    .reveal-d2 {
      transition-delay: .2s
    }

    .reveal-d3 {
      transition-delay: .3s
    }

    @media(max-width:1024px) {
      nav {
        padding: 20px 40px
      }

      nav.scrolled {
        padding: 14px 40px
      }

      #hero,
      section {
        padding-left: 40px;
        padding-right: 40px
      }

      footer {
        padding: 24px 40px
      }

      .proj-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:900px) {
      nav {
        padding: 18px 24px
      }

      nav.scrolled {
        padding: 13px 24px
      }

      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .mobile-menu {
        display: flex
      }

      #hero {
        padding: 0 24px 56px
      }

      section {
        padding: 72px 24px
      }

      .hero-top-label {
        left: 24px;
        top: 90px;
        font-size: 10px
      }

      .hero-year-badge {
        right: 24px;
        top: 90px
      }

      .hero-mockups {
        display: none
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .process-grid {
        grid-template-columns: 1fr 1fr
      }

      .process-cell {
        border-right: none;
        border-bottom: 1px solid var(--border)
      }

      .process-cell:nth-child(odd) {
        border-right: 1px solid var(--border)
      }

      .process-cell:last-child,
      .process-cell:nth-last-child(2):nth-child(odd) {
        border-bottom: none
      }

      .proj-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      footer {
        flex-direction: column;
        text-align: center;
        padding: 24px
      }

      .hero-stats {
        gap: 20px
      }

      .drawer {
        width: 100vw
      }

      .lightbox-prev {
        left: 8px
      }

      .lightbox-next {
        right: 8px
      }
    }

    @media(max-width:600px) {
      .hero-h1 {
        font-size: clamp(46px, 13vw, 80px);
        letter-spacing: -2px
      }

      .process-grid {
        grid-template-columns: 1fr
      }

      .process-cell {
        border-right: none !important;
        border-bottom: 1px solid var(--border)
      }

      .process-cell:last-child {
        border-bottom: none
      }

      .drawer-metrics {
        grid-template-columns: 1fr 1fr
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 16px
      }

      .proj-grid {
        grid-template-columns: 1fr
      }

      section {
        padding: 60px 20px
      }
    }

    @media(max-width:400px) {
      .hero-h1 {
        font-size: 42px
      }

      .skills-wrap {
        grid-template-columns: 1fr
      }
    }

    /* ─── HERO MOCKUP ANIMATIONS ─── */

    /* Float groups */
    @keyframes mock-float-up {

      0%,
      100% {
        transform: translateY(0px)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    @keyframes mock-float-down {

      0%,
      100% {
        transform: translateY(0px)
      }

      50% {
        transform: translateY(10px)
      }
    }

    @keyframes mock-float-side {

      0%,
      100% {
        transform: translateX(0px) translateY(0px)
      }

      33% {
        transform: translateX(-5px) translateY(-4px)
      }

      66% {
        transform: translateX(4px) translateY(6px)
      }
    }

    @keyframes mock-drift {

      0%,
      100% {
        transform: translateY(0px) translateX(0px)
      }

      50% {
        transform: translateY(-6px) translateX(3px)
      }
    }

    /* Chart bars growing / shrinking */
    @keyframes bar-grow-1 {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(0.55)
      }
    }

    @keyframes bar-grow-2 {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(1.28)
      }
    }

    @keyframes bar-grow-3 {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(0.7)
      }
    }

    @keyframes bar-grow-4 {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(1.35)
      }
    }

    @keyframes bar-grow-5 {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(0.6)
      }
    }

    @keyframes bar-grow-6 {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(1.2)
      }
    }

    /* Annotation dots pulse */
    @keyframes dot-ping {

      0%,
      100% {
        r: 3;
        opacity: 0.8
      }

      50% {
        r: 5;
        opacity: 1
      }
    }

    @keyframes dot-ring {
      0% {
        r: 3;
        opacity: 0.6;
        stroke-width: 0
      }

      60% {
        r: 11;
        opacity: 0;
        stroke-width: 1
      }

      100% {
        r: 3;
        opacity: 0;
        stroke-width: 0
      }
    }

    /* Flowing dashed connector lines */
    @keyframes dash-flow {
      from {
        stroke-dashoffset: 0
      }

      to {
        stroke-dashoffset: -24
      }
    }

    /* Browser scan line sweep */
    @keyframes scan-sweep {

      0%,
      100% {
        opacity: 0;
        transform: translateY(0px)
      }

      5% {
        opacity: 1
      }

      90% {
        opacity: 0.4
      }

      95%,
      100% {
        opacity: 0;
        transform: translateY(180px)
      }
    }

    /* Cursor blink in browser */
    @keyframes mock-cursor {

      0%,
      45% {
        opacity: 1
      }

      50%,
      95% {
        opacity: 0
      }

      100% {
        opacity: 1
      }
    }

    /* Table row highlight sweep */
    @keyframes row-highlight {

      0%,
      100% {
        opacity: 0
      }

      20%,
      35% {
        opacity: 1
      }
    }

    /* Typing bar growth in browser */
    @keyframes type-bar {

      0%,
      100% {
        width: 80px
      }

      50% {
        width: 140px
      }
    }

    /* Overall SVG gentle breathe */
    @keyframes svg-breathe {

      0%,
      100% {
        opacity: 0.5
      }

      50% {
        opacity: 0.68
      }
    }

    .hero-mockups svg {
      animation: svg-breathe 6s ease-in-out infinite
    }

    /* Group float assignments */
    #mock-browser {
      animation: mock-float-up 9s ease-in-out infinite
    }

    #mock-mobile {
      animation: mock-float-down 11s ease-in-out infinite 1s
    }

    #mock-dashboard {
      animation: mock-float-side 13s ease-in-out infinite 0.5s
    }

    #mock-card {
      animation: mock-drift 8s ease-in-out infinite 2s
    }

    /* Bar animations — transform-origin bottom of each bar */
    #bar1 {
      transform-origin: 146px 546px;
      animation: bar-grow-1 3.2s ease-in-out infinite
    }

    #bar2 {
      transform-origin: 172px 546px;
      animation: bar-grow-2 2.8s ease-in-out infinite 0.3s
    }

    #bar3 {
      transform-origin: 198px 546px;
      animation: bar-grow-3 3.6s ease-in-out infinite 0.6s
    }

    #bar4 {
      transform-origin: 224px 546px;
      animation: bar-grow-4 2.6s ease-in-out infinite 0.9s
    }

    #bar5 {
      transform-origin: 250px 546px;
      animation: bar-grow-5 3.1s ease-in-out infinite 0.4s
    }

    #bar6 {
      transform-origin: 276px 546px;
      animation: bar-grow-6 2.9s ease-in-out infinite 0.7s
    }

    /* Dot animations */
    #dot-a {
      animation: dot-ping 2.4s ease-in-out infinite
    }

    #dot-b {
      animation: dot-ping 3.1s ease-in-out infinite 0.8s
    }

    #ring-a {
      animation: dot-ring 2.4s ease-out infinite
    }

    #ring-b {
      animation: dot-ring 3.1s ease-out infinite 0.8s
    }

    /* Connector dashes flow */
    #conn-lines {
      animation: dash-flow 1.2s linear infinite
    }

    /* Scan line */
    #scan-line {
      animation: scan-sweep 5s ease-in-out infinite 1s
    }

    /* Cursor */
    #mock-cursor-el {
      animation: mock-cursor 1.1s step-end infinite
    }

    /* Table rows highlight in sequence */
    #trow1 {
      animation: row-highlight 6s ease-in-out infinite
    }

    #trow2 {
      animation: row-highlight 6s ease-in-out infinite 2s
    }

    #trow3 {
      animation: row-highlight 6s ease-in-out infinite 4s
    }

    /* Typing line in browser */
    #type-line {
      animation: type-bar 4s ease-in-out infinite
    }
