@font-face {
  font-family: 'classy';
  src: url('https://vkfonts.storage.googleapis.com/classy.woff2')
    format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --surface-1: #141414;
  --surface-2: #171717;
  --surface-3: #181c1f;
  --surface-4: #202020;
  --surface-5: #272727;
  --text: #cacaca;
  --text-heading: #eeeeee;
  --text-muted: #858585;
  --text-dim: #666666;
  --text-faint: #4d4d4d;
  --border: #202020;
  --border-subtle: #181818;
  --border-hover: #353535;
  --border-strong: #414141;
  --accent: #a8a8a8;
  --accent-soft: #d0d0d0;
  --accent-glow: rgba(160,160,160,0.14);
  --purple: #8B78FF;
  --purple-light: #B3B5E3;
  --silver: #bec2cb;
  --matte1: #171717;
  --matte2: #181c1f;
  --matte3: #272727;
  --matte-panel: #141414;
  --black: #000000;
  --edge: #707070;
  --edge-soft: #808080;
  --radius: 18px;
  --max: 680px;
  --bot-max: 760px;
  --bot-body: #6B5CE7;
  --bot-body-dark: #4B3FB8;
  --bot-body-light: #8B78FF;
  --bot-paper: #ffffff;
  --bot-ring: rgba(179,181,227,0.5);
}
[data-theme="light"] {
  --bg: #ffffff;
  --bg-elevated: #f8f8f8;
  --bg-card: #f4f4f4;
  --surface-1: #f1f1f1;
  --surface-2: #eeeeee;
  --surface-3: #e9e9e9;
  --surface-4: #e3e3e3;
  --surface-5: #dddddd;
  --text: #1a1a1a;
  --text-heading: #111111;
  --text-muted: #6b6b6b;
  --text-dim: #888888;
  --text-faint: #aaaaaa;
  --border: #dedede;
  --border-subtle: #e8e8e8;
  --border-hover: #c7c7c7;
  --border-strong: #b8b8b8;
  --accent: #555555;
  --accent-soft: #777777;
  --accent-glow: rgba(80,80,80,0.10);
  --purple: #6B5CE7;
  --purple-light: #8B7FE8;
  --silver: #888888;
  --matte1: #f0f0f0;
  --matte2: #f4f4f4;
  --matte3: #e0e0e0;
  --matte-panel: #f8f8f8;
  --black: #ffffff;
  --edge: #999999;
  --edge-soft: #aaaaaa;
  --bot-body: #6B5CE7;
  --bot-body-dark: #4B3FB8;
  --bot-body-light: #8B78FF;
  --bot-paper: #1a1a1a;
  --bot-ring: rgba(107,92,231,0.35);
}
* {
  box-sizing: border-box;
  font-family: 'classy',
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease,
    color 0.4s ease;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.82) 48%,
      rgba(0, 0, 0, 0) 100%
    );
  transition: background 0.4s ease;
}
[data-theme="light"] .topbar {
  background: linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.82) 48%,
      rgba(255,255,255,0) 100%
    );
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand-mark.profile-placeholder {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
      145deg,
      #272727 0%,
      #151515 100%
    );
  border: 1px solid #343434;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
    0 2px 8px rgba(0,0,0,0.35);
}
[data-theme="light"] .brand-mark.profile-placeholder {
  background: linear-gradient(
      145deg,
      #eeeeee,
      #dddddd
    );
  color: var(--text-dim);
  border-color: #d0d0d0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.brand-name {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 18px;
  color: var(--text-heading);
  animation: nameFadeIn 1.1s ease-out 0.15s both;
}
.tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.tool {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #aeb2b8;
  border: 1px solid #24282b;
  background: linear-gradient(
      145deg,
      #181c1f 0%,
      #111315 100%
    );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035),
    0 2px 8px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  flex-shrink: 0;
}
[data-theme="light"] .tool {
  background: linear-gradient(
      145deg,
      #f5f5f5,
      #eaeaea
    );
  border-color: #dddddd;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 8px rgba(0,0,0,0.06);
}
.tool svg, .tool i.ph {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}
.tool:hover {
  color: #eeeeee;
  border-color: #3b4145;
  background: linear-gradient(
      145deg,
      #22272b,
      #181c1f
    );
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
    0 5px 14px rgba(0,0,0,0.35);
}
[data-theme="light"] .tool:hover {
  color: #222222;
  background: linear-gradient(
      145deg,
      #ffffff,
      #eeeeee
    );
  border-color: #c8c8c8;
}
#themeBtn i.ph-sun {
  display: none;
}
#themeBtn i.ph-moon, [data-theme="light"] #themeBtn i.ph-sun {
  display: block;
}
[data-theme="light"] #themeBtn i.ph-moon {
  display: none;
}
main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 80px
    18px
    40px;
  background: radial-gradient(
      ellipse 700px 500px at 50% 0%,
      rgba(39,39,39,0.10),
      transparent 65%
    );
}
[data-theme="light"] main {
  background: radial-gradient(
      ellipse 700px 500px at 50% 0%,
      rgba(0,0,0,0.025),
      transparent 65%
    );
}
.container {
  max-width: var(--max);
  margin: 0 auto;
}
.profile-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}
.profile-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(
      circle at 35% 30%,
      #323232 0%,
      #242424 35%,
      #171717 70%,
      #0e0e0e 100%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #858585;
  flex-shrink: 0;
  border: 2px solid #303030;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06),
    inset 0 -4px 10px rgba(0,0,0,0.45),
    0 6px 24px rgba(0,0,0,0.45);
  overflow: hidden;
}
[data-theme="light"] .profile-img {
  background: radial-gradient(
      circle at 35% 30%,
      #ffffff,
      #ededed 60%,
      #dedede
    );
  color: #777777;
  border-color: #d3d3d3;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.9),
    0 5px 20px rgba(0,0,0,0.08);
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 4px;
  animation: nameFadeIn 1.1s ease-out 0.25s both;
}
.profile-info .handle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.bio-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}
.bio-text p {
  margin-bottom: 14px;
}
.bio-text a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.bio-text a:hover {
  border-bottom-color: var(--accent);
  text-decoration: none;
}
.github-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px
    12px;
  background: linear-gradient(
      145deg,
      #181818,
      #111111
    );
  border: 1px solid #282828;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #c5c5c5;
  text-decoration: none;
  transition: all 0.2s ease;
  vertical-align: middle;
  margin-left: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}
