* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --midnight: #0a0612;
  --midnight-2: #120b20;
  --muted: #9b8cb5;
  --text: #d4c5f0;
  --pink: #e879f9;
  --green: #3ba55c;
  --border: rgba(139, 92, 246, 0.18);
  --panel: rgba(19, 16, 32, 0.88);
  --panel-strong: rgba(26, 20, 44, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--midnight);
  color: var(--text);
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

#cursor,
#cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

#cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-light);
  mix-blend-mode: screen;
}

#cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.5);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

#aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-band {
  position: absolute;
  width: 200%;
  height: 360px;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.13;
  animation: auroraMove var(--d, 14s) ease-in-out infinite alternate;
}

.aurora-a {
  top: -8%;
  left: -25%;
  background: rgba(139, 92, 246, 0.9);
}

.aurora-b {
  top: 28%;
  left: -18%;
  background: rgba(232, 121, 249, 0.5);
  --d: 18s;
}

.aurora-c {
  top: 62%;
  left: -32%;
  background: rgba(167, 139, 250, 0.4);
  --d: 16s;
}

@keyframes auroraMove {
  0% {
    transform: translateX(-24%) translateY(0) rotate(-6deg);
  }

  100% {
    transform: translateX(10%) translateY(56px) rotate(6deg);
  }
}

.site-nav,
section,
#timeline-sec,
#services-sec,
#contact-wrap,
footer {
  position: relative;
  z-index: 2;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10, 6, 18, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.14);
}

.logo {
  color: var(--purple-light);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0 0 12px rgba(139, 92, 246, 0.45);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.7rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav ul a {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav ul a:hover,
.site-nav ul a[aria-current="true"] {
  color: var(--purple-light);
}

.menu-toggle {
  display: none;
  font: inherit;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: none;
}

.section-wrap {
  width: min(1000px, calc(100vw - 3rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-tag {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  display: inline-block;
  position: relative;
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: #e8d5ff;
  margin-bottom: 2.7rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--purple), var(--pink), transparent);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  padding-top: 88px;
}

.hero-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: center;
}

#oneko {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
  opacity: 0.95;
}

#status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(59, 165, 92, 0.42);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 165, 92, 0.42);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(59, 165, 92, 0);
  }
}

.hero-tag {
  margin-bottom: 1rem;
  color: var(--pink);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.glitch-name {
  position: relative;
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.05;
  color: #f0e8ff;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.glitch-name::before,
.glitch-name::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font: inherit;
}

.glitch-name::before {
  color: var(--pink);
  clip-path: polygon(0 0, 100% 0, 100% 34%, 0 34%);
  animation: glitchTop 4s infinite;
}

.glitch-name::after {
  color: var(--purple-light);
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
  animation: glitchBot 4s infinite;
}

@keyframes glitchTop {
  0%,
  92%,
  100% {
    transform: translate(0);
  }

  93% {
    transform: translate(-4px, 2px);
  }

  94% {
    transform: translate(4px, -1px);
  }

  95% {
    transform: translate(-3px, 1px);
  }

  96% {
    transform: translate(3px, 0);
  }
}

@keyframes glitchBot {
  0%,
  92%,
  100% {
    transform: translate(0);
  }

  93% {
    transform: translate(4px, -2px);
  }

  94% {
    transform: translate(-3px, 1px);
  }

  95% {
    transform: translate(3px, -1px);
  }

  96% {
    transform: translate(-2px, 0);
  }
}

.hero-sub {
  display: block;
  margin-top: 0.35rem;
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: clamp(0.95rem, 2.3vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.24em;
}

.typing-wrap {
  margin: 1.5rem 0 1rem;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.95rem;
  line-height: 1.85;
}

#typed-text {
  color: var(--purple-light);
}

.cursor-type {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: middle;
  background: var(--pink);
  animation: blink 0.8s step-end infinite;
}

.hero-text {
  max-width: 540px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-block;
  padding: 0.78rem 1.8rem;
  border-radius: 2px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
  cursor: none;
  transition: all 0.25s ease;
}

.btn-main {
  background: var(--purple);
  color: #fff;
}

.btn-main:hover {
  background: var(--purple-light);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.6);
}

