#homeThreeCanvas {
  display: none;
}

.home-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: scanlineShift 8s linear infinite;
}

body.light-mode .home-scanlines {
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
}

@keyframes scanlineShift {
  0%   { background-position-y: 0px; }
  100% { background-position-y: 40px; }
}

.hud-corner {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.hud-tl {
  top: calc(var(--header-height) + 1.6rem);
  left: clamp(1.5rem, 3vw, 3.5rem);
}

.hud-br {
  bottom: 1.6rem;
  right: clamp(1.5rem, 3vw, 3.5rem);
  align-items: flex-end;
}

.hud-line {
  display: block;
  background: var(--accent-primary);
  opacity: 0.5;
  transition: var(--theme-transition);
}

.hud-h { width: 40px; height: 1.5px; }
.hud-v { width: 1.5px; height: 30px; }

.hud-tl .hud-v { margin-left: 0; }
.hud-br .hud-v { margin-right: 0; order: -1; }
.hud-br .hud-h { order: 1; }

.hud-label {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.75vw, 1.1rem);
  font-weight: 500;
  color: var(--accent-primary);
  opacity: 0.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  transition: var(--theme-transition);
  animation: hudBlink 3s step-end infinite;
}

.hud-br .hud-label {
  margin-top: 0;
  margin-bottom: 0.6rem;
  order: -2;
}

@keyframes hudBlink {
  0%, 90%, 100% { opacity: 0.55; }
  95%            { opacity: 0.1; }
}

#home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 8rem);
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 clamp(2rem, 5vw, 8%);
  padding-top: var(--header-height);
  max-height: calc(100dvh - var(--header-height));
}

.home-text-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.6vh, 1.8rem);
  animation: fadeInLeft 0.9s var(--transition-smooth) forwards;
}

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

.home-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--accent-primary);
  border-radius: 2rem;
  background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
  width: fit-content;
  transition: var(--theme-transition);
}

.status-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 4px var(--accent-primary); transform: scale(1); }
  50%       { box-shadow: 0 0 14px var(--accent-primary); transform: scale(1.2); }
}

.status-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.85vw, 1.15rem);
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 5vw + 0.5rem, 8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-tertiary);
  margin: 0;
  transition: var(--theme-transition);
}

.name-line {
    font-family: var(--font-heading);
  display: block;
}

.name-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-primary);
  text-shadow: 0 0 40px var(--accent-glow);
  transition: var(--theme-transition);
}

.home-role-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 1.8vw + 0.2rem, 2.6rem);
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--theme-transition);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.role-prefix {
  flex-shrink: 0;
}

.role-scramble {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}

.role-cursor {
  color: var(--accent-primary);
  font-weight: 300;
  flex-shrink: 0;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.home-desc {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 0.95vw + 0.2rem, 1.6rem);
  line-height: 1.75;
  color: var(--text-secondary);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 2px solid var(--accent-primary);
  padding: clamp(1.2rem, 1.8vw, 2rem) clamp(1.4rem, 2.2vw, 2.4rem);
  border-radius: 0 1rem 1rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 540px;
  transition: var(--theme-transition);
}

.desc-highlight {
  color: var(--text-pup);
  font-weight: 600;
}

.home-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-cyber {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.1rem, 1.3vw, 1.4rem) clamp(1.8rem, 2.5vw, 3rem);
  background: var(--accent-primary);
  color: var(--btn-text);
  border: 2px solid var(--accent-primary);
  border-radius: 0.8rem;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 1.1vw, 1.6rem);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: var(--theme-transition);
  animation: neonPulse 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  transition: left 0.5s ease;
}

.btn-cyber:hover::before {
  left: 100%;
}


@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent-glow); }
  50%       { box-shadow: 0 0 22px var(--accent-glow), 0 0 45px color-mix(in srgb, var(--accent-glow) 40%, transparent); }
}

.btn-cyber:hover {
  background: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-cyber i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.btn-cyber:hover i {
  transform: translateX(4px);
}
.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.6rem, 3.8vw, 4.4rem);
  height: clamp(3.6rem, 3.8vw, 4.4rem);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: clamp(1.7rem, 1.7vw, 2rem);
  transition: all 0.3s var(--transition-smooth);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.social-link:hover {
  background: color-mix(in srgb, var(--accent-primary) 15%, transparent);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 18px var(--accent-glow);
}

.home-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.9s var(--transition-smooth) 0.15s forwards;
  opacity: 0;
}

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

