/* ============================================================
   CAN TATAR — SCI-FI PORTFOLIO STYLESHEET
   Original design — dark HUD theme with neon accents
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== TOKENS ===== */
:root {
  --bg: #050508;
  --bg2: #0a0a10;
  --surface: #0f0f18;
  --surface2: #141420;
  --red: #e84a4a;
  --red-dim: rgba(232,74,74,0.15);
  --red-glow: rgba(232,74,74,0.4);
  --green: #7dff68;
  --green-dim: rgba(125,255,104,0.1);
  --cyan: #4aeaec;
  --white: #e8e8f0;
  --gray: #6a6a80;
  --gray-dark: #2a2a3a;
  --font-h: 'Big Shoulders Display', 'Orbitron', sans-serif;
  --font-b: 'Iceland', monospace;
  --font-l: 'Iceberg', monospace;
  --corner: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.accent { color: var(--red); }

/* ===== SCANLINE OVERLAY ===== */
.scanline-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
  );
}

/* ===== CORNER BRACKETS ===== */
.card-corners { position: absolute; inset: 0; pointer-events: none; }
.cc { position: absolute; width: 12px; height: 12px; }
.cc::before, .cc::after { content: ''; position: absolute; background: var(--red); }
.cc.tl { top: -1px; left: -1px; }
.cc.tl::before { top: 0; left: 0; width: 12px; height: 2px; }
.cc.tl::after { top: 0; left: 0; width: 2px; height: 12px; }
.cc.tr { top: -1px; right: -1px; }
.cc.tr::before { top: 0; right: 0; width: 12px; height: 2px; }
.cc.tr::after { top: 0; right: 0; width: 2px; height: 12px; }
.cc.bl { bottom: -1px; left: -1px; }
.cc.bl::before { bottom: 0; left: 0; width: 12px; height: 2px; }
.cc.bl::after { bottom: 0; left: 0; width: 2px; height: 12px; }
.cc.br { bottom: -1px; right: -1px; }
.cc.br::before { bottom: 0; right: 0; width: 12px; height: 2px; }
.cc.br::after { bottom: 0; right: 0; width: 2px; height: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,74,74,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,74,74,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px calc(16px + 2px);
  border: 1px solid var(--green);
  border-radius: 20px;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--green);
  font-family: var(--font-b);
  letter-spacing: 2px;
  animation: fadeInDown 1s ease;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 0.6s infinite;
}

.hero-name {
  font-family: var(--font-h);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  letter-spacing: 8px;
  padding-right: 8px;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  animation: fadeInUp 0.8s ease;
}

/* Glitch effect */
.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0; right: 0;
  top: 0;
  overflow: hidden;
  pointer-events: none;
}
.glitch::before {
  color: #ff6b6b;
  z-index: -1;
  animation: glitch1 3s infinite linear alternate-reverse;
}
.glitch::after {
  color: var(--red);
  z-index: -2;
  animation: glitch2 2s infinite linear alternate-reverse;
}

.hero-title-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--font-b);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gray);
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.hero-role { color: var(--red); }
.hero-separator { color: var(--gray-dark); font-size: 14px; }

.hero-motto {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--gray);
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
  font-style: italic;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.6s both;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
}
.stat-label {
  font-family: var(--font-b);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-dark);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px 14px calc(32px + 3px);
  border: 1px solid var(--red);
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
  transition: var(--transition);
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-cta:hover {
  background: var(--red);
  color: var(--bg);
  box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(232,74,74,0.15);
  transform: translateY(-2px);
}
.cta-bracket { color: var(--red); }

/* Hero corners */
.hero-corner {
  position: absolute;
  width: 40px; height: 40px;
}
.hero-corner::before, .hero-corner::after {
  content: '';
  position: absolute;
  background: var(--red);
  opacity: 0.3;
}
.hero-corner.tl { top: 24px; left: 24px; }
.hero-corner.tl::before { width: 40px; height: 2px; }
.hero-corner.tl::after { width: 2px; height: 40px; }
.hero-corner.tr { top: 24px; right: 24px; }
.hero-corner.tr::before { width: 40px; height: 2px; right: 0; }
.hero-corner.tr::after { width: 2px; height: 40px; right: 0; }
.hero-corner.bl { bottom: 24px; left: 24px; }
.hero-corner.bl::before { width: 40px; height: 2px; bottom: 0; }
.hero-corner.bl::after { width: 2px; height: 40px; bottom: 0; }
.hero-corner.br { bottom: 24px; right: 24px; }
.hero-corner.br::before { width: 40px; height: 2px; right: 0; bottom: 0; }
.hero-corner.br::after { width: 2px; height: 40px; right: 0; bottom: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 3px;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-arrow-wrap {
  animation: scrollBounce 0.8s infinite;
  display: flex;
  justify-content: center;
}
.scroll-arrow {
  width: 12px; height: 12px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
}

/* ============================================================
   NAVIGATION (sticky)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-dark);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.nav.visible { transform: translateY(0); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo-bracket { color: var(--red); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-b);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.nav-clock {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.clock-icon { font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  transition: var(--transition);
}
.mobile-link:hover { color: var(--red); }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: var(--bg2);
}

.section-header {
  margin-bottom: 64px;
}
.section-tag {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--red);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.section-line {
  width: 60px;
  height: 3px;
  background: var(--red);
}
.section-desc {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1.7;
  max-width: 700px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.about-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gray-dark);
  padding: 24px;
}

.about-avatar {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg);
  border: 1px solid var(--gray-dark);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) contrast(1.2) brightness(0.9);
  position: relative;
  z-index: 1;
}
/* Glitch layers — exact same effect as CAN TATAR text */
.avatar-glitch {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.avatar-glitch.g1 {
  z-index: 2;
  filter: saturate(2) brightness(1.2);
  opacity: 0.7;
  animation: avatarGlitch1 1s infinite linear;
}
.avatar-glitch.g2 {
  z-index: 3;
  filter: saturate(2) brightness(0.8) hue-rotate(-15deg);
  opacity: 0.6;
  animation: avatarGlitch2 1.2s infinite linear;
}
/* Scanline overlay */
.about-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 2px,
    rgba(0,0,0,0.12) 2px, rgba(0,0,0,0.12) 4px
  );
  z-index: 4;
  pointer-events: none;
}
.about-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 5;
  pointer-events: none;
}
.avatar-placeholder {
  font-size: 64px;
}
.avatar-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanMove 3s ease-in-out infinite;
  z-index: 6;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-dark);
  font-size: 14px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--gray); }
