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

:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --accent: #38C5E9;
  --accent2: #1fa8cc;
  --text: #f0f0f0;
  --text2: #a0a0a0;
  --border: rgba(255,255,255,0.07);
  --card: #111111;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Space Grotesk', sans-serif;
  --radius: 12px;
  --glow: 0 0 20px rgba(56,197,233,0.15);
}

html { scroll-behavior: smooth; cursor: none !important; }

* { cursor: none !important; }

/* CUSTOM CURSOR */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(56, 197, 233, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.custom-cursor.active { opacity: 1; }

.custom-cursor.hovering { 
  box-shadow: 0 0 20px rgba(56, 197, 233, 0.8), 0 0 40px rgba(56, 197, 233, 0.5);
}

a { cursor: none !important; }
button { cursor: none !important; }
input { cursor: none !important; }
textarea { cursor: none !important; }
select { cursor: none !important; }
*[role="button"] { cursor: none !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* BACKGROUND */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* UTILS */
.accent { color: var(--accent); }
.mono { font-family: var(--mono); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-bracket { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,.05); }
.nav-link.active { color: var(--accent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }
.nav-cta .arrow { transition: transform .2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 3rem;
  align-items: center;
}
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56,197,233,.4); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(56,197,233,0); }
}
.hero-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.stat { text-align: left; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--mono);
  line-height: 1;
  color: var(--text);
}
.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stat p {
  font-size: 0.75rem;
  color: var(--text2);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,197,233,0.25);
}
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text2);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.875rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,.04);
}

/* PROFILE CARD */
.profile-card {
  background: #1a1a1a;
  border: 1px solid rgba(56, 197, 233, 0.4);
  border-radius: var(--radius);
  padding: 1.75rem;
  width: 300px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 0 0 1px rgba(56,197,233,0.08), 0 16px 48px rgba(0,0,0,0.7);
  color: #f0f0f0;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(56, 197, 233, 0.2), 0 20px 56px rgba(0,0,0,0.8);
  border-color: rgba(56, 197, 233, 0.6);
}
.profile-img-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}
.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a2e;
  border: 2px solid var(--border);
}
.pfp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}
.profile-online {
  position: absolute;
  bottom: -6px;
  left: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-family: var(--mono);
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.online-dot.small { width: 6px; height: 6px; }
.profile-info { margin-bottom: 1rem; }
.profile-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.profile-role {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text2);
}
.profile-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}
.profile-stats { display: flex; flex-direction: column; gap: 0.6rem; }
.p-stat {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}
.p-stat-label { color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--mono); font-size: 0.7rem; }
.p-stat-val { font-weight: 600; color: var(--text); }
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: rgba(56,197,233,0.08);
  color: var(--accent);
  border: 1px solid rgba(56,197,233,0.15);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--mono);
  animation: fadeInUp 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text2), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* SECTIONS */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text2);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 200px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-sub { color: var(--text2); margin-bottom: 3rem; font-size: 1.05rem; }

/* ABOUT */
.about { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}
.about-text p {
  color: var(--text2);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .2s;
}
.highlight:hover { border-color: rgba(56,197,233,0.2); }
.highlight i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.highlight strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.highlight span { color: var(--text2); font-size: 0.82rem; }

/* TERMINAL */
.terminal {
  background: #0a0a0a;
  border: 1px solid rgba(56,197,233,0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(56,197,233,0.05);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.t-dot.red { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green { background: #28c840; }
.t-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text2);
  margin-left: 0.5rem;
}
.terminal-body {
  padding: 1.25rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 2;
}
.t-line { color: var(--text2); }
.t-prompt { color: var(--accent); margin-right: 0.5rem; }
.t-out { color: #888; padding-left: 1.2rem; }
.cursor {
  color: var(--accent);
  animation: blink .8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  opacity: 1;
  transform: translateY(0);
}
.project-card:hover {
  border-color: rgba(56,197,233,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(56,197,233,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.project-card:hover::before { opacity: 1; }
.project-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,.1);
  font-weight: 700;
}
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.project-icon {
  width: 44px; height: 44px;
  background: rgba(56,197,233,0.08);
  border: 1px solid rgba(56,197,233,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}
.project-links { display: flex; gap: 0.75rem; }
.project-links a {
  color: var(--text2);
  font-size: 1rem;
  text-decoration: none;
  transition: color .2s;
}
.project-links a:hover { color: var(--accent); }
.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color .2s;
}
.project-card:hover h3 { color: var(--accent); }
.project-card p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.project-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.project-tech span {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  color: var(--text2);
}

/* SKILLS */
.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  align-items: start;
}
.skill-bars { display: flex; flex-direction: column; gap: 1.5rem; }
.skill-item {}
.skill-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.skill-name { font-weight: 600; font-size: 0.9rem; }
.skill-pct { font-family: var(--mono); font-size: 0.8rem; color: var(--accent); }
.skill-track {
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--accent), #00aaff);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.skill-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.skill-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.skill-card:hover {
  border-color: rgba(56,197,233,0.2);
  transform: translateY(-2px);
}
.skill-card i { font-size: 1.2rem; margin-bottom: 0.75rem; display: block; }
.skill-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.skill-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }

/* CONTACT */
.contact { background: var(--bg2); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 2rem;
  align-items: start;
}
.contact-left p { color: var(--text2); line-height: 1.8; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.contact-link:hover {
  border-color: rgba(56,197,233,0.25);
  transform: translateX(4px);
}
.contact-link i { font-size: 1.1rem; color: var(--accent); width: 20px; text-align: center; }
.c-label { display: block; font-size: 0.7rem; color: var(--text2); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--mono); }
.c-value { display: block; font-weight: 600; color: var(--text); font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text2); letter-spacing: 0.04em; }
.form-group input, .form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text2);
}
.footer-status { display: flex; align-items: center; gap: 0.5rem; }

