    /* --- Design tokens ------------------------------------------- */
    :root {
      --bg: #f5f5dc;
      --fg: #0b0b0b;
      --muted: #393939;
      --muted-2: #6b6b6b;
      --border: #0b0b0b;
      --pink: #ff6b7a;
      --blue: #2f81f7;
      --yellow: #ffc93c;
      --green: #22a45d;
      --purple: #7b3cff;
      --soft: #f0f0d8;
      --radius: 14px;
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent
    }

    html,
    body {
      margin: 0;
      padding: 0
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color: var(--fg);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
      overflow-x: hidden;
    }

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

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

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px
    }

    /* --- Skip link ----------------------------------------------- */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 16px;
      background: #0b0b0b;
      color: #fff;
      padding: 8px 16px;
      border-radius: 0 0 8px 8px;
      font-weight: 600;
      z-index: 999;
      transition: top .2s;
    }

    .skip-link:focus {
      top: 0
    }

    /* --- Nav ----------------------------------------------------- */
    .nav-wrap {
      padding: 24px 16px 8px
    }

    .nav {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: stretch;
      border: 3px solid #0b0b0b;
      border-radius: 12px;
      padding: 0;
      background: #fff;
      box-shadow: 4px 4px 0 #ccc;
      position: relative;
    }

    .nav-brand {
      font-size: 20px;
      font-weight: 600;
      padding: 16px 24px;
      border-right: 3px solid #0b0b0b;
      display: flex;
      align-items: center;
      flex-shrink: 0;
      white-space: nowrap;
      border-radius: 9px 0 0 9px;
      transition: transform .2s cubic-bezier(.175, .885, .32, 1.275), box-shadow .2s, background .2s;
      background: #fff;
      position: relative;
      z-index: 5;
    }

    .nav-brand:hover {
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--green);
      border-radius: 8px
    }

    .nav-links {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      flex: 1
    }

    .nav-links li {
      display: flex;
      flex: 1
    }

    .nav-links a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 12px;
      font-weight: 500;
      font-size: 16px;
      color: #0b0b0b;
      border-right: 2px solid #0b0b0b;
      transition: .2s background, .2s color, .2s transform, .2s box-shadow, .2s border-radius;
      position: relative;
      z-index: 1;
    }

    /* 3D hover effects for nav links */
    .nav-links li:nth-child(1) a:hover {
      background: var(--pink);
      color: #fff;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--fg);
      border-radius: 6px;
    }

    .nav-links li:nth-child(2) a:hover {
      background: var(--blue);
      color: #fff;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--fg);
      border-radius: 6px;
    }

    .nav-links li:nth-child(3) a:hover {
      background: var(--yellow);
      color: #0b0b0b;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--fg);
      border-radius: 6px;
    }

    .nav-links li:nth-child(4) a:hover {
      background: var(--purple);
      color: #fff;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--fg);
      border-radius: 6px;
    }

    .nav-links li:nth-child(5) a:hover {
      background: var(--green);
      color: #fff;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--fg);
      border-radius: 6px;
    }

    .nav-links li:last-child a {
      border-right: none
    }

    .nav-resume {
      background: #0b0b0b;
      color: #fff !important;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 0 9px 9px 0;
      position: relative;
      z-index: 2;
      transition: transform .2s, box-shadow .2s, background .2s, border-radius .2s;
    }

    .nav-resume:hover {
      background: #111;
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 var(--pink);
      border-radius: 8px
    }

    .nav-toggle {
      display: none;
      background: none;
      border: 0;
      border-left: 2px solid #0b0b0b;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 16px 20px;
      border-radius: 0 9px 9px 0;
    }

    .nav-toggle span {
      width: 22px;
      height: 3px;
      background: #0b0b0b;
      border-radius: 2px
    }

    /* --- Hero ---------------------------------------------------- */
    .hero {
      padding: 48px 0 32px
    }

    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 48px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(40px, 6vw, 72px);
      line-height: 1.1;
      font-weight: 800;
      margin: 0 0 18px;
      letter-spacing: -.02em
    }

    .hl {
      color: #fff;
      padding: 2px 12px;
      display: inline-block;
      border-radius: 4px
    }

    .hl-pink {
      background: var(--pink)
    }

    .hl-blue {
      background: var(--blue)
    }

    .hero p {
      color: var(--muted);
      font-size: 18px;
      max-width: 560px;
      margin: 0 0 28px
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 18px
    }

    .avatar-card {
      border: 3px solid #0b0b0b;
      border-radius: 24px;
      padding: 18px;
      background: #fff;
      box-shadow: 8px 8px 0 #0b0b0b;
      max-width: 480px;
      margin-left: auto;
    }

    /* --- Buttons ------------------------------------------------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 18px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      border: 0;
      transition: .2s transform, .2s background, .2s box-shadow;
      text-align: center;
    }

    .btn:hover {
      transform: translateY(-1px)
    }

    .btn-dark {
      background: #0b0b0b;
      color: #fff
    }

    .btn-dark:hover {
      background: #000
    }

    .btn-outline {
      background: #fff;
      color: #0b0b0b;
      border: 3px solid #0b0b0b
    }

    .btn-light {
      background: #fff;
      color: #0b0b0b;
      border: 3px solid #0b0b0b
    }

    .btn-block {
      width: 100%
    }

    /* --- Marquee ------------------------------------------------- */
    .marquee {
      background: #0b0b0b;
      color: #fff;
      overflow: hidden;
      margin: 64px 0;
      padding: 24px 0;
      border-top: 1px solid #2a2a2a;
      border-bottom: 1px solid #2a2a2a;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: scroll 30s linear infinite
    }

    .marquee-track:hover {
      animation-play-state: paused
    }

    .marquee-content {
      display: flex;
      gap: 20px;
      padding-right: 20px
    }

    .tech-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      background: #0b0b0b;
      border: 2px solid #fff;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      transition: transform .2s, background .3s;
      cursor: default;
    }

    .tech-pill:hover {
      background: #1a1a1a;
      transform: translateY(-4px)
    }

    .t-icon {
      width: 36px;
      height: 36px;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
    }

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

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

    /* --- Sections ------------------------------------------------ */
    .section {
      padding: 80px 0
    }

    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 48px
    }

    .section-head h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 800;
      margin: 0 0 16px;
      letter-spacing: -.02em
    }

    .section-head p {
      color: var(--muted);
      font-size: 18px;
      margin: 0 0 16px
    }

    .section-head.between {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      max-width: none;
      flex-wrap: wrap;
      gap: 16px
    }

    .center-row {
      text-align: center;
      margin-top: 40px
    }

    /* --- Services ------------------------------------------------ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .service-card {
      border: 3px solid #0b0b0b;
      border-radius: 18px;
      padding: 32px;
      background: #fff;
      transition: .2s transform
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 6px 6px 0 #0b0b0b
    }

    .svc-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px
    }

    .service-card h3 {
      font-size: 24px;
      margin: 0 0 10px;
      font-weight: 700
    }

    .service-card p {
      color: var(--muted-2);
      margin: 0
    }

    .service-card.cta {
      background: #0b0b0b;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center
    }

    .service-card.cta h3 {
      color: #fff
    }

    .service-card.cta p {
      color: #cfcfcf;
      margin-bottom: 20px
    }

    .service-card.cta .btn-dark {
      background: #fff;
      color: #0b0b0b
    }

    /* --- About --------------------------------------------------- */
    .about-section-header {
      margin-bottom: 48px
    }

    .step-num {
      font-size: 14px;
      font-weight: 700;
      color: var(--muted-2);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px
    }

    .step-num .line {
      width: 40px;
      height: 2px;
      background: #0b0b0b;
      display: block
    }

    .about-section-header h2 {
      font-size: clamp(40px, 5vw, 56px);
      font-weight: 800;
      margin: 0;
      letter-spacing: -.02em;
      line-height: 1.1
    }

    .about-brutalist-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 32px;
      align-items: stretch
    }

    .about-main-card {
      border: 3px solid #0b0b0b;
      padding: 40px;
      background: #fff;
      box-shadow: 8px 8px 0 #0b0b0b;
      display: flex;
      flex-direction: column;
    }

    .about-main-card p {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      margin: 0 0 24px
    }

    .about-main-card strong {
      color: #0b0b0b;
      font-weight: 700
    }

    .mind-stack-divider {
      border-top: 2px solid #0b0b0b;
      margin: 24px 0
    }

    .mind-stack-title {
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #0b0b0b
    }

    .mind-stack-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px
    }

    .ms-tag {
      border: 2px solid #0b0b0b;
      padding: 6px 12px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      color: #0b0b0b;
      letter-spacing: .5px;
      transition: transform .2s, box-shadow .2s;
      background: #fff;
      cursor: default;
    }

    .ms-tag:hover {
      transform: translate(-3px, -3px);
      box-shadow: 3px 3px 0 var(--pink)
    }

    .about-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px
    }

    .about-trait-card {
      border: 3px solid #0b0b0b;
      padding: 24px;
      background: #fff;
      box-shadow: 6px 6px 0 #0b0b0b;
      display: flex;
      flex-direction: column
    }

    .trait-icon {
      width: 48px;
      height: 48px;
      background: #FF5A36;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 24px
    }

    .about-trait-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 8px
    }

    .about-trait-card p {
      font-size: 14px;
      color: #555;
      margin: 0;
      line-height: 1.5
    }

    /* --- Portfolio ----------------------------------------------- */
    .portfolio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px
    }

    .case-card {
      border: 3px solid #0b0b0b;
      border-radius: 20px;
      padding: 24px;
      background: #fff;
      transition: .2s transform, .2s box-shadow;
      overflow: hidden
    }

    .case-card:hover {
      transform: translate(-4px, -6px);
      box-shadow: 6px 8px 0 #ff2233
    }

    .case-thumb {
      height: 280px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
      overflow: hidden
    }

    .case-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
      display: block
    }

    .thumb-shape {
      width: 140px;
      height: 140px;
      border-radius: 18px
    }

    .case-body {
      position: relative;
      padding: 20px 20px 20px 56px;
      margin: 0 -24px -24px -24px;
      background-image:
        repeating-linear-gradient(transparent,
          transparent 27px,
          rgba(180, 200, 255, 0.35) 27px,
          rgba(180, 200, 255, 0.35) 28px);
    }

    .case-body::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 36px;
      width: 1px;
      background: rgba(255, 100, 100, 0.25);
      pointer-events: none;
    }

    .tag {
      display: inline-block;
      background: #f1f1f1;
      color: #0b0b0b;
      font-weight: 600;
      font-size: 12px;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 10px;
      margin-top: 20px
    }

    .case-card h3 {
      font-size: 24px;
      margin: 0 0 10px;
      line-height: 1.3
    }

    .case-card p {
      color: var(--muted-2);
      margin: 0 0 16px;
      line-height: 28px
    }

    .link-arrow {
      font-weight: 700;
      border-bottom: 2px solid #0b0b0b;
      padding-bottom: 2px;
      display: inline-block;
      margin-bottom: 4px
    }

    /* --- GitHub Contributions ------------------------------------ */
    .github-section {
      padding: 80px 0;
      display: flex;
      justify-content: center
    }

    .github-section .container {
      display: flex;
      flex-direction: column;
      align-items: center
    }

    .github-section .section-head {
      text-align: center;
      margin-bottom: 36px
    }

    .github-section .section-head h2 {
      color: #0b0b0b
    }

    .github-wrap {
      position: relative;
      background: #fdfdf8;
      border: 1px solid #e8e6d6;
      border-radius: 4px;
      padding: 36px 40px 28px;
      max-width: 900px;
      width: 100%;
      /* paper shadow stack */
      box-shadow:
        0 1px 0 #ede9d4,
        0 2px 0 #fdfdf8,
        0 3px 0 #e8e4cc,
        0 4px 0 #fdfdf8,
        0 5px 0 #e0dcc8,
        0 8px 24px rgba(0, 0, 0, .05);
      /* subtle texture via repeating gradient */
      background-image:
        repeating-linear-gradient(0deg,
          transparent,
          transparent 27px,
          rgba(0, 0, 0, .03) 27px,
          rgba(0, 0, 0, .03) 28px);
    }

    .github-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 36px;
      bottom: 0;
      width: 1px;
      background: rgba(255, 100, 100, .18);
      pointer-events: none;
    }

    .github-inner {
      overflow-x: auto;
      padding-bottom: 4px
    }

    .github-months {
      display: flex;
      gap: 0;
      margin-bottom: 8px
    }

    .github-month-label {
      font-size: 11px;
      font-weight: 600;
      color: #888;
      flex: 1;
      text-align: center;
      font-family: Georgia, serif
    }

    .github-grid {
      display: flex;
      gap: 3px
    }

    .github-week {
      display: flex;
      flex-direction: column;
      gap: 3px
    }

    .github-day {
      width: 13px;
      height: 13px;
      border-radius: 2px;
      background: #e8e8d8;
      cursor: default;
      transition: transform .1s;
      flex-shrink: 0;
    }

    .github-day:hover {
      transform: scale(1.35)
    }

    .github-day[data-level="1"] {
      background: #c6e48b
    }

    .github-day[data-level="2"] {
      background: #7bc96f
    }

    .github-day[data-level="3"] {
      background: #239a3b
    }

    .github-day[data-level="4"] {
      background: #196127
    }

    .github-footer {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 20px;
      flex-wrap: wrap;
      gap: 12px;
      border-top: 1px solid #eae8d8;
      padding-top: 16px
    }

    .github-count {
      font-size: 15px;
      font-style: italic;
      font-family: Georgia, 'Times New Roman', serif;
      color: #444;
      margin: 0;
    }

    .github-count strong {
      font-weight: 700;
      color: #0b0b0b;
      font-style: normal
    }

    .github-legend {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: #999;
      font-family: Georgia, serif;
      font-style: italic
    }

    .github-legend-box {
      width: 11px;
      height: 11px;
      border-radius: 2px
    }

    /* --- Startups ------------------------------------------------ */
    .startups-section {
      background: var(--bg);
      padding: 100px 0
    }

    .startups-section .section-head h2 {
      color: #0b0b0b
    }

    .startups-section .section-head p {
      color: #666
    }

    .startups-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px
    }

    .startup-card {
      border: 3px solid #0b0b0b;
      border-radius: 20px;
      padding: 24px;
      background: #fff;
      overflow: hidden;
      transition: .2s transform, .2s box-shadow;
    }

    .startup-card:hover {
      transform: translate(-4px, -6px);
      box-shadow: 6px 8px 0 #ff2233
    }

    .startup-thumb {
      height: 240px;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
    }

    .startup-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
      display: block
    }

    .startup-thumb-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px
    }

    .startup-body {
      position: relative;
      padding: 20px 20px 20px 56px;
      margin: 0 -24px -24px -24px;
      background-image: repeating-linear-gradient(transparent, transparent 27px,
          rgba(180, 200, 255, 0.35) 27px, rgba(180, 200, 255, 0.35) 28px);
    }

    .startup-body::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 36px;
      width: 1px;
      background: rgba(255, 100, 100, 0.25);
      pointer-events: none;
    }

    .startup-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
      margin-top: 20px
    }

    .startup-status {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .5px;
      padding: 5px 10px;
      border-radius: 6px;
    }

    .startup-status.live {
      background: #f0faf4;
      color: #22a45d
    }

    .startup-status.building {
      background: #fffbf0;
      color: #b87d00
    }

    .startup-name {
      font-size: 22px;
      font-weight: 800;
      color: #0b0b0b;
      margin: 0 0 8px;
      letter-spacing: -.01em;
      line-height: 1.3
    }

    .startup-desc {
      font-size: 14px;
      color: #6b6b6b;
      line-height: 28px;
      margin: 0 0 16px
    }

    .startup-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 700;
      color: #0b0b0b;
      border-bottom: 2px solid #0b0b0b;
      padding-bottom: 2px;
      text-decoration: none;
      transition: opacity .2s;
    }

    .startup-link:hover {
      opacity: .7
    }

    .startup-link svg {
      transition: transform .2s
    }

    .startup-link:hover svg {
      transform: translateX(3px)
    }

    @media(max-width:900px) {
      .startups-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:560px) {
      .startup-thumb {
        height: 180px
      }

      .startup-body {
        padding: 16px 16px 16px 48px
      }

      .startup-body::before {
        left: 28px
      }
    }

    /* --- Experience ---------------------------------------------- */
    .experience {
      background: #0b0b0b;
      color: #fff;
      border-radius: 24px;
      margin: 0 16px;
      padding: 100px 0
    }

    .experience-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      align-items: start
    }

    .experience .section-head {
      text-align: left;
      margin: 0
    }

    .sticky-head {
      position: sticky;
      top: 100px;
      align-self: start
    }

    .experience .section-head h2 {
      color: #fff
    }

    .experience .section-head p {
      color: #bdbdbd
    }

    .experience .btn-light {
      margin-top: 8px
    }

    .timeline {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 20px
    }

    .timeline li {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 32px;
      padding: 36px;
      background: #151515;
      border-radius: 20px;
      border: 1px solid #2a2a2a;
      transition: transform .3s, background .3s, border-color .3s;
    }

    .timeline li:hover {
      background: #1a1a1a;
      transform: translateY(-4px);
      border-color: #3a3a3a
    }

    .period-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .period {
      color: var(--yellow);
      font-weight: 700;
      font-size: 16px
    }

    .company-wrap {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .company-logo {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: #fff;
      padding: 4px;
      object-fit: contain
    }

    .company {
      color: #bdbdbd;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .role-img-block {
      width: 100%;
      height: 140px;
      border-radius: 12px;
      background: #2a2a2a;
      border: 2px solid #333;
      background-size: cover;
      background-position: center;
      margin-top: 8px;
    }

    .role-info h3 {
      margin: 0 0 12px;
      font-size: 24px;
      color: #fff
    }

    .role-info p {
      margin: 0 0 16px;
      color: #a1a1a1;
      line-height: 1.6
    }

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

    .tag.tag-dark {
      background: #2a2a2a;
      color: #fff;
      margin-bottom: 0
    }

    /* --- Testimonials -------------------------------------------- */
    .testimonials {
      padding-top: 100px
    }

    .t-slider {
      display: flex;
      align-items: center;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto
    }

    .t-nav {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 3px solid #0b0b0b;
      background: #fff;
      font-size: 28px;
      cursor: pointer;
      flex-shrink: 0;
      font-weight: 700;
      transition: .2s background, .2s color;
    }

    .t-nav:hover {
      background: #0b0b0b;
      color: #fff
    }

    .t-quote {
      margin: 0;
      flex: 1;
      text-align: center
    }

    .t-quote p {
      font-size: 22px;
      line-height: 1.5;
      color: #0b0b0b;
      margin: 0 0 24px;
      font-weight: 500
    }

    .t-quote footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px
    }

    .t-quote strong {
      font-size: 18px
    }

    .t-quote span {
      color: var(--muted-2)
    }

    /* --- Blog ---------------------------------------------------- */
    .blog-section {
      background: #e8e8d0;
      padding: 100px 0;
      border-radius: 24px;
      margin: 0 16px
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px
    }

    .blog-card {
      border: 3px solid #0b0b0b;
      background: #fff;
      padding: 32px;
      box-shadow: 8px 8px 0 #0b0b0b;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: transform .2s, box-shadow .2s;
    }

    .blog-card:hover {
      transform: translate(-4px, -4px);
      box-shadow: 12px 12px 0 #0b0b0b
    }

    .blog-meta {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #555;
      margin-bottom: 16px
    }

    .blog-card h3 {
      font-size: 26px;
      line-height: 1.3;
      font-weight: 500;
      margin: 0 0 16px;
      color: #0b0b0b
    }

    .blog-card p {
      color: #444;
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 32px;
      flex-grow: 1
    }

    .blog-btn {
      display: inline-flex;
      align-items: center;
      padding: 12px 20px;
      background: #0b0b0b;
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: 2px solid #0b0b0b;
      transition: transform .2s, box-shadow .2s;
    }

    .blog-btn:hover {
      transform: translate(-4px, -4px);
      box-shadow: 4px 4px 0 #ff0033
    }

    /* --- Achievements -------------------------------------------- */
    .filters {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap
    }

    .chip {
      background: #fff;
      border: 2px solid #0b0b0b;
      border-radius: 999px;
      padding: 8px 16px;
      font-weight: 600;
      cursor: pointer;
      font-size: 14px;
      transition: .2s
    }

    .chip.active,
    .chip:hover {
      background: #0b0b0b;
      color: #fff
    }

    .ba-chip {
      background: #fff;
      border: 2px solid #0b0b0b;
      border-radius: 999px;
      padding: 7px 14px;
      font-weight: 600;
      cursor: pointer;
      font-size: 13px;
      transition: .2s
    }

    .ba-chip.active,
    .ba-chip:hover {
      background: #0b0b0b;
      color: #fff
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .article-card {
      border: 3px solid #0b0b0b;
      border-radius: 18px;
      padding: 18px;
      background: #fff;
      transition: .2s transform, .2s box-shadow
    }

    .article-card:hover {
      transform: translate(-4px, -6px);
      box-shadow: 6px 8px 0 #ff2233
    }

    .art-thumb {
      height: 200px;
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden
    }

    .art-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      display: block
    }

    .article-card h3 {
      margin: 8px 0;
      font-size: 20px;
      line-height: 1.3
    }

    .meta {
      color: var(--muted-2);
      font-size: 14px
    }

    /* --- Footer -------------------------------------------------- */
    .footer-wrap {
      margin: 80px 0 0;
      padding: 0
    }

    .footer {
      background: #0b0b0b;
      color: #fff;
      padding: 0;
      overflow: hidden;
      border-top: 3px solid #0b0b0b;
    }

    /* CTA band */
    .footer-cta {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 40px;
      padding: 80px 80px;
      border-bottom: 1px solid #1e1e1e;
    }

    .footer-cta-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #555;
      margin: 0 0 16px;
    }

    .footer-cta h2 {
      font-size: clamp(36px, 4.5vw, 64px);
      font-weight: 800;
      margin: 0;
      letter-spacing: -.03em;
      line-height: 1.05;
      background: linear-gradient(90deg, #fff 60%, #555);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-cta-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      flex-shrink: 0
    }

    .availability-dot {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: #888;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(34, 164, 93, .25);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        box-shadow: 0 0 0 3px rgba(34, 164, 93, .25)
      }

      50% {
        box-shadow: 0 0 0 6px rgba(34, 164, 93, .1)
      }
    }

    .btn-email {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      background: #fff;
      color: #0b0b0b;
      font-weight: 700;
      font-size: 17px;
      border-radius: 12px;
      border: 2px solid transparent;
      transition: background .2s, transform .2s, box-shadow .2s;
      white-space: nowrap;
    }

    .btn-email svg {
      transition: transform .3s
    }

    .btn-email:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
    }

    .btn-email:hover svg {
      transform: translateX(4px)
    }

    /* Main footer body */
    .footer-body {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 0;
      border-bottom: 1px solid #1e1e1e;
    }

    .footer-col {
      padding: 56px 48px;
      border-right: 1px solid #1e1e1e;
    }

    .footer-col:last-child {
      border-right: none
    }

    .logo-footer {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark span {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #0b0b0b;
      display: block;
    }

    .footer-desc {
      color: #666;
      font-size: 14px;
      line-height: 1.7;
      margin: 0 0 32px
    }

    /* Social icon row */
    .social-row {
      display: flex;
      gap: 10px
    }

    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      border: 1px solid #222;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      transition: .2s background, .2s color, .2s border-color;
    }

    .social-link:hover {
      background: #fff;
      color: #0b0b0b;
      border-color: #fff
    }

    .social-link svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      display: block
    }

    .footer h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #444;
      margin: 0 0 24px;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .footer ul li a {
      display: block;
      padding: 7px 0;
      font-size: 14px;
      font-weight: 500;
      color: #888;
      transition: .2s color;
      border-bottom: 0;
    }

    .footer ul li a:hover {
      color: #fff
    }

    /* Newsletter col */
    .nl-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 0
    }

    .nl-input {
      padding: 13px 16px;
      border-radius: 9px;
      border: 1px solid #222;
      background: #111;
      color: #fff;
      font-size: 14px;
      font-family: inherit;
      transition: border-color .2s;
      width: 100%;
    }

    .nl-input::placeholder {
      color: #444
    }

    .nl-input:focus {
      outline: none;
      border-color: #444
    }

    .nl-btn {
      padding: 13px 16px;
      border-radius: 9px;
      background: #fff;
      color: #0b0b0b;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: .2s background, .2s transform;
    }

    .nl-btn:hover {
      background: #e8e8e8;
      transform: translateY(-1px)
    }

    #nlMsg {
      font-size: 13px;
      color: var(--green);
      min-height: 18px;
      margin: 4px 0 0
    }

    /* Footer bottom bar */
    .footer-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      padding: 24px 48px;
    }

    .footer-bar-left {
      font-size: 13px;
      color: #444
    }

    .footer-bar-right {
      display: flex;
      align-items: center;
      gap: 24px
    }

    .footer-bar-right a {
      font-size: 13px;
      color: #444;
      transition: .15s color
    }

    .footer-bar-right a:hover {
      color: #888
    }

    .footer-bar-sep {
      color: #2a2a2a;
      font-size: 13px
    }

    /* Footer responsive */
    @media(max-width:900px) {
      .footer-cta {
        grid-template-columns: 1fr;
        padding: 56px 40px;
        gap: 32px
      }

      .footer-cta-right {
        align-items: flex-start
      }

      .footer-body {
        grid-template-columns: 1fr 1fr
      }

      .footer-col {
        padding: 40px 32px
      }

      .footer-col:nth-child(2) {
        border-right: none
      }

      .footer-col:nth-child(3) {
        border-top: 1px solid #1e1e1e;
        border-right: 1px solid #1e1e1e
      }

      .footer-col:nth-child(4) {
        border-top: 1px solid #1e1e1e;
        border-right: none
      }

      .footer-bar {
        padding: 20px 32px
      }
    }

    /* --- Responsive - Tablet (<=900px) --------------------------- */
    @media(max-width:900px) {

      /* Nav */
      .nav {
        justify-content: space-between
      }

      .nav-brand {
        border-right: none
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        border: 3px solid #0b0b0b;
        border-radius: 0 0 12px 12px;
        overflow: hidden;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 50;
        box-shadow: 4px 4px 0 #ccc;
      }

      .nav-links.open {
        display: flex
      }

      .nav-links li {
        flex: none
      }

      .nav-links a {
        border-right: none;
        border-bottom: 2px solid #0b0b0b;
        justify-content: flex-start;
        padding: 16px 20px
      }

      .nav-links li:last-child a {
        border-bottom: none
      }

      .nav-resume {
        border-radius: 0
      }

      .nav-toggle {
        display: flex
      }

      /* Hero */
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px
      }

      .hero-illu {
        order: -1
      }

      .avatar-card {
        margin: 0 auto;
        max-width: 340px
      }

      /* Sections */
      .section {
        padding: 64px 0
      }

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

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

      .about-cards-grid {
        grid-template-columns: 1fr 1fr
      }

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

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

      .sticky-head {
        position: static
      }

      .timeline li {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px
      }

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

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

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

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
      }

      .footer {
        padding: 64px 40px 32px
      }
    }

    /* --- Responsive - Mobile (<=560px) --------------------------- */
    @media(max-width:560px) {

      /* Global */
      .container {
        padding: 0 16px
      }

      .section {
        padding: 48px 0
      }

      .section-head {
        margin-bottom: 32px
      }

      .section-head h2 {
        font-size: 28px
      }

      .section-head p {
        font-size: 16px
      }

      .section-head.between {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
      }

      /* Nav */
      .nav-wrap {
        padding: 16px 12px 6px
      }

      .nav-brand {
        font-size: 17px;
        padding: 14px 16px
      }

      /* Hero */
      .hero {
        padding: 28px 0 20px
      }

      .hero-grid {
        padding: 0 16px;
        gap: 20px
      }

      .hero h1 {
        font-size: 32px;
        margin-bottom: 14px
      }

      .hero p {
        font-size: 16px;
        margin-bottom: 20px
      }

      .hero-cta {
        gap: 12px
      }

      .hero-cta .btn {
        padding: 14px 22px;
        font-size: 15px;
        width: 100%;
        justify-content: center
      }

      .avatar-card {
        max-width: 100%;
        padding: 14px
      }

      /* Marquee */
      .marquee {
        margin: 36px 0;
        padding: 16px 0
      }

      .marquee-track {
        gap: 12px
      }

      .tech-pill {
        padding: 10px 16px;
        font-size: 15px;
        gap: 8px
      }

      .t-icon {
        width: 28px;
        height: 28px;
        font-size: 13px
      }

      /* Services */
      .services-grid {
        grid-template-columns: 1fr
      }

      .service-card {
        padding: 24px
      }

      /* About */
      .about-section-header h2 {
        font-size: 32px
      }

      .about-main-card {
        padding: 24px
      }

      .about-cards-grid {
        grid-template-columns: 1fr
      }

      .about-trait-card {
        padding: 20px
      }

      /* Portfolio */
      .case-thumb {
        height: 200px
      }

      .case-body {
        padding: 16px 16px 16px 48px
      }

      .case-body::before {
        left: 28px
      }

      .case-card h3 {
        font-size: 20px
      }

      /* GitHub */
      .github-wrap {
        padding: 20px 16px 16px
      }

      .github-day {
        width: 10px;
        height: 10px
      }

      /* Startups */
      .startups-section {
        padding: 64px 0
      }

      .startup-card {
        padding: 24px
      }

      /* Experience */
      .experience {
        margin: 0 8px;
        border-radius: 16px
      }

      .timeline li {
        padding: 20px;
        gap: 6px
      }

      .timeline h3 {
        font-size: 18px
      }

      .period {
        font-size: 14px
      }

      .role-tags {
        gap: 6px
      }

      /* Testimonials */
      .t-slider {
        gap: 8px
      }

      .t-quote p {
        font-size: 17px
      }

      .t-nav {
        width: 44px;
        height: 44px;
        font-size: 22px
      }

      /* Articles */
      .articles-grid {
        grid-template-columns: 1fr
      }

      .art-thumb {
        height: 160px
      }

      /* Footer */
      .footer-cta {
        padding: 40px 20px;
        gap: 24px
      }

      .footer-cta h2 {
        font-size: 30px
      }

      .footer-body {
        grid-template-columns: 1fr
      }

      .footer-col {
        border-right: none !important;
        border-top: 1px solid #1e1e1e;
        padding: 28px 20px
      }

      .footer-col:first-child {
        border-top: none
      }

      .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 10px
      }

      .footer-bar-right {
        flex-wrap: wrap;
        gap: 12px
      }

      .btn-email {
        padding: 14px 24px;
        font-size: 15px
      }

      .newsletter {
        flex-direction: column
      }

      .nl-btn {
        width: 100%
      }

      /* Chips / filters */
      .filters {
        gap: 6px
      }

      .chip {
        padding: 7px 13px;
        font-size: 13px
      }

      /* Buttons */
      .btn {
        padding: 16px 24px;
        font-size: 15px
      }

      .center-row .btn {
        width: 100%;
        max-width: 320px
      }
    }

    /* --- Admin Panel Styles -------------------------------------- */
    #adminPanel {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999;
      background: var(--bg);
      overflow-y: auto;
      padding: 24px
    }

    .admin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 3px solid #0b0b0b;
      padding-bottom: 16px;
      margin-bottom: 32px
    }

    .admin-header h1 {
      margin: 0;
      font-size: 32px;
      font-weight: 800
    }

    .admin-grid {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 32px
    }

    .admin-nav {
      list-style: none;
      padding: 0;
      margin: 0
    }

    .admin-nav-item {
      display: block;
      padding: 16px;
      border: 3px solid #0b0b0b;
      background: #fff;
      font-weight: 700;
      margin-bottom: 12px;
      box-shadow: 4px 4px 0 #0b0b0b;
      cursor: pointer;
      transition: .2s transform, .2s box-shadow;
    }

    .admin-nav-item:hover {
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0 var(--blue)
    }

    .admin-nav-item.active {
      background: var(--blue);
      color: #fff;
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0 #0b0b0b
    }

    .admin-content-card {
      background: #fff;
      border: 3px solid #0b0b0b;
      padding: 32px;
      box-shadow: 8px 8px 0 #0b0b0b;
      min-height: 500px
    }

    .admin-tab {
      display: none
    }

    .admin-tab.active {
      display: block
    }

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

    .form-label {
      display: block;
      font-weight: 700;
      margin-bottom: 8px;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1px
    }

    .form-control {
      width: 100%;
      padding: 14px;
      border: 3px solid #0b0b0b;
      font-family: inherit;
      font-size: 16px;
      border-radius: 4px
    }

    .form-control:focus {
      outline: none;
      border-color: var(--pink)
    }

    .admin-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 16px
    }

    .admin-table th {
      text-align: left;
      padding: 12px;
      border-bottom: 3px solid #0b0b0b;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 12px
    }

    .admin-table td {
      padding: 12px;
      border-bottom: 1px solid #eee
    }

    #loginView {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background: #fff
    }

    .login-card {
      width: 100%;
      max-width: 400px;
      border: 3px solid #0b0b0b;
      padding: 48px;
      box-shadow: 12px 12px 0 var(--pink);
      background: #fff;
      text-align: center
    }

    .badge-edit {
      background: var(--blue);
      color: #fff;
      padding: 4px 8px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer
    }

    .badge-delete {
      background: var(--pink);
      color: #fff;
      padding: 4px 8px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer
    }
  

    /* ---------------------------------------------------
   ADMIN PANEL STYLES
--------------------------------------------------- */

    /* Login */
    #loginView {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: var(--bg);
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .login-card {
      width: 100%;
      max-width: 420px;
      border: 3px solid #0b0b0b;
      padding: 48px;
      box-shadow: 12px 12px 0 var(--pink);
      background: #fff;
      text-align: center;
    }

    /* Admin Shell */
    #adminPanel {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: var(--bg);
      overflow: hidden;
    }

    .admin-shell {
      display: grid;
      grid-template-columns: 240px 1fr;
      height: 100%
    }

    /* Sidebar */
    .admin-sidebar {
      background: #0b0b0b;
      color: #fff;
      display: flex;
      flex-direction: column;
      padding: 0;
      overflow-y: auto;
      border-right: 3px solid #0b0b0b;
    }

    .admin-logo {
      padding: 20px 16px 18px;
      border-bottom: 1px solid #1a1a1a;
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 72px;
    }

    .admin-logo .logo-mark {
      background: #fff;
      flex-shrink: 0
    }

    .admin-logo .logo-mark span {
      background: #0b0b0b
    }

    .admin-nav {
      display: flex;
      flex-direction: column;
      padding: 16px 12px;
      gap: 4px;
      flex: 1
    }

    .admin-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border: 0;
      background: none;
      color: #888;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 8px;
      text-align: left;
      width: 100%;
      transition: .15s background, .15s color;
      font-family: inherit;
    }

    .admin-nav-item:hover {
      background: #1a1a1a;
      color: #fff
    }

    .admin-nav-item.active {
      background: #fff;
      color: #0b0b0b
    }

    .nav-icon {
      font-size: 16px;
      flex-shrink: 0;
      width: 20px;
      text-align: center
    }

    .nav-badge {
      margin-left: auto;
      background: var(--pink);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 999px;
      min-width: 20px;
      text-align: center;
    }

    .admin-logout {
      padding: 16px 20px;
      border: 0;
      border-top: 1px solid #1a1a1a;
      background: none;
      color: #555;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      transition: .15s color;
    }

    .admin-logout:hover {
      color: #fff
    }

    /* Main area */
    .admin-main {
      overflow-y: auto;
      padding: 32px;
      background: var(--bg)
    }

    .admin-tab {
      display: none
    }

    .admin-tab.active {
      display: block
    }

    .admin-page-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .admin-page-head h1 {
      margin: 0;
      font-size: 28px;
      font-weight: 800
    }

    .admin-date {
      font-size: 13px;
      color: #777;
      font-weight: 500
    }

    /* Stat cards */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .stat-card {
      background: #fff;
      border: 3px solid #0b0b0b;
      padding: 24px;
      box-shadow: 4px 4px 0 var(--sc, #0b0b0b);
      transition: .2s transform, .2s box-shadow;
    }

    .stat-card:hover {
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0 var(--sc, #0b0b0b)
    }

    .stat-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #777;
      margin-bottom: 8px
    }

    .stat-val {
      font-size: 36px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 4px
    }

    .stat-sub {
      font-size: 12px;
      color: #aaa
    }

    /* Admin cards */
    .admin-card {
      background: #fff;
      border: 3px solid #0b0b0b;
      padding: 24px;
      box-shadow: 4px 4px 0 #0b0b0b
    }

    .admin-card-head {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid #f0f0f0
    }

    /* Tables */
    .admin-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px
    }

    .admin-table th {
      text-align: left;
      padding: 10px 12px;
      border-bottom: 2px solid #0b0b0b;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #777;
    }

    .admin-table td {
      padding: 12px;
      border-bottom: 1px solid #f0f0f0;
      vertical-align: middle
    }

    .admin-table tr:last-child td {
      border-bottom: 0
    }

    .admin-table tr:hover td {
      background: #fafafa
    }

    /* Badges */
    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 999px
    }

    .badge-new {
      background: #e3f7ec;
      color: #22a45d
    }

    .badge-read {
      background: #f0f0f0;
      color: #777
    }

    .badge-edit {
      background: var(--blue);
      color: #fff;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      border: 0;
      font-family: inherit;
      border-radius: 4px;
      transition: .15s opacity
    }

    .badge-edit:hover {
      opacity: .8
    }

    .badge-delete {
      background: var(--pink);
      color: #fff;
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      border: 0;
      font-family: inherit;
      border-radius: 4px;
      transition: .15s opacity
    }

    .badge-delete:hover {
      opacity: .8
    }

    /* Forms */
    .form-group {
      margin-bottom: 16px
    }

    .form-label {
      display: block;
      font-weight: 700;
      margin-bottom: 6px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid #e0e0e0;
      font-family: inherit;
      font-size: 14px;
      border-radius: 6px;
      background: #fff;
      transition: .2s border-color;
      outline: none;
    }

    .form-control:focus {
      border-color: #0b0b0b
    }

    .color-input {
      height: 46px;
      padding: 4px 8px;
      cursor: pointer
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    /* Modals */
    #modalOverlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, .5);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    #modalOverlay.open {
      display: flex
    }

    .admin-modal {
      display: none;
      background: #fff;
      border: 3px solid #0b0b0b;
      padding: 32px;
      width: 100%;
      max-width: 600px;
      box-shadow: 12px 12px 0 #0b0b0b;
      max-height: 90vh;
      overflow-y: auto;
    }

    .admin-modal.open {
      display: block
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px
    }

    .modal-head h2 {
      margin: 0;
      font-size: 22px;
      font-weight: 800
    }

    .modal-close {
      background: none;
      border: 2px solid #0b0b0b;
      width: 32px;
      height: 32px;
      cursor: pointer;
      font-size: 14px;
      border-radius: 4px;
      font-family: inherit;
      transition: .15s background
    }

    .modal-close:hover {
      background: #0b0b0b;
      color: #fff
    }

    /* Toast */
    #toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 20000;
      background: #0b0b0b;
      color: #fff;
      padding: 14px 22px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 4px 4px 0 var(--pink);
      opacity: 0;
      transform: translateY(16px);
      transition: .3s opacity, .3s transform;
      pointer-events: none;
    }

    #toast.show {
      opacity: 1;
      transform: translateY(0)
    }

    /* Empty state */
    .empty-msg {
      color: #aaa;
      font-size: 14px;
      text-align: center;
      padding: 32px 16px;
      margin: 0
    }

    /* Lead detail */
    .lead-detail-row {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      font-size: 14px
    }

    .lead-detail-label {
      font-weight: 700;
      min-width: 80px;
      color: #777
    }

    .lead-detail-val {
      color: #0b0b0b;
      word-break: break-word
    }

    /* -- Mobile Admin ------------------------------------------- */
    @media(max-width:768px) {

      /* Shell: single column, full height */
      .admin-shell {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: 100%
      }

      /* Hide desktop sidebar */
      .admin-sidebar {
        display: none
      }

      /* Mobile top bar */
      .admin-mobile-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #0b0b0b;
        color: #fff;
        padding: 0 16px;
        height: 56px;
        border-bottom: 3px solid #0b0b0b;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 200;
      }

      .admin-mobile-logo {
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px
      }

      .admin-mobile-logo img {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        object-fit: cover;
        border: 2px solid #333
      }

      .admin-hamburger {
        background: none;
        border: 2px solid #333;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
        padding: 7px 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        transition: .2s border-color;
      }

      .admin-hamburger:hover {
        border-color: #fff
      }

      .admin-hamburger span {
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        display: block
      }

      .admin-mobile-tab-label {
        font-size: 13px;
        color: #777;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px
      }

      /* Bottom-sheet nav drawer */
      .admin-drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9500;
        background: rgba(0, 0, 0, .5);
      }

      .admin-drawer-overlay.open {
        display: block
      }

      .admin-drawer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9600;
        background: #0b0b0b;
        border-radius: 20px 20px 0 0;
        border-top: 3px solid #222;
        padding: 0 0 env(safe-area-inset-bottom, 16px);
        transform: translateY(100%);
        transition: .28s transform cubic-bezier(.25, .8, .25, 1);
        max-height: 85vh;
        overflow-y: auto;
      }

      .admin-drawer.open {
        transform: translateY(0)
      }

      .admin-drawer-handle {
        width: 36px;
        height: 4px;
        background: #333;
        border-radius: 2px;
        margin: 12px auto 8px
      }

      .admin-drawer-user {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px 16px;
        border-bottom: 1px solid #1a1a1a
      }

      .admin-drawer-user img {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        object-fit: cover;
        border: 2px solid #2a2a2a
      }

      .admin-drawer-name {
        font-size: 15px;
        font-weight: 800;
        color: #fff
      }

      .admin-drawer-role {
        font-size: 11px;
        color: #555;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .5px
      }

      .admin-drawer-nav {
        display: flex;
        flex-direction: column;
        padding: 10px 12px;
        gap: 2px
      }

      .admin-drawer-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border: 0;
        background: none;
        color: #888;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 10px;
        text-align: left;
        width: 100%;
        font-family: inherit;
        transition: .15s background, .15s color;
      }

      .admin-drawer-item:hover {
        background: #1a1a1a;
        color: #fff
      }

      .admin-drawer-item.active {
        background: #fff;
        color: #0b0b0b
      }

      .admin-drawer-item .nav-icon {
        font-size: 18px;
        width: 22px;
        text-align: center;
        flex-shrink: 0
      }

      .admin-drawer-item .nav-badge {
        margin-left: auto;
        background: var(--pink);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        padding: 2px 7px;
        border-radius: 999px
      }

      .admin-drawer-sep {
        height: 1px;
        background: #1a1a1a;
        margin: 6px 12px
      }

      .admin-drawer-logout {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 14px 28px;
        border: 0;
        background: none;
        color: #555;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        transition: .15s color;
      }

      .admin-drawer-logout:hover {
        color: #fff
      }

      /* Main content area scrolls */
      .admin-main {
        padding: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
      }

      /* Stat grid: 2 cols */
      .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      .stat-card {
        padding: 16px
      }

      .stat-val {
        font-size: 28px
      }

      /* Dashboard panels: stack */
      #dashTab>div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
      }

      /* Page head: keep row but shrink */
      .admin-page-head h1 {
        font-size: 22px
      }

      .admin-date {
        display: none
      }

      /* Tables -> card list on mobile */
      .admin-table thead {
        display: none
      }

      .admin-table,
      .admin-table tbody,
      .admin-table tr,
      .admin-table td {
        display: block;
        width: 100%
      }

      .admin-table tr {
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 10px;
        background: #fff;
      }

      .admin-table tr:hover td {
        background: transparent
      }

      .admin-table td {
        padding: 4px 0;
        border: none;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
      }

      .admin-table td:before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .5px;
        color: #aaa;
        min-width: 70px;
        flex-shrink: 0;
      }

      /* Action buttons row */
      .admin-table td:last-child {
        justify-content: flex-start;
        gap: 8px;
        padding-top: 8px;
        border-top: 1px solid #f0f0f0;
        margin-top: 4px
      }

      .admin-table td:last-child:before {
        display: none
      }

      /* Forms */
      .form-row {
        grid-template-columns: 1fr
      }

      /* Modals: full-screen sheet from bottom */
      #modalOverlay {
        padding: 0;
        align-items: flex-end
      }

      .admin-modal {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        border-bottom: none;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, .2);
        padding: 20px 20px env(safe-area-inset-bottom, 20px);
      }

      /* Login card */
      .login-card {
        padding: 32px 24px;
        margin: 0 16px
      }

      /* Admin cards */
      .admin-card {
        padding: 16px;
        box-shadow: 3px 3px 0 #0b0b0b
      }

      .admin-card-head {
        font-size: 12px
      }

      /* Toast: bottom-center */
      #toast {
        bottom: 80px;
        right: 16px;
        left: 16px;
        text-align: center
      }
    }

    /* Desktop: hide mobile-only elements */
    @media(min-width:769px) {
      .admin-mobile-bar {
        display: none
      }

      .admin-drawer-overlay,
      .admin-drawer {
        display: none !important
      }
    }
  
