/* ============================================================
   KNUTUR.IS — Global Styles
   Dark & Sleek · Glassmorphism · Animated
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-base:       #08080f;
  --bg-surface:    #0f0f1a;
  --bg-card:       rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);

  --accent-primary:   #6c63ff;
  --accent-secondary: #00d4ff;
  --accent-tertiary:  #ff6584;

  --text-primary:  #e8e8f5;
  --text-secondary:#9494b8;
  --text-muted:    #55556a;

  --border:        rgba(255, 255, 255, 0.08);
  --border-accent: rgba(108, 99, 255, 0.4);

  --glass-blur:    20px;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --radius-xl:     36px;

  --shadow-glow:   0 0 40px rgba(108, 99, 255, 0.15);
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover:  0 16px 48px rgba(0, 0, 0, 0.6);

  --nav-height:    72px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); line-height: 1.75; }

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-secondary); }

/* ---------- Utility: Glass Card ---------- */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow), var(--shadow-hover);
  transform: translateY(-3px);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-primary), #9b8fff);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(108, 99, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 27px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border-accent);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(108, 99, 255, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* ---------- Section Layout ---------- */
.section {
  padding: 96px 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(108, 99, 255, 0.03) 50%, transparent 100%);
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 50px;
}

.section-title {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Background Orbs ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-primary), transparent);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-secondary), transparent);
  bottom: 20%;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-tertiary), transparent);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

/* ---------- Grid ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ---------- Gradient Text Utility ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Tag / Badge ---------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-primary);
  font-family: var(--font-mono);
}

.tag--cyan {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
  color: var(--accent-secondary);
}

.tag--pink {
  background: rgba(255, 101, 132, 0.1);
  border-color: rgba(255, 101, 132, 0.2);
  color: var(--accent-tertiary);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(108, 99, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

@keyframes drawLine {
  from { height: 0; }
  to   { height: 100%; }
}

@keyframes dotPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-fade-up      { animation: fadeInUp var(--transition-slow) both; }
.animate-fade-left    { animation: fadeInLeft var(--transition-slow) both; }
.animate-fade-right   { animation: fadeInRight var(--transition-slow) both; }
.animate-scale        { animation: scaleIn var(--transition-slow) both; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ---------- Not Found ---------- */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 20px;
  text-align: center;
}

.not-found h1 {
  font-size: 8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}
.hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

    .hero .container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 80px;
    }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    font-family: var(--font-mono);
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-secondary);
    animation: pulse-ring 2s ease-out infinite;
}

.hero__title {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero__stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Visual ring */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.hero__visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-accent);
    animation: spinRing linear infinite;
}

.hero__visual-ring--1 {
    width: 280px;
    height: 280px;
    animation-duration: 20s;
    border-color: rgba(108, 99, 255, 0.25);
}

.hero__visual-ring--2 {
    width: 360px;
    height: 360px;
    animation-duration: 30s;
    animation-direction: reverse;
    border-color: rgba(0, 212, 255, 0.15);
    border-style: dashed;
}

.hero__visual-ring--3 {
    width: 420px;
    height: 420px;
    animation-duration: 40s;
    border-color: rgba(255, 101, 132, 0.08);
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero__visual-center {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), #9b8fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 0 60px rgba(108, 99, 255, 0.5);
    z-index: 2;
}

.hero__floating-badge {
    position: absolute;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 3;
}

    .hero__floating-badge:nth-child(odd) {
        animation-delay: -2s;
    }

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Scroll indicator */
.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s 1.2s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        height: 280px;
        order: -1;
    }

    .hero__visual-ring--1 {
        width: 180px;
        height: 180px;
    }

    .hero__visual-ring--2 {
        width: 240px;
        height: 240px;
    }

    .hero__visual-ring--3 {
        width: 280px;
        height: 280px;
    }

    .hero__visual-center {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }
}

/* ========================
   Filter tabs
   ======================== */
.timeline-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 64px;
}

.timeline-filter__btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
}

    .timeline-filter__btn:hover {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
        background: rgba(108, 99, 255, 0.08);
    }

.timeline-filter__btn--active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.35);
}

/* ========================
   Timeline layout
   ======================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Centre vertical line */
.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline__line-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    animation: drawLine 2s ease-out both;
    transform-origin: top;
}

/* Individual item */
.timeline__item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 48px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .timeline__item.in-view {
        opacity: 1;
        transform: translateX(0);
    }

.timeline__item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
    transform: translateX(30px);
}

    .timeline__item--right.in-view {
        transform: translateX(0);
    }