.img-hud-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hud-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--accent-primary);
  border-style: solid;
  opacity: 0.8;
  transition: var(--theme-transition);
  z-index: 10;
  pointer-events: none;
}

.hud-bracket-tl {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.hud-bracket-br {
  bottom: 20px;
  right: -8px;
  border-width: 0 2px 2px 0;
}

.glitch-wrap {
  position: relative;
  width: clamp(220px, 28vw, 440px);
  height: clamp(260px, 52dvh, 520px);
  cursor: pointer;
  overflow: hidden;
  border: 1.5px solid var(--accent-primary);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  box-shadow:
    0 0 20px var(--accent-glow),
    inset 0 0 20px color-mix(in srgb, var(--accent-glow) 30%, transparent);
  transition: box-shadow 0.3s ease, var(--theme-transition);
}

.glitch-wrap:hover,
.glitch-wrap.glitch-active {
  box-shadow:
    0 0 40px var(--accent-glow),
    0 0 80px color-mix(in srgb, var(--accent-glow) 40%, transparent),
    inset 0 0 30px color-mix(in srgb, var(--accent-glow) 20%, transparent);
}

.glitch-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: opacity 0.1s step-end;
}

.glitch-main { opacity: 1; z-index: 1; }
.glitch-alt  { opacity: 0; z-index: 2; }

.glitch-layer {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.glitch-r { mix-blend-mode: screen; }
.glitch-g { mix-blend-mode: screen; }

.holo-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 20%,
    color-mix(in srgb, var(--accent-primary) 12%, transparent) 40%,
    transparent 60%,
    color-mix(in srgb, var(--accent-primary) 8%, transparent) 80%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: holoShimmer 4s ease infinite;
  pointer-events: none;
  z-index: 4;
  opacity: 0.7;
}

@keyframes holoShimmer {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.img-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 3px
  );
  pointer-events: none;
  z-index: 5;
  opacity: 0.4;
}

.glitch-wrap.glitch-active .glitch-alt {
  animation: glitchAlt 0.4s steps(1) forwards;
}

@keyframes glitchAlt {
  0%  { opacity: 1; }
  60% { opacity: 1; }
  61% { opacity: 0; }
  80% { opacity: 1; }
  81% { opacity: 0; }
  100%{ opacity: 0; }
}

.glitch-wrap.glitch-active .glitch-r {
  opacity: 1;
  animation: glitchR 0.4s steps(2) forwards;
}

.glitch-wrap.glitch-active .glitch-g {
  opacity: 1;
  animation: glitchG 0.4s steps(2) forwards;
}

@keyframes glitchR {
  0%  { transform: translate(-4px, 2px) skewX(-1deg); filter: hue-rotate(0deg) saturate(5); clip-path: polygon(0 15%, 100% 15%, 100% 30%, 0 30%); }
  33% { transform: translate(3px, -1px) skewX(2deg); clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%); }
  66% { transform: translate(-2px, 3px); clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%); }
  100%{ opacity: 0; }
}

@keyframes glitchG {
  0%  { transform: translate(4px, -2px) skewX(1deg); filter: hue-rotate(120deg) saturate(5); clip-path: polygon(0 40%, 100% 40%, 100% 55%, 0 55%); }
  33% { transform: translate(-3px, 1px) skewX(-2deg); clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%); }
  66% { transform: translate(2px, -3px); clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%); }
  100%{ opacity: 0; }
}

.glitch-wrap.glitch-active {
  animation: glitchShake 0.4s steps(2) forwards;
}