/* LINK TOOLTIPS */
.tip {
  position: relative;
}
.tip::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #0d1117;
  border: 1px solid rgba(56,197,233,0.35);
  color: var(--accent);
  font-size: 0.72rem;
  font-family: var(--mono);
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.tip::before {
  content: '';
  position: absolute;
  top: calc(100% + 4px);
  right: 12px;
  border: 5px solid transparent;
  border-bottom-color: rgba(56,197,233,0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tip:hover::after,
.tip:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* COMING SOON CARD */
.coming-soon-card {
  border: 1px dashed rgba(56,197,233,0.3) !important;
  background: repeating-linear-gradient(
    -45deg,
    rgba(56,197,233,0.02),
    rgba(56,197,233,0.02) 10px,
    transparent 10px,
    transparent 20px
  ) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.coming-soon-card .project-header {
  justify-content: center;
  margin-bottom: 1rem;
}
.coming-soon-icon {
  background: rgba(56,197,233,0.06) !important;
  border: 1px dashed rgba(56,197,233,0.35) !important;
  color: rgba(56,197,233,0.6) !important;
  animation: pulse-icon 2.5s ease-in-out infinite;
}
@keyframes pulse-icon {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56,197,233,0.2); }
  50% { box-shadow: 0 0 0 10px rgba(56,197,233,0); }
}
.coming-soon-title {
  font-size: 1.3rem !important;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.coming-soon-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-top: 1.5rem !important;
  padding: 0.7rem 1.4rem !important;
  border: 1px solid rgba(56,197,233,0.5) !important;
  border-radius: 8px !important;
  color: var(--accent) !important;
  font-size: 0.85rem !important;
  font-family: var(--mono) !important;
  text-decoration: none !important;
  background: rgba(56,197,233,0.1) !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 0 12px rgba(56,197,233,0.1);
}
.coming-soon-btn i {
  font-size: 1rem;
}
.coming-soon-btn:hover {
  background: rgba(56,197,233,0.2) !important;
  border-color: var(--accent) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 20px rgba(56,197,233,0.25) !important;
  color: #fff !important;
}
.coming-soon-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.coming-soon-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: dot-blink 1.4s ease-in-out infinite;
}
.coming-soon-dots span:nth-child(2) { animation-delay: 0.2s; }
.coming-soon-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-blink {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

/* AXELCOMBAT ICON */
.axelcombat-icon {
  background: linear-gradient(135deg, rgba(56,197,233,0.25), rgba(56,197,233,0.08)) !important;
  border-color: rgba(56,197,233,0.5) !important;
  color: var(--accent) !important;
  font-size: 1.3rem !important;
}
.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1rem;
}
.project-features span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(56,197,233,0.07);
  border: 1px solid rgba(56,197,233,0.2);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text);
  font-family: var(--mono);
}
.project-features span i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.testi-card:hover {
  border-color: rgba(56,197,233,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 0.2rem;
}
.testi-stars i {
  color: #f59e0b;
  font-size: 0.85rem;
}
.testi-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text2);
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(56,197,233,0.2), rgba(56,197,233,0.05));
  border: 1px solid rgba(56,197,233,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text2);
  font-family: var(--mono);
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ANIMATIONS — only used for project cards and skill bars */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-right {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-left > * {
  animation: fadeInUp 0.7s ease both;
}
.hero-left .available-badge { animation-delay: 0.1s; }
.hero-left .hero-label { animation-delay: 0.2s; }
.hero-left .hero-title { animation-delay: 0.3s; }
.hero-left .hero-desc { animation-delay: 0.4s; }
.hero-left .hero-stats { animation-delay: 0.5s; }
.hero-left .hero-actions { animation-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: flex; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .skills-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,8,.97); border-bottom: 1px solid var(--border); padding: 1rem; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .hero-title { font-size: 2.8rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .skill-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
}
