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

    :root {
      --bg: #08141d;
      --bg-soft: #0d1f2a;
      --surface: #112735;
      --surface-2: #173446;
      --text: #eaf3f7;
      --muted: #a7c0cf;
      --line: #244559;
      --accent: #2dd4bf;
      --accent-2: #f59e0b;
      --accent-3: #38bdf8;
      --ok: #22c55e;
      --danger: #ef4444;
      --shadow: 0 10px 35px rgba(3, 10, 15, 0.45);
      --radius: 16px;
      --radius-xl: 24px;
      --speed: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --max: 1180px;
      --ring: 0 0 0 4px rgba(45, 212, 191, 0.15);
      --bg-gradient: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.15), transparent 35%), radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.15), transparent 32%), linear-gradient(145deg, #08141d 0%, #0d1f2a 45%, #102637 100%);
      --hero-glass: rgba(255, 255, 255, 0.02);
      --hero-border: rgba(255, 255, 255, 0.1);
      --button-gradient: linear-gradient(135deg, var(--accent), var(--accent-3));
      --button-gradient-2: linear-gradient(135deg, var(--accent-2), #f97316);
    }

    body[data-theme="light"] {
      --bg: #f5fafc;
      --bg-soft: #eef6fb;
      --surface: #ffffff;
      --surface-2: #e8f2f8;
      --text: #082032;
      --muted: #4c6a7e;
      --line: #c9dce8;
      --accent: #0ea5a0;
      --accent-2: #ea580c;
      --accent-3: #0284c7;
      --shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
      --ring: 0 0 0 4px rgba(14, 165, 160, 0.12);
      --bg-gradient: radial-gradient(circle at 8% 2%, rgba(2, 132, 199, 0.22), transparent 34%), radial-gradient(circle at 86% 12%, rgba(234, 88, 12, 0.2), transparent 28%), radial-gradient(circle at 48% 92%, rgba(14, 165, 160, 0.16), transparent 34%), linear-gradient(145deg, #f9fcff 0%, #eef6fb 52%, #e3f0f9 100%);
      --hero-glass: rgba(255, 255, 255, 0.72);
      --hero-border: rgba(2, 132, 199, 0.14);
      --button-gradient: linear-gradient(135deg, var(--accent), var(--accent-3));
      --button-gradient-2: linear-gradient(135deg, var(--accent-2), #f97316);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "IBM Plex Sans", sans-serif;
      background: var(--bg-gradient);
      color: var(--text);
      line-height: 1.65;
      min-height: 100vh;
      overflow-x: hidden;
      transition: background var(--speed), color var(--speed);
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity var(--speed);
    }

    body[data-theme="light"]::before {
      opacity: 0.6;
      background:
        radial-gradient(ellipse 36% 28% at 18% 16%, rgba(56, 189, 248, 0.26), transparent 70%),
        radial-gradient(ellipse 30% 24% at 82% 22%, rgba(234, 88, 12, 0.18), transparent 70%),
        radial-gradient(ellipse 34% 26% at 52% 88%, rgba(14, 165, 160, 0.2), transparent 72%);
      animation: light-aurora-drift 20s ease-in-out infinite alternate;
    }

    body[data-theme="light"]::after {
      opacity: 0.38;
      background:
        repeating-linear-gradient(
          -18deg,
          rgba(2, 132, 199, 0.04) 0 1px,
          transparent 1px 24px
        ),
        repeating-linear-gradient(
          18deg,
          rgba(14, 165, 160, 0.03) 0 1px,
          transparent 1px 26px
        );
      mix-blend-mode: soft-light;
      animation: light-grid-float 16s linear infinite;
    }

    body.menu-open {
      overflow: hidden;
    }

    main,
    section,
    .hero-wrap,
    .hero-main,
    .hero-side,
    .grid-2,
    .highlights,
    .timeline,
    .skills-layout,
    .certs-grid,
    .contact-grid,
    .contact-cards,
    .glass-card,
    .highlight,
    .timeline-item,
    .skill-category,
    .cert,
    .social-card,
    .experience-notes {
      min-width: 0;
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.5px, transparent 0.5px);
      background-size: 2px 2px;
      opacity: 0.2;
      mix-blend-mode: soft-light;
    }

    body[data-theme="light"] .noise {
      opacity: 0.32;
      background-image: radial-gradient(rgba(2, 132, 199, 0.14) 0.5px, transparent 0.5px);
      mix-blend-mode: multiply;
    }

    #particles-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.8;
    }

    body[data-theme="light"] #particles-canvas {
      opacity: 0.62;
    }

    @keyframes light-aurora-drift {
      0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
      }

      50% {
        transform: translate3d(1%, 1.5%, 0) scale(1.03);
      }

      100% {
        transform: translate3d(-1%, 0.8%, 0) scale(1.02);
      }
    }

    @keyframes light-grid-float {
      0% {
        transform: translate3d(0, 0, 0);
      }

      100% {
        transform: translate3d(14px, -10px, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      body[data-theme="light"]::before,
      body[data-theme="light"]::after {
        animation: none;
      }
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      z-index: 120;
      background: var(--button-gradient);
      box-shadow: 0 0 16px rgba(45, 212, 191, 0.5);
      transition: width 0.08s linear;
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin-inline: auto;
      position: relative;
      z-index: 1;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 110;
      border-bottom: 1px solid transparent;
      transition: background var(--speed), border-color var(--speed), padding var(--speed);
      padding: 16px 0;
    }

    nav.scrolled {
      background: color-mix(in srgb, var(--bg) 82%, transparent);
      backdrop-filter: blur(14px);
      border-color: var(--line);
      padding: 12px 0;
    }

    .nav-wrap {
      width: min(var(--max), calc(100% - 48px));
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      font-family: "Sora", sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--text);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .logo-badge {
      width: 34px;
      height: 34px;
      border-radius: 11px;
      display: grid;
      place-items: center;
      color: #04222f;
      background: var(--button-gradient);
      box-shadow: 0 4px 16px rgba(56, 189, 248, 0.35);
      font-size: 0.86rem;
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 600;
      position: relative;
      transition: color var(--speed);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      border-radius: 4px;
      background: var(--button-gradient);
      transition: width var(--speed);
    }

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

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-btn,
    .menu-btn {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: var(--surface);
      color: var(--text);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: transform var(--speed), border-color var(--speed), background var(--speed);
    }

    .icon-btn:hover,
    .menu-btn:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: var(--surface-2);
    }

    .menu-btn {
      display: none;
    }

    .btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: none;
      border-radius: 999px;
      padding: 13px 23px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: transform var(--speed), box-shadow var(--speed), filter var(--speed), background var(--speed), color var(--speed), border-color var(--speed);
    }

    .btn-primary {
      background: var(--button-gradient);
      color: #04222f;
      box-shadow: 0 8px 24px rgba(45, 212, 191, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(56, 189, 248, 0.35);
      filter: saturate(1.05);
    }

    .btn-secondary {
      background: var(--button-gradient-2);
      color: #211002;
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(249, 115, 22, 0.35);
    }

    .btn-ghost {
      border: 1px solid var(--line);
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      color: var(--text);
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      background: var(--surface-2);
      transform: translateY(-2px);
    }

    .ripple {
      position: absolute;
      border-radius: 999px;
      transform: scale(0);
      animation: ripple 650ms ease-out;
      background: rgba(255, 255, 255, 0.32);
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(3.4);
        opacity: 0;
      }
    }

    section {
      padding: 96px 0;
    }

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

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.14em;
      font-size: 0.76rem;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.8rem, 2.9vw, 2.8rem);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .section-sub {
      color: var(--muted);
      max-width: 720px;
      font-size: 1.02rem;
    }

    .section-line {
      width: 64px;
      height: 4px;
      border-radius: 999px;
      margin-top: 22px;
      background: var(--button-gradient);
    }

    #hero {
      padding: 140px 0 70px;
      min-height: 100vh;
      display: grid;
      align-items: center;
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }

    .hero-main {
      padding: clamp(24px, 4vw, 46px);
      border-radius: var(--radius-xl);
      border: 1px solid var(--hero-border);
      background: var(--hero-glass);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .hero-main::before {
      content: "";
      position: absolute;
      inset: auto -20% -30% -20%;
      height: 180px;
      background: radial-gradient(circle, rgba(45, 212, 191, 0.2), transparent 72%);
      pointer-events: none;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
      color: var(--accent);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.74rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-title {
      font-family: "Sora", sans-serif;
      font-size: clamp(2.2rem, 6vw, 4.8rem);
      line-height: 1.05;
      margin-bottom: 14px;
    }

    .hero-title span {
      background: linear-gradient(120deg, var(--accent), var(--accent-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .typed {
      color: var(--accent-3);
      font-size: clamp(1rem, 2.4vw, 1.22rem);
      font-weight: 600;
      min-height: 34px;
      margin-bottom: 18px;
    }

    .hero-text {
      color: var(--muted);
      font-size: 1.04rem;
      max-width: 64ch;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .hero-stat {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      padding: 14px;
      text-align: center;
    }

    .hero-stat strong {
      display: block;
      font-family: "Sora", sans-serif;
      font-size: 1.7rem;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 5px;
    }

    .hero-stat span {
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .hero-side {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      align-content: start;
    }

    .glass-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      box-shadow: var(--shadow);
      padding: 20px;
      transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
      transform-style: preserve-3d;
    }

    .glass-card:hover {
      border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
      box-shadow: 0 12px 30px rgba(3, 10, 15, 0.46);
    }

    .quick-title {
      font-family: "Sora", sans-serif;
      font-size: 0.96rem;
      margin-bottom: 8px;
    }

    .quick-list {
      list-style: none;
      display: grid;
      gap: 6px;
    }

    .quick-list li {
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
    }

    .quick-list i {
      color: var(--accent);
      width: 20px;
      text-align: center;
    }

    .availability {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border-radius: 14px;
      border: 1px solid color-mix(in srgb, var(--ok) 25%, var(--line));
      background: color-mix(in srgb, var(--ok) 8%, transparent);
      margin-top: 8px;
    }

    .availability-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--ok);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
      animation: pulse 1.7s infinite;
    }

    @keyframes pulse {
      70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
      }
    }

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

    .about-text p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .chip {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 0.82rem;
      color: var(--muted);
      background: color-mix(in srgb, var(--surface) 84%, transparent);
      transition: transform var(--speed), border-color var(--speed), color var(--speed);
    }

    .chip:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      color: var(--text);
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .contact-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .contact-list a {
      color: inherit;
      text-decoration: none;
      transition: color var(--speed);
      overflow-wrap: anywhere;
    }

    .contact-list a:hover {
      color: var(--accent);
    }

    .contact-ic {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: var(--accent);
      border: 1px solid var(--line);
      background: color-mix(in srgb, var(--surface-2) 65%, transparent);
      flex-shrink: 0;
    }

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

    .highlight {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 20px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      transition: transform var(--speed), border-color var(--speed);
      position: relative;
      overflow: hidden;
    }

    a.highlight {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .highlight::before {
      content: "";
      position: absolute;
      inset: auto -40% -40% -40%;
      height: 130px;
      opacity: 0;
      transition: opacity var(--speed);
      background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 72%);
      pointer-events: none;
    }

    .highlight:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
    }

    .highlight:hover::before {
      opacity: 1;
    }

    .highlight h3 {
      font-family: "Sora", sans-serif;
      margin-bottom: 8px;
      font-size: 1.02rem;
    }

    .highlight p {
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 10px;
    }

    .highlight small {
      color: var(--accent-2);
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .highlights-block {
      margin-top: 40px;
      padding-top: 36px;
      border-top: 1px solid var(--line);
    }

    .highlights-block-title {
      font-family: "Sora", sans-serif;
      font-size: 1.15rem;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .highlights-block-title i {
      color: var(--accent);
    }

    .highlights-block-sub {
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 18px;
      max-width: 62ch;
    }

    .highlight-badge {
      display: inline-block;
      margin-bottom: 10px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--accent-2) 35%, var(--line));
      background: color-mix(in srgb, var(--accent-2) 10%, transparent);
      color: var(--accent-2);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .highlights-sites {
      align-items: stretch;
    }

    .highlight.site-highlight {
      display: flex;
      flex-direction: column;
      padding: 0;
      height: 100%;
      min-height: 100%;
    }

    a.highlight.site-highlight {
      cursor: pointer;
    }

    .site-highlight::before {
      display: none;
    }

    .site-highlight-body {
      position: relative;
      z-index: 1;
      flex: 1 1 auto;
      padding: 20px 20px 16px;
    }

    .site-highlight-body p {
      margin-bottom: 0;
    }

    .site-highlight-url {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      flex-shrink: 0;
      padding: 12px 20px;
      border-top: 1px solid var(--line);
      background: color-mix(in srgb, var(--surface-2) 55%, transparent);
      color: var(--accent-2);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      transition: background var(--speed), border-color var(--speed);
    }

    .site-highlight-url i {
      font-size: 0.72rem;
      opacity: 0.85;
    }

    .site-highlight:hover .site-highlight-url {
      border-top-color: color-mix(in srgb, var(--accent-2) 35%, var(--line));
      background: color-mix(in srgb, var(--surface-2) 72%, transparent);
    }

    .site-highlight:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .timeline {
      display: grid;
      gap: 18px;
    }

    .experience-notes {
      margin-bottom: 20px;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
    }

    .experience-notes h3 {
      font-family: "Sora", sans-serif;
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .key-points {
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .key-points li {
      color: var(--muted);
      font-size: 0.92rem;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .key-points li i {
      color: var(--accent);
      margin-top: 4px;
      width: 16px;
      text-align: center;
      flex-shrink: 0;
    }

    .timeline-item {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      padding: 18px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--speed), box-shadow var(--speed);
      overflow: hidden;
    }

    .timeline-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-item::before {
      content: none;
    }

    .timeline-item:hover {
      border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
      box-shadow: 0 14px 28px rgba(3, 10, 15, 0.28);
    }

    .timeline-group {
      position: relative;
      border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
      border-radius: 18px;
      background: color-mix(in srgb, var(--surface) 88%, transparent);
      padding: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .timeline-group::after {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-3), transparent 85%);
    }

    .timeline-group::before {
      content: none;
    }

    .timeline-group-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      padding: 14px 16px;
      border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
      border-radius: 14px;
      background: linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 72%, transparent), color-mix(in srgb, var(--surface) 92%, transparent));
    }

    .timeline-group-meta {
      color: var(--accent);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
      background: color-mix(in srgb, var(--accent) 10%, transparent);
    }

    .timeline-roles {
      display: grid;
      gap: 12px;
      position: relative;
      padding-top: 2px;
    }

    .timeline-roles::before {
      content: none;
    }

    .timeline-item-nested {
      margin-left: 0;
      padding: 16px;
      background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--surface-2) 52%, transparent));
      border-color: color-mix(in srgb, var(--accent-3) 16%, var(--line));
    }

    .timeline-item-nested::before {
      content: none;
    }

    .timeline-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 7px;
    }

    .timeline-company {
      font-size: 1.08rem;
      font-weight: 700;
      font-family: "Sora", sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }

    .timeline-company::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--button-gradient);
      box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.1);
      flex-shrink: 0;
    }

    .timeline-company a {
      color: inherit;
      text-decoration: none;
      transition: color var(--speed);
    }

    .timeline-company a:hover {
      color: var(--accent);
    }

    .timeline-role {
      color: var(--accent-3);
      font-size: 0.9rem;
      margin-bottom: 8px;
      font-weight: 600;
      line-height: 1.35;
    }

    .timeline-period {
      font-size: 0.76rem;
      border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
      border-radius: 999px;
      padding: 6px 11px;
      color: var(--text);
      height: fit-content;
      background: linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 85%, transparent), color-mix(in srgb, var(--surface) 90%, transparent));
      font-weight: 600;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .timeline-desc {
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.72;
    }

    .timeline-bullets {
      list-style: none;
      margin-top: 10px;
      display: grid;
      gap: 6px;
    }

    .timeline-bullets li {
      color: var(--muted);
      font-size: 0.88rem;
      display: flex;
      align-items: flex-start;
      gap: 9px;
      line-height: 1.6;
    }

    .timeline-bullets li i {
      color: var(--accent-2);
      margin-top: 4px;
      width: 14px;
      text-align: center;
      flex-shrink: 0;
    }

    .skills-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .skill-category {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      transition: border-color var(--speed), transform var(--speed);
    }

    .skill-category:hover {
      border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
      transform: translateY(-2px);
    }

    .skill-category-head {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }

    .skill-category-icon {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
      background: color-mix(in srgb, var(--accent) 10%, transparent);
      color: var(--accent);
      font-size: 1rem;
    }

    .skill-category-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .skill-category-desc {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.55;
    }

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

    .skill-tag {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 5px 11px;
      font-size: 0.78rem;
      color: var(--muted);
      background: color-mix(in srgb, var(--surface-2) 55%, transparent);
      transition: border-color var(--speed), color var(--speed);
    }

    .skill-category:hover .skill-tag {
      border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
    }

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

    .cert {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      padding: 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      transition: transform var(--speed), border-color var(--speed);
    }

    .cert:hover {
      transform: translateY(-3px);
      border-color: color-mix(in srgb, var(--accent-2) 45%, var(--line));
    }

    .cert i {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--accent-2);
      border: 1px solid color-mix(in srgb, var(--accent-2) 30%, var(--line));
      background: color-mix(in srgb, var(--accent-2) 12%, transparent);
    }

    .cert h4 {
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

    .cert p {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
      max-width: 980px;
      margin-inline: auto;
    }

    .contact-cards {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      overflow: visible;
      padding-bottom: 0;
    }

    .social-card {
      border: 1px solid var(--line);
      border-radius: 14px;
      text-decoration: none;
      color: var(--text);
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      padding: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 0.92rem;
      min-height: 60px;
      flex: 1 1 0;
      min-width: 0;
      transition: transform var(--speed), border-color var(--speed), background var(--speed);
    }

    .social-card:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
      background: color-mix(in srgb, var(--surface-2) 80%, transparent);
    }

    .social-card i {
      width: 30px;
      text-align: center;
      color: var(--accent);
      font-size: 1.08rem;
    }

    .whatsapp-card {
      border-color: color-mix(in srgb, #22c55e 38%, var(--line));
      background: color-mix(in srgb, #22c55e 10%, var(--surface));
    }

    .whatsapp-card i {
      color: #22c55e;
    }

    .whatsapp-card:hover {
      border-color: #22c55e;
      background: color-mix(in srgb, #22c55e 18%, var(--surface-2));
    }

    @media (min-width: 980px) {
      .contact-cards {
        gap: 14px;
      }

      .social-card {
        min-height: 72px;
        padding: 16px 18px;
        font-size: 0.95rem;
      }
    }

    footer {
      padding: 24px 0 40px;
      border-top: 1px solid var(--line);
      text-align: center;
      color: var(--muted);
      font-size: 0.84rem;
      position: relative;
      z-index: 2;
    }

    .to-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 80;
      width: 44px;
      height: 44px;
      border-radius: 13px;
      border: 1px solid var(--line);
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      color: var(--text);
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity var(--speed), transform var(--speed), border-color var(--speed);
    }

    .to-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .to-top:hover {
      border-color: var(--accent);
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .hero-wrap,
      .grid-2,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .highlights,
      .certs-grid,
      .skills-layout {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 920px) and (orientation: landscape) {
      #hero {
        min-height: auto;
        padding: 108px 0 42px;
      }

      .hero-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
      }

      .hero-main {
        padding: 24px;
      }

      .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 10px;
      }

      .typed {
        min-height: 24px;
        margin-bottom: 10px;
      }

      .hero-text {
        font-size: 0.94rem;
        margin-bottom: 16px;
      }

      .hero-actions {
        margin-bottom: 16px;
      }

      .hero-stat {
        padding: 10px 12px;
      }

      .hero-stat strong {
        font-size: 1.4rem;
      }

      .glass-card {
        padding: 14px;
      }

      .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .container,
      .nav-wrap {
        width: min(var(--max), calc(100% - 28px));
      }

      .noise {
        opacity: 0.12;
      }

      #particles-canvas {
        opacity: 0.45;
      }

      nav {
        padding: 12px 0;
      }

      .menu-btn {
        display: grid;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        right: 14px;
        left: 14px;
        margin-top: 8px;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: color-mix(in srgb, var(--surface) 95%, transparent);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        box-shadow: var(--shadow);
      }

      .nav-links a {
        width: 100%;
        padding: 4px 0;
      }

      .nav-links.open {
        display: flex;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-main,
      .glass-card,
      .experience-notes,
      .timeline-item,
      .highlight,
      .skill-category,
      .cert,
      .social-card {
        padding: 16px;
      }

      .site-highlight {
        padding: 0;
      }

      .highlight.site-highlight {
        display: flex;
      }

      .site-highlight-body {
        padding: 16px 16px 14px;
      }

      .site-highlight-url {
        padding: 10px 16px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-side {
        grid-template-columns: 1fr;
      }

      .timeline-group {
        padding: 16px;
      }

      .timeline-group-head {
        padding: 12px 14px;
      }

      .timeline-item-nested {
        margin-left: 0;
      }

      .highlights,
      .skills-layout,
      .certs-grid,
      .contact-cards {
        grid-template-columns: 1fr;
      }

      section {
        padding: 74px 0;
      }

      #hero {
        padding-top: 112px;
      }
    }

    @media (max-width: 760px) and (orientation: landscape) {
      #hero {
        padding-top: 92px;
      }

      .hero-main {
        padding: 18px;
      }

      .hero-chip {
        margin-bottom: 12px;
      }

      .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
      }

      .hero-text {
        font-size: 0.9rem;
        max-width: none;
      }

      .hero-actions {
        flex-direction: row;
        gap: 10px;
      }

      .btn {
        width: auto;
        min-width: 0;
        padding: 11px 16px;
        font-size: 0.82rem;
      }

      .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 560px) {
      .logo {
        font-size: 0.96rem;
        gap: 8px;
      }

      .logo-badge {
        width: 30px;
        height: 30px;
        border-radius: 10px;
      }

      .hero-title {
        font-size: clamp(1.95rem, 12vw, 3rem);
      }

      .hero-chip {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .hero-text,
      .section-sub,
      .timeline-desc,
      .key-points li,
      .timeline-bullets li,
      .highlight p {
        font-size: 0.92rem;
      }

      .timeline {
        padding-left: 0;
      }

      .timeline-group-head {
        margin-bottom: 12px;
        padding: 12px;
      }

      .timeline-group-meta {
        font-size: 0.78rem;
        padding: 5px 9px;
      }

      .timeline-item-nested {
        margin-left: 0;
        padding: 14px;
      }

      .timeline-company {
        font-size: 1rem;
      }

      .timeline-period {
        font-size: 0.72rem;
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .contact-list li {
        align-items: flex-start;
      }

      .social-card {
        justify-content: flex-start;
      }

      .to-top {
        right: 14px;
        bottom: 14px;
      }
    }

    @media (hover: none), (pointer: coarse) {
      .btn-primary:hover,
      .btn-secondary:hover,
      .btn-ghost:hover,
      .glass-card:hover,
      .highlight:hover,
      .skill-category:hover,
      .cert:hover,
      .social-card:hover,
      .to-top:hover,
      .icon-btn:hover,
      .menu-btn:hover {
        transform: none;
      }

      .btn-primary:hover,
      .btn-secondary:hover,
      .glass-card:hover,
      .highlight:hover,
      .skill-category:hover,
      .cert:hover,
      .social-card:hover {
        box-shadow: var(--shadow);
      }
    }