.info-value { color: var(--white); font-weight: bold; }
.status-active { color: var(--green); display: flex; align-items: center; gap: 6px; }
.status-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0.3px;
}
.about-text p { margin-bottom: 20px; }

.about-quest {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--red-dim);
  border-left: 3px solid var(--red);
  margin-top: 24px;
}
.quest-icon { font-size: 28px; }
.quest-label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.quest-name {
  display: block;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gray-dark);
  transition: var(--transition);
  display: block;
}
.project-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232,74,74,0.1);
}

.project-image {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-placeholder { font-size: 48px; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,74,74,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-action {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
}

.project-info { padding: 20px; }
.project-category {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.project-desc {
  font-size: 14px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.skill-group {
  background: var(--surface);
  border: 1px solid var(--gray-dark);
  padding: 28px;
}
.skill-group-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill-icon { font-size: 22px; }

.skill-bar {
  margin-bottom: 18px;
}
.skill-bar:last-child { margin-bottom: 0; }
.skill-name {
  display: block;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.bar {
  height: 6px;
  background: var(--gray-dark);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-intro {
  font-size: 18px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--gray-dark);
  transition: var(--transition);
}
.contact-link:hover {
  border-color: var(--red);
  background: var(--red-dim);
  transform: translateX(4px);
}
.link-icon { font-size: 20px; }
.link-text { flex: 1; font-family: var(--font-h); font-size: 16px; font-weight: 600; letter-spacing: 2px; }
.link-arrow { color: var(--red); font-size: 18px; }

/* Terminal */
.contact-terminal {
  background: var(--surface);
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  overflow: hidden;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--gray-dark);
}
.terminal-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }
.terminal-title {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}
.terminal-body {
  padding: 20px;
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 2;
  text-transform: none;
}
.t-prompt { color: var(--green); }
.t-cmd { color: var(--white); }
.t-output { color: var(--gray); padding-left: 16px; }
.t-cursor { margin-top: 4px; }
.cursor-blink { animation: blink 1s step-end infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--gray-dark);
  padding: 24px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.footer-address {
  font-size: 12px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0.3px;
}
.footer-copy {
  font-size: 11px;
  color: var(--gray-dark);
  text-transform: none;
  letter-spacing: 0.3px;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scanMove {
  0% { top: 0; }
  100% { top: 100%; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes blink {
  50% { opacity: 0; }
}
@keyframes glitch1 {
  0%, 95% { clip-path: inset(0); transform: translateX(0); }
  96% { clip-path: inset(40% 0 20% 0); transform: translateX(-3px); }
  97% { clip-path: inset(10% 0 70% 0); transform: translateX(3px); }
  98% { clip-path: inset(60% 0 10% 0); transform: translateX(-2px); }
  99% { clip-path: inset(0); transform: translateX(0); }
}
@keyframes glitch2 {
  0%, 93% { clip-path: inset(0); transform: translateX(0); }
  94% { clip-path: inset(50% 0 10% 0); transform: translateX(4px); }
  95% { clip-path: inset(20% 0 50% 0); transform: translateX(-4px); }
  96% { clip-path: inset(0); transform: translateX(0); }
}
@keyframes avatarGlitch1 {
  0%, 85%, 100% { clip-path: inset(100%); transform: translateX(0); }
  87% { clip-path: inset(40% 0 20% 0); transform: translateX(-4px); }
  89% { clip-path: inset(10% 0 60% 0); transform: translateX(5px); }
  91% { clip-path: inset(55% 0 15% 0); transform: translateX(-3px); }
  93% { clip-path: inset(100%); transform: translateX(0); }
}
@keyframes avatarGlitch2 {
  0%, 82%, 100% { clip-path: inset(100%); transform: translateX(0); }
  84% { clip-path: inset(25% 0 40% 0); transform: translateX(5px); }
  87% { clip-path: inset(65% 0 5% 0); transform: translateX(-4px); }
  90% { clip-path: inset(100%); transform: translateX(0); }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-clock { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 28px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .hero-name { letter-spacing: 4px; }
  .hero-title-bar { flex-wrap: wrap; gap: 8px; font-size: 14px; }
  .hero-line { width: 30px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-cta { padding: 12px 24px; font-size: 15px; }
  .section { padding: 64px 0; }
  .section-title { letter-spacing: 2px; }
  .projects-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