.btn-ghost {
  color: var(--purple-light);
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--purple-light);
}

.avatar-card {
  width: 220px;
  flex-shrink: 0;
  padding: 1.8rem 1.4rem;
  text-align: center;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 12px;
}

.avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  margin: 0 auto 1rem;
}

.avatar {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4c1d95, #7c3aed, #a855f7);
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.32);
}

.avatar-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 46% 18%;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
}

.avatar-presence-dot {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--midnight);
  border-radius: 50%;
  background: #64748b;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.18);
}

.avatar-name {
  margin-bottom: 0.2rem;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  color: #e8d5ff;
}

.avatar-handle {
  margin-bottom: 0.85rem;
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 165, 92, 0.28);
  background: rgba(59, 165, 92, 0.12);
  color: #6ee7b7;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.avatar-presence-detail {
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.status-dot[data-presence="online"],
.avatar-presence-dot[data-presence="online"] {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 165, 92, 0.18);
}

.status-dot[data-presence="idle"],
.avatar-presence-dot[data-presence="idle"] {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.status-dot[data-presence="dnd"],
.avatar-presence-dot[data-presence="dnd"] {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.status-dot[data-presence="offline"],
.avatar-presence-dot[data-presence="offline"],
.status-dot[data-presence="unknown"],
.avatar-presence-dot[data-presence="unknown"] {
  background: #64748b;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.18);
}

.availability-badge[data-presence="online"] {
  border-color: rgba(59, 165, 92, 0.28);
  background: rgba(59, 165, 92, 0.12);
  color: #6ee7b7;
}

.availability-badge[data-presence="idle"] {
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
}

.availability-badge[data-presence="dnd"] {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

.availability-badge[data-presence="offline"],
.availability-badge[data-presence="unknown"] {
  border-color: rgba(100, 116, 139, 0.24);
  background: rgba(100, 116, 139, 0.1);
  color: #cbd5e1;
}

.avatar-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.atag {
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.15);
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.5rem;
}

.about-main,
.about-note,
.flip-front,
.flip-back,
.skill-pill,
.serv-card,
.contact-grid,
.form,
.contact-links,
.timeline,
.about-stack,
.about-side {
  background: rgba(19, 16, 32, 0.85);
}

.about-main {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.about-main p {
  color: var(--muted);
  line-height: 1.8;
}

.about-main p + p {
  margin-top: 0.95rem;
}

.about-side {
  display: grid;
  gap: 1rem;
}

.about-note,
.about-stack {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.note-id {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--pink);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.about-note p {
  color: var(--muted);
  line-height: 1.8;
}

.about-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-stack span {
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.64rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.flip-card {
  height: 320px;
  perspective: 1200px;
  cursor: none;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  padding: 1.6rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  backface-visibility: hidden;
}

.flip-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--pink), transparent);
}

.flip-back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(26, 12, 42, 0.95);
  border-color: rgba(139, 92, 246, 0.36);
  transform: rotateY(180deg);
}

.proj-icon {
  margin-bottom: 1rem;
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.proj-name,
.back-title,
.serv-name,
.tl-title {
  font-family: "Cinzel", serif;
}

.proj-name {
  margin-bottom: 0.5rem;
  color: #e8d5ff;
  font-size: 0.98rem;
}

.proj-desc {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.proj-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.stag {
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.stag-p {
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.stag-pk {
  color: #f0abfc;
  background: rgba(232, 121, 249, 0.1);
  border: 1px solid rgba(232, 121, 249, 0.25);
}

.stag-g {
  color: #6ee7b7;
  background: rgba(59, 165, 92, 0.1);
  border: 1px solid rgba(59, 165, 92, 0.25);
}

.flip-hint {
  margin-top: auto;
  padding-top: 0.8rem;
  color: rgba(139, 92, 246, 0.55);
  text-align: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.back-title {
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-size: 0.92rem;
}

.back-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.back-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.81rem;
}

.back-features li::before {
  content: "✦";
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--purple-light);
  font-size: 0.58rem;
}

.back-link {
  display: block;
  margin-top: 1.1rem;
  padding: 0.52rem 1rem;
  border-radius: 3px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.2);
  color: var(--purple-light);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  transition: all 0.2s ease;
}

.back-link:hover {
  background: rgba(139, 92, 246, 0.38);
  color: #fff;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.skill-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.skill-pill:hover {
  background: rgba(26, 20, 44, 0.92);
  border-color: rgba(139, 92, 246, 0.38);
}

.skill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skill-label {
  color: var(--text);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.skill-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(139, 92, 246, 0.12);
}

.skill-fill {
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: width 1.2s ease;
}

#timeline-sec,
#contact-wrap {
  background: rgba(10, 6, 18, 0.68);
  border-top: 1px solid rgba(139, 92, 246, 0.08);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 1.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 7px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--purple), var(--pink), transparent);
}