/* Dot */
.timeline__dot {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--transition);
    animation: dotPop 0.4s ease both;
}

.timeline__dot--current {
    animation: dotPop 0.4s ease both, pulse-ring 2s ease-out infinite;
}

.timeline__dot--edu {
    border-color: var(--accent-secondary);
}

.timeline__dot--freelance {
    border-color: var(--accent-tertiary);
}

.timeline__dot--oss {
    border-color: #4caf50;
}

.timeline__dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.timeline__dot--edu .timeline__dot-inner {
    background: var(--accent-secondary);
}

.timeline__dot--freelance .timeline__dot-inner {
    background: var(--accent-tertiary);
}

.timeline__dot--oss .timeline__dot-inner {
    background: #4caf50;
}

/* Card */
.timeline__card {
    padding: 24px 28px;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.timeline__card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.timeline__type-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-primary);
    font-family: var(--font-mono);
}

    .timeline__type-badge.tag--cyan {
        background: rgba(0, 212, 255, 0.1);
        border-color: rgba(0, 212, 255, 0.2);
        color: var(--accent-secondary);
    }

    .timeline__type-badge.tag--pink {
        background: rgba(255, 101, 132, 0.1);
        border-color: rgba(255, 101, 132, 0.2);
        color: var(--accent-tertiary);
    }

    .timeline__type-badge.tag--oss {
        background: rgba(76, 175, 80, 0.1);
        border-color: rgba(76, 175, 80, 0.2);
        color: #4caf50;
    }

.timeline__current-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-secondary);
    font-family: var(--font-mono);
    margin-left: 6px;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.timeline__period {
    font-size: 0.78rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    white-space: nowrap;
}

.timeline__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.timeline__company {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .timeline__company a {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: var(--accent-primary);
        text-decoration: none;
        transition: color var(--transition);
    }

        .timeline__company a:hover {
            color: var(--accent-secondary);
        }

.timeline__location {
    color: var(--text-muted);
    font-weight: 400;
}

.timeline__description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.timeline__expand-btn {
    background: none;
    border: none;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    transition: color var(--transition);
}

    .timeline__expand-btn:hover {
        color: var(--accent-secondary);
    }

.timeline__highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    padding: 16px;
    background: rgba(108, 99, 255, 0.04);
    border-left: 2px solid var(--accent-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

    .timeline__highlights li {
        display: flex;
        gap: 10px;
        font-size: 0.825rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

.timeline__highlight-arrow {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.timeline__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 700px) {
    .timeline__line {
        left: 20px;
    }

    .timeline__item,
    .timeline__item--right {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 60px;
        transform: translateX(0) !important;
    }

        .timeline__item.in-view,
        .timeline__item--right.in-view {
            transform: translateX(0) !important;
        }

    .timeline__dot {
        left: 20px;
    }

    .timeline__card {
        max-width: 100%;
    }
}

.main-content {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: var(--nav-height);
}

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 0;
    background: rgba(8, 8, 15, 0.6);
    backdrop-filter: blur(12px);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__brand {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

    .site-footer__brand .navbar__logo-bracket {
        color: var(--accent-primary);
    }

.site-footer__copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .site-footer__links a {
        color: var(--text-muted);
        transition: color var(--transition), transform var(--transition);
        display: flex;
        align-items: center;
    }

        .site-footer__links a:hover {
            color: var(--accent-primary);
            transform: translateY(-2px);
        }

@media (max-width: 600px) {
    .site-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}
.about-page {
    padding-top: 80px;
    padding-bottom: 100px;
}

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

/* Bio card */
.about-bio {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.4);
}

.about-name {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

.about-role {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-mono);
    margin: -8px 0 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .about-text p {
        font-size: 0.925rem;
        line-height: 1.8;
    }

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

/* Sidebar cards */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    padding: 24px 28px;
}

.about-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Facts */
.about-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .about-facts li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 10px;
    }

        .about-facts li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

.about-facts__label {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: var(--font-mono);
    white-space: nowrap;
    flex-shrink: 0;
}

.about-facts li > span:last-child {
    color: var(--text-secondary);
    text-align: right;
}

/* Interests */
.about-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-interest-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: default;
}

    .about-interest-tag:hover {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
        background: rgba(108, 99, 255, 0.08);
    }

/* Values */
.about-values {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .about-values li {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .about-values strong {
        font-size: 0.875rem;
        color: var(--text-primary);
        font-weight: 600;
    }

    .about-values span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

/* Responsive */
@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-bio {
        padding: 28px 20px;
    }
}