/* ══════════════════════════════════════════════════════════════
   ALISHERBEK QURAMBAYEV — PORTFOLIO STYLESHEET
   styles.css — All visual styles for the portfolio
══════════════════════════════════════════════════════════════ */

/* ── RESET & DESIGN TOKENS ── */
    :root {
      --bg: #070709;
      --surface: rgba(255, 255, 255, 0.025);
      --surface-solid: #111114;
      --surface-2: rgba(255, 255, 255, 0.05);
      --border: rgba(255, 255, 255, 0.16);
      --border-strong: rgba(255, 255, 255, 0.45);
      --text: #f4f4f6;
      --muted: #9ca3af;
      --muted-2: #71717a;
      --green: #ffffff;
      --grid: rgba(255, 255, 255, 0.035);
      --invert: #ffffff;
      --invert-text: #09090b;
      --glow: rgba(255, 255, 255, 0.16);
      --glow-strong: rgba(255, 255, 255, 0.38);
      --a1: #ffffff;
      --a2: #e4e4e7;
      --a3: #d4d4d8;
      --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.005) 100%);
      --card-border: rgba(255, 255, 255, 0.22);
      --card-hover-border: rgba(255, 255, 255, 0.55);
      --spotlight: rgba(255, 255, 255, 0.08);
      --glass-specular: inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 40px -10px rgba(0, 0, 0, 0.35);
      --glass-blur: blur(1px);
      --nav-blur: blur(16px) saturate(180%);
      --nav-bg: rgba(10, 10, 12, 0.65);
      --nav-border: rgba(255, 255, 255, 0.18);
      --drawer-bg: linear-gradient(145deg, rgba(16, 16, 18, 0.85) 0%, rgba(10, 10, 12, 0.75) 100%);
    }

    [data-theme="light"] {
      --bg: #f7f5f0;
      --surface: rgba(255, 255, 255, 0.40);
      --surface-solid: #ffffff;
      --surface-2: rgba(255, 255, 255, 0.65);
      --border: rgba(0, 0, 0, 0.06);
      --border-strong: rgba(25, 24, 22, 0.25);
      --text: #191816;
      --muted: #5e5a52;
      --muted-2: #8a857b;
      --green: #191816;
      --grid: rgba(60, 50, 40, 0.045);
      --invert: #191816;
      --invert-text: #ffffff;
      --glow: rgba(255, 255, 255, 0.65);
      --glow-strong: rgba(255, 255, 255, 0.90);
      --a1: #191816;
      --a2: #3a3833;
      --a3: #5e5a52;
      --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.18) 100%);
      --card-border: rgba(255, 255, 255, 0.90);
      --card-hover-border: rgba(25, 24, 22, 0.40);
      --spotlight: rgba(255, 255, 255, 0.40);
      --glass-specular: inset 0 1.5px 2px 0 rgba(255, 255, 255, 1), inset 0 0 0 1px rgba(255, 255, 255, 0.65), 0 12px 32px -8px rgba(35, 30, 24, 0.05);
      --glass-blur: blur(0.5px);
      --nav-blur: blur(14px) saturate(180%);
      --nav-bg: rgba(248, 246, 242, 0.70);
      --nav-border: rgba(255, 255, 255, 0.95);
      --drawer-bg: linear-gradient(145deg, rgba(252, 251, 248, 0.90) 0%, rgba(246, 245, 241, 0.80) 100%);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.65;
      transition: background 0.4s ease, color 0.4s ease;
      position: relative;
    }

    /* Grid background */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: 
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
      background-size: 48px 48px;
      -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 35%, #000 65%, transparent 100%);
      mask-image: radial-gradient(ellipse 95% 85% at 50% 35%, #000 65%, transparent 100%);
    }

    /* Subtle top radial ambiance */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 120% 80% at 50% 0%, var(--glow), transparent 60%);
    }

    ::selection { background: var(--text); color: var(--bg); }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--a1), var(--a2));
      border-radius: 10px;
      border: 2px solid var(--bg);
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--a2); }

    h1, h2, h3, h4, .brand-name, .font-heading {
      font-family: 'Outfit', sans-serif;
      letter-spacing: -0.02em;
    }

    /* ── SITE PRELOADER (Minimalist, luxury glass aesthetic) ── */
    .site-preloader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #070709;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
      user-select: none;
      -webkit-user-select: none;
    }
    .site-preloader.is-loaded {
      opacity: 0;
      visibility: hidden;
      transform: scale(1.03);
      pointer-events: none;
    }
    .preloader-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      position: relative;
    }
    .preloader-mark-wrap {
      position: relative;
      width: 68px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .preloader-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.08);
      border-top: 2px solid #ffffff;
      border-right: 1.5px solid rgba(255, 255, 255, 0.45);
      animation: preloaderSpin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    .preloader-ring-glow {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      animation: preloaderPulse 2s ease-in-out infinite;
      pointer-events: none;
    }
    .preloader-logo {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: #f4f4f6;
      margin-left: 0.16em;
      text-shadow: 0 0 24px rgba(255, 255, 255, 0.4);
    }
    .preloader-bar-wrap {
      width: 130px;
      height: 2px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 99px;
      overflow: hidden;
      position: relative;
    }
    .preloader-bar {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), #ffffff);
      border-radius: 99px;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
      transition: width 0.14s ease-out;
      will-change: width;
    }
    .preloader-meta {
      width: 130px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      color: #71717a;
    }
    .preloader-label {
      opacity: 0.65;
    }
    .preloader-num {
      color: #a1a1aa;
      font-variant-numeric: tabular-nums;
    }
    @keyframes preloaderSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    @keyframes preloaderPulse {
      0%, 100% { opacity: 0.35; transform: scale(0.95); }
      50% { opacity: 0.85; transform: scale(1.06); }
    }

    /* ── CURSOR SPOTLIGHT ── */
    .cursor-spotlight {
      position: fixed;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(circle, var(--spotlight) 0%, transparent 65%);
      transform: translate(-50%, -50%);
      contain: strict;
      transition: opacity 0.3s;
    }
    @media (pointer: coarse) {
      .cursor-spotlight { display: none; }
    }

    /* ── SCROLL PROGRESS ── */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      z-index: 250;
      background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3));
      width: 0%;
      box-shadow: 0 0 10px var(--glow-strong);
      transition: width 0.1s linear;
    }

    /* ── GLOW ORBS ── */
    .glow-orb {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(95px);
      opacity: 0.12;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%) !important;
      animation: orbFloat 26s ease-in-out infinite alternate;
      transform: translate3d(0, 0, 0);
      will-change: transform;
    }
    [data-theme="light"] .glow-orb {
      opacity: 0.30;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.80) 0%, transparent 70%) !important;
    }
    @keyframes orbFloat {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(45px, -50px, 0) scale(1.08); }
      100% { transform: translate3d(-30px, 35px, 0) scale(0.96); }
    }

    /* ── BACK TO TOP ── */
    .back-top {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 150;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translate3d(0, 18px, 0);
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s, background 0.25s;
      pointer-events: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    .back-top.show,
    .back-top.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      pointer-events: all;
    }
    .back-top:hover {
      border-color: var(--border-strong);
      transform: translateY(-3px) scale(1.06);
      box-shadow: 0 8px 24px var(--glow-strong);
      background: var(--surface-2);
    }
    .back-top svg { width: 18px; height: 18px; }

    /* ── NAVBAR (PREMIUM FROSTED GLASS) ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 6vw;
      background: var(--nav-bg);
      backdrop-filter: var(--nav-blur);
      -webkit-backdrop-filter: var(--nav-blur);
      border-bottom: 1px solid var(--nav-border);
      box-shadow: none;
      transition: box-shadow 0.3s ease, background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
      box-sizing: border-box;
      max-width: 100vw;
    }
    nav.scrolled {
      padding: 11px 6vw;
      box-shadow: none;
      background: color-mix(in srgb, var(--nav-bg) 88%, transparent);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text);
      min-width: 0;
    }
    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--surface);
      border: 1.5px solid var(--border-strong);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, border-color 0.3s;
      flex-shrink: 0;
    }
    .brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .brand:hover .brand-logo {
      transform: scale(1.08);
      box-shadow: 0 0 20px var(--glow-strong);
      border-color: var(--a1);
    }
    .brand-name {
      font-weight: 800;
      font-size: 1.12rem;
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .nav-links {
      display: flex;
      gap: 26px;
      list-style: none;
      align-items: center;
    }
    .mobile-drawer-head {
      display: none;
    }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: color 0.25s ease;
      position: relative;
      padding: 6px 4px;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--a1), var(--a2));
      border-radius: 2px;
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    /* Lang switcher */
    .lang-switcher { position: relative; }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 50px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    }
    .lang-btn:hover {
      border-color: var(--border-strong);
      color: var(--text);
      transform: translateY(-1px);
    }
    .lang-btn svg { width: 10px; height: 10px; transition: transform 0.25s ease; }
    .lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
    .lang-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 8px;
      min-width: 130px;
      z-index: 220;
      opacity: 0;
      transform: translateY(-8px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.2s, transform 0.2s;
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 20px 50px rgba(0,0,0,0.4);
    }
    .lang-switcher.open .lang-dropdown {
      opacity: 1;
      transform: none;
      pointer-events: all;
    }
    .lang-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 10px;
      border: 1px solid transparent;
      background: none;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
      font-family: 'Outfit', sans-serif;
    }
    .lang-option:hover, .lang-option.active {
      background: var(--surface-2);
      color: var(--text);
      border-color: var(--border);
    }

    /* Theme btn */
    .theme-btn {
      width: 58px;
      height: 30px;
      border-radius: 50px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      position: relative;
      cursor: pointer;
      flex-shrink: 0;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    }
    .theme-btn:hover {
      border-color: var(--border-strong);
      box-shadow: var(--glass-specular), 0 0 14px var(--glow);
      transform: translateY(-1px);
    }
    .theme-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--invert);
      color: var(--invert-text);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.25);
      transition: transform 0.35s cubic-bezier(0.4, 1.4, 0.5, 1);
    }
    [data-theme="light"] .theme-knob { transform: translateX(28px); }

    /* Hamburger Menu Button */
    .menu-btn {
      display: none;
      align-items: center;
      justify-content: center;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      cursor: pointer;
      color: var(--text);
      width: 40px;
      height: 40px;
      border-radius: 12px;
      padding: 0;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }
    .menu-btn:hover {
      border-color: var(--border-strong);
      background: var(--surface-2);
      transform: translateY(-1px);
    }
    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 220;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    [data-theme="light"] .nav-overlay {
      background: rgba(0, 0, 0, 0.12);
    }
    .nav-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    /* ── HERO SECTION ── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      align-items: center;
      gap: 4vw;
      padding: 140px 6vw 80px;
    }
    .hero-glyph {
      position: absolute;
      top: 100px;
      right: 5vw;
      font-family: 'Outfit', sans-serif;
      font-weight: 900;
      font-size: clamp(6rem, 16vw, 14rem);
      line-height: 1;
      letter-spacing: -0.06em;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--border-strong);
      opacity: 0.35;
      z-index: 0;
      pointer-events: none;
      user-select: none;
    }
    .hero-left {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .hero-right {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Badge */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      border-radius: 50px;
      border: 1px solid var(--border);
      background: var(--surface);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 28px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }
    .badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
      transform: translate3d(-100%, 0, 0);
      animation: badgeShimmer 3.8s ease-in-out infinite;
      will-change: transform;
    }
    @keyframes badgeShimmer {
      0% { transform: translate3d(-100%, 0, 0); }
      100% { transform: translate3d(200%, 0, 0); }
    }
    .badge .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px var(--green);
      animation: blink 2s infinite ease-in-out;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.75); }
    }

    /* Headline & Morphing text */
    .hero h1 {
      font-weight: 800;
      font-size: clamp(2.5rem, 6.5vw, 5.2rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 26px;
      max-width: 18ch;
    }
    /* ── INLINE MORPHING TEXT (BLUR + THRESHOLD) ── */
    .dim {
      display: inline-block;
      vertical-align: baseline;
      margin: 0;
      padding: 0;
      line-height: inherit;
    }
    #typewriter {
      display: inline-block;
      position: relative;
      vertical-align: baseline;
      margin: 0;
      padding: 0;
      line-height: inherit;
      min-width: 3ch;
    }
    #tw-t1, #tw-t2 {
      position: absolute;
      left: 0;
      top: 0;
      white-space: nowrap;
      display: inline-block;
      width: max-content;
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      font-family: inherit;
      font-size: inherit;
      font-weight: 800;
      line-height: inherit;
      letter-spacing: inherit;
      user-select: none;
      transition: color 0.3s ease;
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.40);
    }
    [data-theme="light"] #tw-t1,
    [data-theme="light"] #tw-t2 {
      color: #191816;
      -webkit-text-fill-color: #191816;
      text-shadow: none;
    }
    #tw-spacer {
      display: inline-block;
      visibility: hidden;
      white-space: nowrap;
      pointer-events: none;
      font-family: inherit;
      font-size: inherit;
      font-weight: 800;
      line-height: inherit;
      letter-spacing: inherit;
      margin: 0;
      padding: 0;
      vertical-align: baseline;
    }

    .lead {
      color: var(--muted);
      font-size: clamp(0.95rem, 1.8vw, 1.15rem);
      max-width: 52ch;
      margin-bottom: 36px;
      line-height: 1.75;
    }

    /* CTA buttons */
    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .btn {
      padding: 13px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.94rem;
      cursor: pointer;
      border: 1px solid var(--border);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background 0.25s ease;
      position: relative;
      overflow: hidden;
      font-family: 'Outfit', sans-serif;
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    .btn-primary {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      border: 1.5px solid rgba(255, 255, 255, 0.45);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.75), inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.25);
    }
    [data-theme="light"] .btn-primary {
      background: rgba(255, 255, 255, 0.40);
      color: #0b1710;
      border: 1.5px solid rgba(255, 255, 255, 0.95);
      box-shadow: inset 0 1.5px 2px 0 rgba(255, 255, 255, 1), inset 0 0 0 1px rgba(255, 255, 255, 0.60), 0 8px 24px rgba(0, 0, 0, 0.06);
    }
    .btn-primary:hover {
      background: rgba(255, 255, 255, 0.20);
      border-color: rgba(255, 255, 255, 0.75);
      color: #ffffff;
      transform: translateY(-3px) scale(1.02);
      box-shadow: inset 0 1.5px 2px 0 #ffffff, 0 14px 36px rgba(255, 255, 255, 0.25);
    }
    [data-theme="light"] .btn-primary:hover {
      background: rgba(255, 255, 255, 0.85);
      border-color: #ffffff;
      color: #000000;
      box-shadow: inset 0 1.5px 2px 0 #ffffff, 0 14px 36px rgba(0, 0, 0, 0.12);
    }
    .btn-ghost {
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: var(--text);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    [data-theme="light"] .btn-ghost {
      background: rgba(255, 255, 255, 0.25);
      border: 1.5px solid rgba(255, 255, 255, 0.80);
      color: var(--text);
    }
    .btn-ghost:hover {
      transform: translateY(-3px) scale(1.02);
      border-color: rgba(255, 255, 255, 0.50);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: var(--glass-specular), 0 12px 30px var(--glow);
    }
    [data-theme="light"] .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.55);
      border-color: #ffffff;
    }

    .hero-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .pill {
      padding: 10px 20px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.20);
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 4px 14px rgba(0, 0, 0, 0.12);
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    [data-theme="light"] .pill {
      background: rgba(255, 255, 255, 0.25);
      border: 1.5px solid rgba(255, 255, 255, 0.75);
    }
    .pill:hover {
      transform: translateY(-3px) scale(1.03);
      border-color: rgba(255, 255, 255, 0.50);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: var(--glass-specular), 0 10px 26px var(--glow);
    }
    [data-theme="light"] .pill:hover {
      background: rgba(255, 255, 255, 0.55);
      border-color: #ffffff;
    }
    .pill svg { width: 16px; height: 16px; }

    /* Click ripple */
    .ripple {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      background: rgba(255, 255, 255, 0.25);
      animation: rippleAnim 0.6s linear;
      pointer-events: none;
    }
    @keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

    /* ── HERO AVATAR & LUXURY GLASS ORBIT ── */
    .avatar-wrap {
      position: relative;
      width: min(390px, 85vw);
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1000px;
      transform-style: preserve-3d;
      will-change: transform;
      transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Soft ambient breathing halo behind avatar */
    .avatar-glow-halo {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 92%;
      height: 92%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 48%, transparent 72%);
      pointer-events: none;
      z-index: 0;
      animation: avatarHaloPulse 5s ease-in-out infinite alternate;
      will-change: transform, opacity;
    }
    [data-theme="light"] .avatar-glow-halo {
      background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.015) 48%, transparent 72%);
    }
    @keyframes avatarHaloPulse {
      0% { transform: scale(0.92); opacity: 0.50; }
      100% { transform: scale(1.06); opacity: 0.85; }
    }

    /* Outer precision cyber orbit ring */
    .ring-orbit {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 102%;
      height: 102%;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
      z-index: 1;
      animation: spinReverse 36s linear infinite;
    }
    .ring-orbit::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 50%;
      border: 1px solid transparent;
      border-top: 1.5px solid rgba(255, 255, 255, 0.35);
      border-bottom: 1.5px solid rgba(255, 255, 255, 0.20);
    }
    [data-theme="light"] .ring-orbit {
      border-color: rgba(0, 0, 0, 0.06);
    }
    [data-theme="light"] .ring-orbit::before {
      border-top-color: rgba(0, 0, 0, 0.30);
      border-bottom-color: rgba(0, 0, 0, 0.15);
    }

    .ring { position: absolute; border-radius: 50%; pointer-events: none; }
    /* Signature Rotating Glass Contour Ring */
    .ring-dashed {
      position: absolute;
      inset: 0;
      margin: auto;
      width: 86%;
      height: 86%;
      border-radius: 50%;
      border: none;
      border-top: 2.4px solid rgba(255, 255, 255, 0.75);
      border-bottom: 1.6px solid rgba(255, 255, 255, 0.42);
      box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
      animation: spin 20s linear infinite;
      will-change: transform;
      pointer-events: none;
      z-index: 1;
    }
    .ring-dashed::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 50%;
      border: none;
      border-left: 2px solid rgba(255, 255, 255, 0.25);
      border-right: 2px solid rgba(255, 255, 255, 0.25);
      filter: blur(4px);
      opacity: 0.85;
    }
    .ring-dashed::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: none;
      border-left: 1.5px solid rgba(255, 255, 255, 0.15);
      border-right: 1.5px solid rgba(255, 255, 255, 0.15);
      filter: blur(7px);
      opacity: 0.70;
    }

    [data-theme="light"] .ring-dashed {
      border: none;
      border-top: 2.5px solid #000000;
      border-bottom: 1.6px solid rgba(0, 0, 0, 0.65);
      box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
      filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.12));
    }
    [data-theme="light"] .ring-dashed::before {
      border: none;
      border-left: 2px solid rgba(0, 0, 0, 0.32);
      border-right: 2px solid rgba(0, 0, 0, 0.32);
      filter: blur(4px);
      opacity: 0.85;
    }
    [data-theme="light"] .ring-dashed::after {
      border: none;
      border-left: 1.5px solid rgba(0, 0, 0, 0.20);
      border-right: 1.5px solid rgba(0, 0, 0, 0.20);
      filter: blur(7px);
      opacity: 0.65;
    }

    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes spinReverse { to { transform: rotate(-360deg); } }

    .avatar {
      width: 64%;
      height: 64%;
      border-radius: 50%;
      overflow: hidden;
      border: 2.5px solid var(--border-strong);
      background: linear-gradient(140deg, #18181b, #09090b);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      animation: avatarBreath 6s ease-in-out infinite;
      transform: translateZ(0);
      will-change: transform, box-shadow;
    }
    @keyframes avatarBreath {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--glow), 0 0 45px var(--glow); }
      50% { transform: scale(1.025); box-shadow: 0 0 0 8px transparent, 0 0 65px var(--glow-strong); }
    }
    .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* Floating tech badges */
    .tech-float {
      position: absolute;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      box-shadow: 0 6px 20px rgba(0,0,0,0.35);
      animation: techFloat 4s ease-in-out infinite;
      transform: translate3d(0, 0, 0);
      will-change: transform;
    }
    .tech-float img { width: 22px; height: 22px; object-fit: contain; }
    .tf1 { top: 12px; left: -12px; animation-delay: 0s; }
    .tf2 { top: 12px; right: -12px; animation-delay: 0.8s; }
    .tf3 { bottom: 24px; left: -16px; animation-delay: 1.6s; }
    .tf4 { bottom: 24px; right: -16px; animation-delay: 2.4s; }
    @keyframes techFloat {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -9px, 0); }
    }

    /* ── TECH STRIP (MARQUEE) ── */
    .tech-strip {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      overflow: hidden;
      background: var(--surface);
    }
    .tech-strip::before, .tech-strip::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }
    .tech-strip::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
    .tech-strip::after { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
    .marquee {
      display: flex;
      gap: 40px;
      width: max-content;
      animation: mscroll 32s linear infinite;
      transform: translate3d(0, 0, 0);
      will-change: transform;
    }
    .marquee:hover { animation-play-state: paused; }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      color: var(--muted);
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 1.02rem;
      transition: color 0.25s, transform 0.25s;
      cursor: default;
    }
    .marquee-item:hover { color: var(--text); transform: scale(1.06); }
    .m-ic {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: var(--surface-2);
      transition: transform 0.3s;
    }
    .m-ic img { width: 20px; height: 20px; object-fit: contain; }
    .m-ic-txt {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }
    .marquee-item:hover .m-ic { transform: rotate(-8deg) scale(1.1); }
    @keyframes mscroll {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-50%, 0, 0); }
    }

    /* ── SECTIONS & CARDS ── */
    section.block {
      position: relative;
      z-index: 1;
      padding: 100px 6vw;
      max-width: 1200px;
      margin: 0 auto;
    }
    section.block[data-num]::before {
      content: attr(data-num);
      position: absolute;
      top: 60px;
      right: 5vw;
      font-family: 'Outfit', sans-serif;
      font-weight: 900;
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 1;
      letter-spacing: -0.05em;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--border-strong);
      opacity: 0.35;
      z-index: 0;
      pointer-events: none;
      user-select: none;
    }

    .eyebrow {
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: inline-block;
      background: linear-gradient(90deg, var(--a1), var(--a2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      position: relative;
      padding-bottom: 6px;
    }
    .eyebrow::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, var(--a1), var(--a2));
      border-radius: 2px;
      animation: eyebrowLine 2.5s ease-in-out infinite alternate;
    }
    @keyframes eyebrowLine { 0% { width: 30px; opacity: 0.5; } 100% { width: 55px; opacity: 1; } }

    .section-h {
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3.2rem);
      letter-spacing: -0.03em;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }
    .section-sub {
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 44px;
      font-size: 0.98rem;
      position: relative;
      z-index: 1;
      line-height: 1.7;
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translate3d(0, 26px, 0);
      transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
      backface-visibility: hidden;
    }
    .reveal.in {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    /* Cards */
    .card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 24px;
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 16px 44px rgba(0, 0, 0, 0.25);
      transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    .card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(350px circle at var(--mx, -200px) var(--my, -200px), var(--glow), transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 0;
    }
    .card:hover::after { opacity: 1; }
    .card:hover {
      border-color: var(--card-hover-border);
      box-shadow: var(--glass-specular), 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 28px var(--glow);
    }

    /* ── ABOUT ME ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 24px;
      align-items: stretch;
    }
    .about-main { padding: 40px; position: relative; z-index: 1; }
    .about-main h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 16px; }
    .about-main p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }
    
    .info-list { list-style: none; margin-top: 24px; }
    .info-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 10px;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
      transition: padding-left 0.25s ease, background 0.25s ease;
      border-radius: 8px;
    }
    .info-list li:hover {
      padding-left: 14px;
      background: color-mix(in srgb, var(--a1) 5%, transparent);
    }
    .info-list li:last-child { border-bottom: none; }
    .info-list .key { display: flex; align-items: center; gap: 10px; color: var(--muted-2); }
    .info-list .key svg { width: 16px; height: 16px; }
    .info-list .val { font-weight: 600; }

    .stat-col { display: grid; gap: 18px; }
    .stat-card {
      padding: 30px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }
    .stat-num {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      line-height: 1;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--a1), var(--a2));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-label { color: var(--muted); margin-top: 8px; font-size: 0.9rem; font-weight: 500; }

    /* ── SKILLS ── */
    .skills-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .skill-list { display: flex; flex-direction: column; gap: 24px; }
    .skill-top {
      display: flex;
      justify-content: space-between;
      font-weight: 600;
      margin-bottom: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
    }
    .skill-pct { color: var(--muted); font-size: 0.88rem; }
    .track {
      height: 7px;
      border-radius: 10px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .fill {
      height: 100%;
      width: 0%;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--a1), var(--a2));
      transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .stack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .stack-item {
      padding: 14px 16px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 4px 14px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.35s ease, background 0.25s ease;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    .stack-item:hover {
      transform: translateY(-4px) scale(1.03);
      border-color: var(--border-strong);
      background: var(--surface-2);
      box-shadow: var(--glass-specular), 0 12px 28px var(--glow);
    }
    .s-icon { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
    .s-badge {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    /* ── SERVICES ── */
    .services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
    .service {
      grid-column: span 3;
      padding: 34px 30px;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .services-grid .service:nth-child(1) { grid-column: span 4; }
    .services-grid .service:nth-child(2) { grid-column: span 2; }
    .services-grid .service:nth-child(3) { grid-column: span 2; }
    .services-grid .service:nth-child(4) { grid-column: span 4; }
    .service-num {
      font-family: 'Outfit', sans-serif;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 3px;
      color: var(--muted-2);
      margin-bottom: 20px;
    }
    .service-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    }
    .service:hover .service-icon {
      border-color: var(--a1);
      transform: rotate(-6deg) scale(1.1);
      box-shadow: var(--glass-specular), 0 0 24px var(--glow);
    }
    .service-icon svg { width: 24px; height: 24px; color: var(--a1); }
    .service h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
    .service p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
    .service-line {
      position: absolute;
      bottom: 0;
      left: 30px;
      right: 30px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--a1), var(--a2), transparent);
      transform: scaleX(0);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      transform-origin: center;
    }
    .service:hover .service-line { transform: scaleX(1); }

    /* ── PROJECTS SECTION & LIVE STREAM CARDS ── */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .project-card {
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--card-border);
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 20px 50px rgba(0, 0, 0, 0.35);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
      position: relative;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    .project-card:hover {
      transform: translateY(-8px);
      border-color: var(--card-hover-border);
      box-shadow: var(--glass-specular), 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 40px var(--glow);
    }

    .lp-viewport {
      background: transparent;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      user-select: none;
      flex: 1;
    }
    .lp-browser-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 18px;
      background: rgba(0, 0, 0, 0.15);
      border-bottom: 1px solid var(--border);
      gap: 12px;
      z-index: 5;
    }
    [data-theme="light"] .lp-browser-bar {
      background: rgba(255, 255, 255, 0.25);
    }
    .lp-browser-dots {
      display: flex;
      gap: 6px;
      align-items: center;
    }
    .lp-browser-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
    }
    .lp-dot-red { background: #ff5f56; }
    .lp-dot-yellow { background: #ffbd2e; }
    .lp-dot-green { background: #27c93f; }

    .lp-browser-url {
      flex: 1;
      max-width: 260px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 4px 12px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      box-shadow: inset 0 1px 2px rgba(0,0,0,0.18);
    }
    [data-theme="light"] .lp-browser-url {
      background: rgba(255, 255, 255, 0.45);
    }
    .lp-browser-url svg {
      width: 11px;
      height: 11px;
      color: var(--green);
      flex-shrink: 0;
    }

    .lp-badge-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 9px;
      border-radius: 20px;
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.35);
      color: #ef4444;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .lp-badge-live .lp-live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ef4444;
      box-shadow: 0 0 8px #ef4444;
      animation: blink 1.5s infinite ease-in-out;
    }

    /* Live Stream Wrapper & Iframe */
    .lp-stream-wrapper {
      position: relative;
      width: 100%;
      height: 380px;
      background: rgba(0, 0, 0, 0.10);
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
    }
    [data-theme="light"] .lp-stream-wrapper {
      background: rgba(255, 255, 255, 0.18);
    }
    .lp-stream-frame {
      width: 1280px;
      height: 900px;
      border: none;
      position: absolute;
      top: 0;
      left: 0;
      transform-origin: 0 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s ease;
      background: transparent;
    }
    .lp-stream-frame.is-loaded {
      opacity: 1;
    }
    .lp-stream-loader {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: var(--surface-2);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2;
      transition: opacity 0.4s ease, visibility 0.4s ease;
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 600;
    }
    .lp-stream-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .lp-stream-spinner {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2.5px solid var(--border);
      border-top-color: var(--green);
      animation: spin 0.8s linear infinite;
    }

    /* Overlay Click & Hover link */
    .lp-stream-overlay {
      position: absolute;
      inset: 0;
      z-index: 4;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0);
      transition: background 0.35s ease;
      cursor: pointer;
    }
    .lp-stream-overlay:hover {
      background: rgba(0, 0, 0, 0.22);
    }
    .lp-stream-hover-tag {
      padding: 9px 18px;
      border-radius: 50px;
      background: var(--surface);
      border: 1px solid var(--border-strong);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 10px 30px rgba(0, 0, 0, 0.4);
      color: var(--text);
      font-size: 0.82rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transform: translateY(8px) scale(0.95);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }
    .project-card:hover .lp-stream-hover-tag {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Project Card Minimal Footer */
    .project-card-footer {
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: rgba(0, 0, 0, 0.15);
      border-top: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
    }
    [data-theme="light"] .project-card-footer {
      background: rgba(255, 255, 255, 0.20);
    }
    .project-info-mini {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }
    .project-footer-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .project-footer-tag {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .project-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      font-size: 0.88rem;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      flex-shrink: 0;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .project-action-btn svg {
      transition: transform 0.3s ease;
    }
    .project-action-btn:hover svg {
      transform: translateX(4px) translateY(-2px);
    }

    /* ── TIMELINE (EXPERIENCE) ── */
    .timeline { position: relative; padding-left: 32px; margin-top: 40px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--a1), var(--a2), transparent);
      border-radius: 2px;
      box-shadow: 0 0 12px var(--glow);
    }
    .timeline-item {
      position: relative;
      padding: 22px 26px;
      margin-bottom: 22px;
      border-radius: 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular), 0 4px 18px rgba(0, 0, 0, 0.12);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    .timeline-item:hover {
      transform: translateX(6px);
      border-color: var(--card-hover-border);
      background: var(--surface-2);
      box-shadow: var(--glass-specular), 0 12px 32px var(--glow);
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -32px;
      top: 24px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--surface-solid);
      border: 2.5px solid var(--border-strong);
      transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .timeline-item:hover::before {
      background: var(--a1);
      border-color: var(--a1);
      box-shadow: 0 0 16px var(--glow-strong);
    }
    .t-date {
      font-size: 0.78rem;
      color: var(--muted-2);
      font-weight: 700;
      margin-bottom: 6px;
      font-family: 'Outfit', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .timeline-item h4 { font-size: 1.12rem; font-weight: 700; margin-bottom: 6px; }
    .timeline-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

    /* ── PLAYLIST / MUSIC PLAYER ── */
    .pl-now {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 36px;
      align-items: center;
      padding: 36px 40px;
      margin-bottom: 18px;
    }
    .pl-vinyl-wrap {
      position: relative;
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pl-vinyl-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 1.5px dashed var(--border-strong);
      animation: spin 12s linear infinite;
      pointer-events: none;
    }
    .pl-vinyl {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #2a1608, #0a0502 70%);
      border: 2px solid var(--border);
      box-shadow: 0 0 30px var(--glow);
      position: relative;
      animation: spin 3s linear infinite;
      animation-play-state: paused;
    }
    .pl-vinyl.spin { animation-play-state: running; }
    .pl-vinyl::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--a2), var(--a1));
      box-shadow: 0 0 16px var(--glow-strong);
    }
    .pl-info { min-width: 0; flex: 1; }
    .pl-wave {
      display: flex;
      gap: 3.5px;
      align-items: flex-end;
      height: 22px;
      margin-bottom: 12px;
    }
    .pl-wave span {
      width: 3.5px;
      border-radius: 2px;
      background: linear-gradient(180deg, var(--a2), var(--a1));
      opacity: 0.35;
      height: 4px;
      transition: opacity 0.3s;
    }
    .pl-wave.playing span {
      opacity: 1;
      animation: plWaveAnim 0.8s ease-in-out infinite alternate;
    }
    .pl-wave span:nth-child(1) { animation-delay: 0.1s; height: 10px; }
    .pl-wave span:nth-child(2) { animation-delay: 0.25s; height: 16px; }
    .pl-wave span:nth-child(3) { animation-delay: 0.4s; height: 22px; }
    .pl-wave span:nth-child(4) { animation-delay: 0.15s; height: 14px; }
    .pl-wave span:nth-child(5) { animation-delay: 0.3s; height: 20px; }
    .pl-wave span:nth-child(6) { animation-delay: 0.5s; height: 12px; }
    .pl-wave span:nth-child(7) { animation-delay: 0.2s; height: 18px; }
    .pl-wave span:nth-child(8) { animation-delay: 0.35s; height: 8px; }
    @keyframes plWaveAnim {
      0% { transform: scaleY(0.3); }
      100% { transform: scaleY(1); }
    }

    .pl-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.45rem;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .pl-artist { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
    .pl-progress-wrap { margin-bottom: 14px; }
    .pl-time {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--muted-2);
      margin-bottom: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 600;
    }
    .pl-bar {
      height: 6px;
      border-radius: 10px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      cursor: pointer;
      overflow: hidden;
      position: relative;
    }
    .pl-fill {
      height: 100%;
      width: 0%;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--a1), var(--a2));
      transition: width 0.1s linear;
    }

    .pl-controls { display: flex; align-items: center; gap: 14px; }
    .pl-btn {
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s, background 0.2s, transform 0.25s;
    }
    .pl-btn:hover {
      color: var(--text);
      background: var(--surface-2);
      transform: scale(1.12);
    }
    .pl-btn svg { width: 18px; height: 18px; }

    .pl-play-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, var(--a1), var(--a2));
      color: var(--invert-text);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px var(--glow-strong);
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
      flex-shrink: 0;
    }
    .pl-play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px var(--glow-strong);
    }
    .pl-play-btn svg { width: 18px; height: 18px; }

    .pl-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
    .pl-row {
      display: grid;
      grid-template-columns: 40px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px 18px;
      border-radius: 14px;
      cursor: pointer;
      border: 1px solid var(--border);
      background: var(--surface);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-specular);
      transition: background 0.2s, transform 0.25s, border-color 0.2s, box-shadow 0.25s;
    }
    .pl-row:hover {
      background: var(--surface-2);
      transform: translateX(6px);
      border-color: var(--border-strong);
      box-shadow: var(--glass-specular), 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .pl-row.active {
      background: color-mix(in srgb, var(--a1) 14%, var(--surface));
      border-color: var(--border-strong);
      box-shadow: var(--glass-specular), 0 0 20px var(--glow);
    }
    .pl-row-num {
      font-family: 'Outfit', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--muted-2);
      text-align: center;
    }
    .pl-row.active .pl-row-num { color: var(--a1); }
    .pl-row-name {
      font-weight: 600;
      font-size: 0.94rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-family: 'Outfit', sans-serif;
    }
    .pl-row.active .pl-row-name { color: var(--a1); }
    .pl-row-artist { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
    .pl-row-dur {
      font-size: 0.78rem;
      color: var(--muted-2);
      font-family: 'JetBrains Mono', monospace;
      font-weight: 600;
    }

    /* ── CONTACT ── */
    .contact-box {
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-box h2 {
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3.2rem);
      letter-spacing: -0.03em;
      margin-bottom: 14px;
    }
    .contact-box p {
      color: var(--muted);
      max-width: 460px;
      margin: 0 auto 36px;
      font-size: 1rem;
      line-height: 1.7;
    }
    .contact-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ── FOOTER ── */
    footer {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 40px 6vw 80px;
      color: var(--muted-2);
      font-size: 0.88rem;
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      color: var(--muted-2);
      text-decoration: none;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
    }
    .footer-links a:hover { color: var(--text); }
    .footer-links svg { width: 16px; height: 16px; }

    /* ── WAVE CANVAS ── */
    #waveCanvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ── TOAST NOTIFICATION ── */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 300;
      padding: 12px 22px;
      border-radius: 50px;
      background: var(--surface-solid);
      border: 1px solid var(--border-strong);
      color: var(--text);
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 20px var(--glow);
      transform: translateY(100px);
      opacity: 0;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    /* ── RESPONSIVE STYLES ── */
    @media (max-width: 992px) {
      nav {
        padding: 12px 4vw;
        z-index: 250;
      }
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: min(85vw, 340px);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 10px;
        background: var(--drawer-bg);
        backdrop-filter: blur(28px) saturate(200%);
        -webkit-backdrop-filter: blur(28px) saturate(200%);
        padding: 24px 20px 30px;
        transition: right 0.38s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--card-border);
        box-shadow: var(--glass-specular), -15px 0 50px rgba(0, 0, 0, 0.35);
        z-index: 260;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
      }
      .nav-links.open {
        right: 0;
        pointer-events: all;
        visibility: visible;
      }
      /* When drawer is open, hide navbar controls to completely eliminate overlapping buttons */
      .nav-links.open ~ .menu-btn,
      .nav-links.open ~ .theme-btn,
      .nav-links.open ~ .lang-switcher {
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
        transform: scale(0.85);
        transition: opacity 0.2s ease, transform 0.2s ease;
      }
      [data-theme="light"] .nav-links {
        background: var(--drawer-bg);
        border-left: 1px solid var(--card-border);
        box-shadow: var(--glass-specular), -15px 0 50px rgba(0, 0, 0, 0.08);
      }
      .mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--border);
        width: 100%;
      }
      .drawer-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.15rem;
        color: var(--text);
        letter-spacing: -0.01em;
      }
      .drawer-close-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: var(--surface-2);
        border: 1px solid var(--border-strong);
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        box-shadow: var(--glass-specular), 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
        flex-shrink: 0;
      }
      .drawer-close-btn:hover, .drawer-close-btn:active {
        background: var(--surface);
        border-color: var(--green);
        color: var(--green);
        transform: scale(1.08) rotate(90deg);
        box-shadow: var(--glass-specular), 0 0 16px var(--glow);
      }
      .nav-links li { width: 100%; }
      .nav-links a {
        font-size: 0.98rem;
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 18px;
        width: 100%;
        border-radius: 14px;
        background: var(--surface);
        border: 1px solid var(--border);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        box-shadow: var(--glass-specular);
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .nav-links a::after {
        display: none;
      }
      .nav-links a:hover, .nav-links a:active {
        color: var(--text);
        background: var(--surface-2);
        border-color: var(--border-strong);
        box-shadow: var(--glass-specular), 0 0 20px var(--glow);
        transform: translateX(5px);
      }
      .menu-btn { display: flex; z-index: 260; }
    }

    @media (max-width: 860px) {
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 110px 6vw 60px;
      }
      .hero-left {
        align-items: center;
        text-align: center;
        order: 2;
      }
      .hero-right {
        order: 1;
        margin-bottom: 20px;
      }
      .hero-cta, .hero-links { justify-content: center; }
      .hero h1 { max-width: none; }
      .lead { max-width: 52ch; }
      .hero-glyph { display: none; }
      .about-grid, .skills-wrap, .projects-grid { grid-template-columns: 1fr; }
      .tech-float { display: none; }
      /* Mobile Hero */
      .ring-orbit { display: none !important; }
      .avatar-wrap {
        width: min(260px, 72vw);
        aspect-ratio: 1;
        margin: 0 auto;
        transform: none !important;
      }
      .avatar {
        width: 72%;
        height: 72%;
      }
      .pl-now {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
      }
      .pl-vinyl-wrap { margin: 0 auto; }
      .pl-wave, .pl-controls { justify-content: center; }
    }

    @media (max-width: 540px) {
      nav {
        padding: 10px 14px;
        gap: 6px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100vw;
      }
      .brand {
        gap: 8px;
        min-width: 0;
        flex-shrink: 1;
      }
      .brand-logo {
        width: 35px;
        height: 35px;
      }
      .brand-name {
        font-size: 0.92rem;
        max-width: 110px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .nav-right {
        gap: 6px;
        flex-shrink: 0;
      }
      .lang-btn {
        padding: 5px 10px;
        font-size: 0.72rem;
        gap: 4px;
      }
      .theme-btn {
        width: 48px;
        height: 26px;
      }
      .theme-knob {
        width: 18px;
        height: 18px;
        top: 3px;
        left: 3px;
      }
      [data-theme="light"] .theme-knob {
        transform: translateX(23px);
      }
      .menu-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
      }
      section.block {
        padding: 64px 18px;
      }
      section.block[data-num]::before {
        font-size: 3.8rem;
        top: 38px;
        right: 14px;
        opacity: 0.22;
      }
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .services-grid .service, .services-grid .service:nth-child(n) { grid-column: auto; padding: 24px 20px; }
      .stack-grid { grid-template-columns: 1fr; }
      .about-main { padding: 24px 18px; }
      .contact-box { padding: 36px 18px; }
      .contact-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
      }
      .contact-links .btn {
        width: 100%;
        justify-content: center;
      }
      .footer-links {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
      }
      .timeline {
        padding-left: 24px;
      }
      .timeline::before {
        left: 5px;
      }
      .timeline-item {
        padding: 16px 18px;
        margin-bottom: 16px;
      }
      .timeline-item::before {
        left: -25px;
        top: 20px;
        width: 12px;
        height: 12px;
      }
      .hero h1 { font-size: 2.3rem; }
      .btn { padding: 12px 22px; font-size: 0.88rem; width: 100%; justify-content: center; }
      .hero-cta { width: 100%; }
      .pill { width: 100%; justify-content: center; }
      .project-card-footer { flex-direction: column; align-items: stretch; gap: 12px; text-align: center; }
      .project-action-btn { width: 100%; justify-content: center; }
      .lp-real-links, .lp-real-actions { display: none; }
      .lp-browser-url { max-width: 180px; font-size: 0.68rem; }
    }

    @media (max-width: 360px) {
      .brand-name {
        display: none;
      }
      nav {
        padding: 8px 10px;
        gap: 4px;
      }
      .nav-right {
        gap: 4px;
      }
      .lang-btn {
        padding: 4px 8px;
        font-size: 0.70rem;
      }
      .theme-btn {
        width: 44px;
      }
      section.block {
        padding: 50px 14px;
      }
    }