.tl-item {
  position: relative;
  margin: 0 0 1rem 1.6rem;
  padding: 1.2rem 1.4rem 1.2rem 1.6rem;
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(21, 15, 36, 0.96), rgba(13, 9, 23, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-item.in {
  opacity: 1;
  transform: translateX(0);
}

.tl-dot {
  position: absolute;
  top: 1.28rem;
  left: -1.95rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--midnight);
  background: var(--purple);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.62);
}

.dot-pink {
  background: var(--pink);
}

.tl-year {
  margin-bottom: 0.4rem;
  color: var(--pink);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.tl-title {
  margin-bottom: 0.4rem;
  color: #e8d5ff;
  font-size: 1rem;
  line-height: 1.35;
}

.tl-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 62ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.serv-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.serv-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.serv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.35);
}

.serv-card:hover::after {
  opacity: 1;
}

.serv-card-featured {
  border-color: rgba(139, 92, 246, 0.35);
}

.serv-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 1rem;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.serv-icon {
  margin-bottom: 1rem;
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.serv-name {
  margin-bottom: 0.4rem;
  color: #e8d5ff;
  font-size: 1rem;
}

.serv-price {
  margin-bottom: 1rem;
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 1.28rem;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.36);
}

.serv-price span {
  color: var(--muted);
  font-size: 0.7rem;
}

.serv-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.serv-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.serv-features li::before {
  content: "✦";
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--purple-light);
  font-size: 0.6rem;
}

.serv-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--purple-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.68rem;
  transition: all 0.2s ease;
}

.serv-btn:hover {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: transparent;
}

.clink {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.clink:hover {
  color: var(--purple-light);
}

.clink-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  flex-shrink: 0;
  font-family: "Share Tech Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  transition: background 0.2s ease;
}

.clink:hover .clink-icon {
  background: rgba(139, 92, 246, 0.25);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: transparent;
}

.flabel {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--purple-light);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.finput {
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.05);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.finput:focus {
  border-color: rgba(139, 92, 246, 0.5);
}

.finput::placeholder {
  color: rgba(155, 140, 181, 0.45);
}

textarea.finput {
  height: 104px;
  resize: none;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.08);
}

footer p {
  color: rgba(139, 92, 246, 0.45);
  font-family: "Share Tech Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.blink {
  animation: blink 1.2s step-end infinite;
}

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

  50% {
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .avatar-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    padding-inline: 1rem;
  }

  .site-nav ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(10, 6, 18, 0.96);
  }

  .site-nav.is-open ul {
    display: flex;
  }
}

@media (max-width: 680px) {
  .section-wrap {
    width: min(100vw - 1.2rem, 100%);
  }

  #hero {
    padding-inline: 0.6rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .timeline {
    padding-left: 0.85rem;
  }

  .tl-item {
    margin-left: 1.2rem;
    padding: 1rem 1rem 1rem 1.2rem;
  }

  .tl-dot {
    left: -1.5rem;
  }

  .projects-grid,
  .skills-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .site-nav ul a,
  .menu-toggle,
  .btn,
  .flip-card,
  .serv-card,
  .serv-btn {
    cursor: auto;
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring,
  #oneko {
    display: none;
  }
}