[data-theme="light"] .github-inline {
  background: linear-gradient(
      145deg,
      #fafafa,
      #eeeeee
    );
  border-color: #dddddd;
  color: #444444;
}
.github-inline:hover {
  background: linear-gradient(
      145deg,
      #222222,
      #171717
    );
  border-color: #444444;
  color: #eeeeee;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
    0 3px 12px rgba(0,0,0,0.3);
}
[data-theme="light"] .github-inline:hover {
  background: linear-gradient(
      145deg,
      #ffffff,
      #eeeeee
    );
  border-color: #c9c9c9;
  color: #222222;
}
.github-inline i.ph {
  font-size: 15px;
}
.section {
  margin-bottom: 28px;
  padding: 22px
    20px
    18px;
  border-radius: 16px;
  border: 1px solid #252525;
  background: linear-gradient(
      145deg,
      #1b1d1f 0%,
      #181a1c 28%,
      #151515 65%,
      #111111 100%
    );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045),
    inset 0 -1px 0 rgba(0,0,0,0.7),
    0 1px 0 rgba(255,255,255,0.015),
    0 8px 28px rgba(0,0,0,0.38);
  transition: border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.section:hover {
  border-color: #303030;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.7),
    0 10px 34px rgba(0,0,0,0.45);
}
[data-theme="light"] .section {
  background: linear-gradient(
      145deg,
      #fafafa 0%,
      #f4f4f4 45%,
      #eeeeef 100%
    );
  border-color: #dedede;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),
    0 6px 24px rgba(0,0,0,0.06);
}
[data-theme="light"] .section:hover {
  border-color: #cfcfcf;
}
.section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #737373;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
[data-theme="light"] .section-title {
  color: #888888;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
      90deg,
      #303030,
      rgba(48,48,48,0)
    );
}
[data-theme="light"] .section-title::after {
  background: linear-gradient(
      90deg,
      #d8d8d8,
      rgba(216,216,216,0)
    );
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}
.data-table thead {
  display: none;
}
.data-table tbody tr {
  transition: none;
}
.data-table tbody tr:hover {
  background: transparent;
}
.data-table td {
  padding: 13px
    0;
  vertical-align: top;
  border-bottom: 1px solid #292929;
}
[data-theme="light"] .data-table td {
  border-bottom-color: #dedede;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table td:first-child {
  width: 1%;
  padding-right: 20px;
  font-weight: 600;
  color: #e2e2e2;
  white-space: nowrap;
}
[data-theme="light"] .data-table td:first-child {
  color: #222222;
}
.data-table td:first-child a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 28px;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
.data-table tbody tr:hover td:first-child a {
  color: #ffffff;
}
[data-theme="light"]
.data-table tbody tr:hover td:first-child a {
  color: #111111;
}
.table-name {
  display: inline-block;
  white-space: nowrap;
}
.data-table td:last-child {
  color: #a7a7a7;
  line-height: 1.6;
}
[data-theme="light"] .data-table td:last-child {
  color: #5f5f5f;
}
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded' !important;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
  font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.proj-icon {
  font-family: 'Material Symbols Rounded' !important;
  font-size: 18px !important;
  flex: 0 0 auto;
  color: #707070;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
  font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  transition: filter 0.2s ease,
    transform 0.2s ease;
}
.data-table tbody tr:hover .proj-icon {
  transform: scale(1.04);
  filter: brightness(1.12);
}
.ext-icon {
  font-family: 'Material Symbols Rounded' !important;
  font-size: 11px !important;
  opacity: 0.42;
  flex: 0 0 auto;
  font-style: normal;
  line-height: 1;
  margin-left: 2px;
  font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  transition: opacity 0.18s ease,
    transform 0.18s ease;
}
.data-table tbody tr:hover .ext-icon {
  opacity: 0.7;
  transform: translate(1px, -1px);
}
.icon-purple {
  color: #8B78FF;
}
.icon-cream {
  color: #E8D5A3;
}
.icon-mint {
  color: #7FD9C8;
}
.icon-coder-green {
  color: #4EC9B0;
}
.icon-turquoise {
  color: #2CC5D4;
}
.icon-octopus-green {
  color: #2EAF87;
}
.icon-silver {
  color: #bec2cb;
}
@keyframes nameFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 560px) {
 .profile-section {
   flex-direction: column;
   text-align: center;
 }
 .profile-img {
   margin: 0 auto;
 }
 .section {
   padding: 18px
      14px
      14px;
 }
 .data-table {
   width: 100%;
   table-layout: auto;
 }
 .data-table td {
   display: table-cell;
   padding: 13px
      0;
   vertical-align: top;
   border-bottom: 1px solid var(--border);
 }
 .data-table tr {
   display: table-row;
   padding: 0;
   border: none;
 }
 .data-table tr:last-child td {
   border-bottom: none;
 }
 .data-table td:first-child {
   width: 1%;
   padding-right: 16px;
   white-space: nowrap;
 }
 .data-table td:first-child a {
   width: 100%;
   min-height: 28px;
 }
 .data-table td:last-child {
   width: auto;
   line-height: 1.55;
 }
 .data-table tbody tr:hover {
   background: transparent;
 }
}
@media (max-width: 380px) {
 .data-table {
   font-size: 13px;
 }
 .data-table td:first-child {
   padding-right: 12px;
 }
 .data-table td {
   padding: 12px
      0;
 }
 .proj-icon {
   font-size: 17px !important;
 }
 .ext-icon {
   font-size: 10px !important;
 }
}
.data-table tbody tr:hover .table-name {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 3px 4px 3px 0;
  padding: 6px 10px;
  border: 1px solid var(--border, #333);
  border-radius: 999px;
  background: var(--bg-card, #181818);
  color: var(--text, #eee);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}
.social-pill:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.social-pill .sp-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}
.social-pill .sp-label {
  font-weight: 600;
}
.social-pill .sp-arrow {
  font-size: 12px;
  opacity: 0.55;
}
.social-pill[data-platform="instagram"] {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.35);
  background: rgba(225, 48, 108, 0.08);
}
.social-pill[data-platform="instagram"]:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.55);
}
.social-pill[data-platform="github"] {
  color: #f0f0f0;
  border-color: rgba(240, 240, 240, 0.25);
  background: rgba(240, 240, 240, 0.06);
}
.social-pill[data-platform="github"]:hover {
  background: rgba(240, 240, 240, 0.12);
  border-color: rgba(240, 240, 240, 0.4);
}
.social-pill[data-platform="x"] {
  color: #f5f5f5;
  border-color: rgba(245, 245, 245, 0.25);
  background: rgba(245, 245, 245, 0.06);
}
.social-pill[data-platform="x"]:hover {
  background: rgba(245, 245, 245, 0.12);
  border-color: rgba(245, 245, 245, 0.4);
}
.social-pill[data-platform="linkedin"] {
  color: #0a9be8;
  border-color: rgba(10, 155, 232, 0.35);
  background: rgba(10, 155, 232, 0.08);
}
.social-pill[data-platform="linkedin"]:hover {
  background: rgba(10, 155, 232, 0.15);
  border-color: rgba(10, 155, 232, 0.55);
}
.social-pill[data-platform="spotify"] {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.35);
  background: rgba(30, 215, 96, 0.08);
}
.social-pill[data-platform="spotify"]:hover {
  background: rgba(30, 215, 96, 0.15);
  border-color: rgba(30, 215, 96, 0.55);
}
.social-pill[data-platform="pinterest"] {
  color: #e60023;
  border-color: rgba(230, 0, 35, 0.35);
  background: rgba(230, 0, 35, 0.08);
}
.social-pill[data-platform="pinterest"]:hover {
  background: rgba(230, 0, 35, 0.15);
  border-color: rgba(230, 0, 35, 0.55);
}
.social-pill[data-platform="blog"] {
  color: #f39c12;
  border-color: rgba(243, 156, 18, 0.35);
  background: rgba(243, 156, 18, 0.08);
}
.social-pill[data-platform="blog"]:hover {
  background: rgba(243, 156, 18, 0.15);
  border-color: rgba(243, 156, 18, 0.55);
}
[data-theme="light"] .social-pill[data-platform="github"], [data-theme="light"] .social-pill[data-platform="x"] {
  color: #171717;
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.035);
}
[data-theme="light"] .social-pill[data-platform="github"]:hover, [data-theme="light"] .social-pill[data-platform="x"]:hover {
  background: rgba(0, 0, 0, 0.08);
}