@keyframes glitchShake {
  0%  { transform: translate(0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100%{ transform: translate(0); }
}

.img-hud-data {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hud-data-item {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.7vw, 1rem);
  font-weight: 500;
  color: var(--accent-primary);
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--theme-transition);
  animation: hudDataFlicker 5s step-end infinite;
}

.hud-data-item:nth-child(2) { animation-delay: 1.5s; }
.hud-data-item:nth-child(3) { animation-delay: 3s; }

@keyframes hudDataFlicker {
  0%, 88%, 92%, 100% { opacity: 0.6; }
  90%, 91%            { opacity: 0.1; }
}

@media screen and (max-width: 1100px) {
  .home-hero { gap: clamp(2rem, 3.5vw, 5rem); }
  .home-name { font-size: clamp(3rem, 4.5vw + 0.5rem, 6rem); }
  .glitch-wrap {
    width: clamp(200px, 26vw, 360px);
    height: clamp(240px, 48dvh, 420px);
  }

}

@media screen and (max-width: 768px) {
  .hud-corner   { display: none; }
  .img-hud-data { display: none; }

  .home-hero {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vh, 1.8rem);
    justify-items: center;
    text-align: center;
    padding-top: calc(var(--header-height) + 0.8rem);
    padding-bottom: 1rem;
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
    max-height: calc(100dvh - var(--header-height));
    overflow: hidden;
    align-content: center;
  }

  .home-image-col { order: 1; }

  .home-text-col {
    order: 2;
    align-items: center;
    gap: clamp(0.7rem, 1.3vh, 1.3rem);
    width: 100%;
  }

  .glitch-wrap {
    height: 32dvh;
    width: auto;
    aspect-ratio: 5 / 6;
    max-width: 85vw;
  }

  .home-name {
    font-size: clamp(32px, 8vw, 50px);
    text-align: center;
  }

  .home-role-row {
    justify-content: center;
    font-size: clamp(18px, 4.5vw, 26px);
  }

  .home-status-badge { padding: 6px 14px; }
  .status-text { font-size: clamp(10px, 2.4vw, 12px); }

  .home-desc {
    text-align: justify;
    font-size: clamp(12px, 3vw, 16px);
    padding: clamp(10px, 1.8vh, 16px) clamp(12px, 3.5vw, 18px);
    max-width: 100%;
    line-height: 1.65;
  }

  .home-actions {
    justify-content: center;
    gap: clamp(12px, 3vw, 20px);
    width: 100%;
  }

  .btn-cyber {
    padding: clamp(10px, 1.8vh, 14px) clamp(18px, 5vw, 28px);
    font-size: clamp(13px, 3.4vw, 17px);
  }

  .btn-cyber i { font-size: clamp(15px, 3.5vw, 19px); }

  .social-links { justify-content: center; gap: clamp(10px, 2.5vw, 15px); }

  .social-link {
    width: clamp(38px, 10vw, 48px);
    height: clamp(38px, 10vw, 48px);
    font-size: clamp(18px, 4.2vw, 22px);
  }

   .hud-bracket-br {
  bottom: -10px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
}

@media screen and (max-width: 480px) {
  .home-hero {
    gap: clamp(2.7rem, 1.5vh, 1.2rem);
    padding-top: calc(var(--header-height) + 0.5rem);
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .home-text-col { gap: clamp(7px, 1.2vh, 11px); }

  .glitch-wrap {
    height: 27dvh;
    width: auto;
    aspect-ratio: 5 / 6;
    max-width: 82vw;
  }

  .home-name { font-size: clamp(28px, 8.5vw, 40px); }
  .home-role-row { font-size: clamp(16px, 4.5vw, 22px); gap: 5px; }
  .status-text { font-size: clamp(9px, 2.4vw, 11px); }
  .home-status-badge { padding: clamp(5px, 0.9vh, 6px) clamp(10px, 3vw, 13px); }

  .home-desc {
    font-size: clamp(11px, 3.2vw, 14px);
    padding: clamp(9px, 1.4vh, 12px) clamp(10px, 3vw, 14px);
    line-height: 1.6;
  }

  .home-actions {
    flex-direction: column;
    align-items: center;
    gap: clamp(9px, 1.6vh, 12px);
  }

  .btn-cyber {
    width: 100%;
    justify-content: center;
    padding: clamp(10px, 1.6vh, 13px) 20px;
    font-size: clamp(13px, 3.5vw, 16px);
  }

  .btn-cyber i { font-size: clamp(14px, 3.5vw, 17px); }

  .social-links { gap: clamp(9px, 2.5vw, 13px); }

  .social-link {
    width: clamp(36px, 10vw, 44px);
    height: clamp(36px, 10vw, 44px);
    font-size: clamp(17px, 4.2vw, 20px);
  }

   .hud-bracket-br {
  bottom: -10px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
}

@media screen and (max-width: 390px) {
  .home-hero {
    gap: clamp(2.5rem, 1vh, 0.9rem);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .home-text-col { gap: clamp(5px, 1vh, 9px); }

  .glitch-wrap {
    height: 25dvh;
    width: auto;
    aspect-ratio: 5 / 6;
    max-width: 80vw;
  }

  .home-name { font-size: clamp(26px, 9vw, 34px); }
  .home-role-row { font-size: clamp(14px, 4.5vw, 19px); }
  .status-text { font-size: clamp(8px, 2.3vw, 10px); }
  .home-status-badge { padding: 4px 11px; }

  .home-desc {
    font-size: clamp(10px, 3.2vw, 12px);
    padding: 8px 11px;
    line-height: 1.55;
  }

  .btn-cyber {
    padding: 9px 18px;
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .btn-cyber i { font-size: clamp(13px, 3.5vw, 16px); }

  .social-link {
    width: clamp(34px, 9vw, 40px);
    height: clamp(34px, 9vw, 40px);
    font-size: clamp(16px, 4vw, 19px);
  }

   .hud-bracket-br {
  bottom: -10px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
}

@media screen and (max-width: 320px) {
  .home-hero { gap: 5px; padding-left: 12px; padding-right: 12px; }
  .home-text-col { gap: 5px; }

  .glitch-wrap {
    height: 22dvh;
    width: auto;
    aspect-ratio: 5 / 6;
    max-width: 78vw;
  }

  .home-name { font-size: 24px; }
  .home-role-row { font-size: 13px; }
  .status-text { font-size: 8px; }
  .home-status-badge { padding: 3px 9px; }

  .home-desc {
    font-size: 10px;
    padding: 7px 9px;
    line-height: 1.5;
  }

  .btn-cyber { font-size: 11px; padding: 8px 15px; }
  .btn-cyber i { font-size: 13px; }

  .social-link {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .social-links { gap: 8px; }

   .hud-bracket-br {
  bottom: -10px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
}

@media screen and (max-width: 768px) and (max-height: 680px) {
  .home-hero { gap: clamp(2rem, 1vh, 0.9rem); }
  .home-text-col { gap: clamp(0.4rem, 0.8vh, 0.7rem); }

  .glitch-wrap {
    height: 27dvh;
    width: auto;
    aspect-ratio: 5 / 6;
    max-width: 85vw;
  }

  .home-name { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .home-role-row { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }
  .status-text { font-size: clamp(0.85rem, 2vw, 1rem); }
  .home-status-badge { padding: 0.4rem 1rem; }

  .home-desc {
    font-size: clamp(1.3rem, 2.5vw, 1.2rem);
    padding: 0.7rem 1rem;
    line-height: 1.5;
  }

  .btn-cyber { padding: 0.8rem 1.6rem; font-size: clamp(1.1rem, 2.8vw, 1.4rem); }
  .btn-cyber i { font-size: clamp(1.3rem, 2.8vw, 1.6rem); }

  .social-link {
    width: clamp(6.2rem, 8vw, 3.8rem);
    height: clamp(6.2rem, 8vw, 3.8rem);
    font-size: clamp(2rem, 3.5vw, 1.8rem);
  }

  .hud-bracket-br {
  bottom: -10px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
}

@media screen and (max-width: 768px) and (min-height: 900px) {
  .home-hero { gap: clamp(1.4rem, 2.5vh, 2.2rem); }
  .home-text-col { gap: clamp(1rem, 1.8vh, 1.6rem); }

  .glitch-wrap {
    height: 40dvh;
    width: auto;
    aspect-ratio: 5 / 6;
    max-width: 88vw;
  }

  .home-name { font-size: clamp(3rem, 8vw, 5rem); }
  .home-role-row { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
  .status-text { font-size: clamp(1rem, 2.2vw, 1.2rem); }
  .home-status-badge { padding: 0.65rem 1.5rem; }

  .home-desc {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    padding: clamp(1.1rem, 1.8vh, 1.6rem) clamp(1.3rem, 3.5vw, 1.8rem);
    line-height: 1.7;
  }

  .btn-cyber {
    padding: clamp(1rem, 1.6vh, 1.3rem) clamp(1.8rem, 4.5vw, 2.5rem);
    font-size: clamp(1.3rem, 3.2vw, 1.6rem);
  }

  .btn-cyber i { font-size: clamp(1.5rem, 3.2vw, 1.8rem); }

  .social-link {
    width: clamp(3.6rem, 9vw, 4.4rem);
    height: clamp(3.6rem, 9vw, 4.4rem);
    font-size: clamp(1.7rem, 4vw, 2rem);
  }

  .social-links { gap: clamp(1rem, 2.5vw, 1.4rem); }

   .hud-bracket-br {
  bottom: -10px;
  right: -8px;
  border-width: 0 2px 2px 0;
}
}