@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Core Palette */
  --bg-primary: #000000;
  --bg-secondary: #000000;
  --bg-card: rgba(25, 25, 25, 0.7);
  --bg-card-hover: rgba(16, 16, 16, 0.85);
  --bg-glass: rgba(10, 10, 10, 0.6);

  /* Text */
  --text-primary: #e8eaed;
  --text-secondary: #8b8fa3;
  --text-muted: #5a5e72;
  --text-white: #ffffff;

  /* Accent Colors */
  --accent-cyan: #ffffff;
  --accent-green: #e8eaed;
  --accent-blue: #c0c4d6;
  --accent-purple: #8b8fa3;

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #ffffff, #c0c4d6);
  --gradient-card: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(25, 25, 25, 0.9));
  --gradient-glow: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));

  /* Borders */
  --border-accent: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(255, 255, 255, 0.2);

  /* Shadows */
  --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.05);
  --shadow-glow-strong: 0 0 60px rgba(255, 255, 255, 0.08);

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --max-width: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =====================
   Base Reset
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--accent-cyan);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: rgba(0, 240, 255, 0.2);
  color: var(--text-white);
}

/* =====================
   Layout Helpers
===================== */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 0;
}

/* =====================
   Custom Scrollbar
===================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-green));
  border-radius: 10px;
}

/* =====================
   Canvas Background
===================== */
#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

main {
  position: relative;
  z-index: 1;
}

/* =====================
   Header / Nav
===================== */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-smooth);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  gap: 16px;
  height: 64px;
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--text-white);
}

.links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.link {
  position: relative;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
}

.link:hover {
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
}

.link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-smooth);
}

.link:hover::after {
  width: 60%;
}

.link:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 8px;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  user-select: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  transition: all 0.3s var(--ease-smooth);
}

.hamburger:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* =====================
   Hero
===================== */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero pseudo-elements removed for clean look */

.hero .inner {
  display: grid;
  gap: 24px;
  padding: 16px;
  position: relative;
  z-index: 2;
}

/* =====================
   Profile
===================== */
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-accent);
  z-index: -1;
  animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.name {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-white);
  text-align: left;
}

.role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  text-align: left;
}

/* IP Tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 1rem;
  color: var(--text-secondary);
  background: rgba(0, 240, 255, 0.03);
  backdrop-filter: blur(10px);
}

#ip {
  color: var(--accent-cyan);
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
  position: relative;
  font-size: 0.9rem;
}

#ip::after {
  content: "█";
  margin-left: 4px;
  animation: blink 1s steps(1) infinite;
  color: var(--accent-green);
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

/* Title & Subtitle */
.title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 900;
}

.title span {
  opacity: 0.8;
  font-weight: 500;
}

.subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA Buttons */
.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.btn:hover::before {
  opacity: 1;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(0, 255, 136, 0.08));
  border-color: var(--border-accent);
  color: var(--accent-cyan);
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 255, 136, 0.12));
  box-shadow: var(--shadow-glow-strong);
}

.small {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================
   Section Shared
===================== */
.section {
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
}

.section.wrap {
  text-align: left;
}

.section-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text-white);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 16px auto 0;
  border-radius: 3px;
}

.section p {
  text-align: center;
}

.muted {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.7;
}

#contact,
#contact h2 {
  text-align: center;
}

/* Scroll animations removed — elements always visible */

/* =====================
   Focus / Highlights
===================== */
#highlights {
  text-align: left;
}

#highlights .muted {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

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

.highlight-card {
  padding: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.06);
}

.highlight-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  align-self: flex-start;
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.05);
}

.highlight-card h3 {
  margin: 4px 0 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.highlight-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
}

/* =====================
   Tools / Skills
===================== */
.tools-section {
  background: var(--bg-secondary);
  padding: 100px 24px;
  text-align: center;
  position: relative;
}

/* tools-section radial gradient removed for clean black bg */

.tools-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
  position: relative;
}

.tools-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 16px auto 0;
  border-radius: 3px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.tool-card {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border-subtle);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tool-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.06);
}

.tool-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.1));
  transition: filter 0.35s var(--ease-smooth);
}

.tool-card:hover img {
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.2));
}

/* =====================
   Projects / Cards
===================== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.06);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}

.card-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.card-img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-smooth);
}

.card:hover .card-img {
  border-color: var(--border-accent);
}

.card p {
  color: var(--text-secondary);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.65;
}

.view-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.08);
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.view-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  transform: translateY(-1px);
}

.sep {
  margin: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
}

.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  display: inline-flex;
  margin-right: 8px;
  margin-bottom: 6px;
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.05);
  letter-spacing: 0.02em;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* =====================
   Hackathon
===================== */
#hackathon {
  margin-top: 0;
}

.hackathon-entry {
  padding: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hackathon-entry:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.06);
}

.hackathon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hackathon-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hackathon-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  padding: 4px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.03);
}

.hackathon-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: 10px;
}

.hackathon-meta p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hackathon-entry p {
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.65;
}

/* =====================
   CTF
===================== */
.ctf-list {
  margin-top: 2rem;
}

.ctf-header,
.ctf-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  border-radius: var(--radius-sm);
}

.ctf-header {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border-bottom: 1px solid var(--border-accent);
  background: rgba(0, 240, 255, 0.03);
  padding: 4px 0;
  font-family: 'JetBrains Mono', monospace;
}

.ctf-row {
  transition: all 0.3s var(--ease-smooth);
  border-bottom: 1px solid var(--border-subtle);
}

.ctf-row:hover {
  background: rgba(0, 240, 255, 0.03);
  border-bottom-color: var(--border-accent);
}

.ctf-column {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-primary);
}

.ctf-header .ctf-column {
  font-size: 0.8rem;
}

/* =====================
   Contact
===================== */
.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gradient-card);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.contact-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.06), transparent);
  transition: left 0.6s var(--ease-smooth);
}

.contact-links a:hover::before {
  left: 100%;
}

.contact-links a:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  color: var(--accent-cyan);
}

.contact-links a:active {
  transform: translateY(0);
}

.contact-links svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}

.contact-links a:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

/* =====================
   Footer
===================== */
footer {
  min-height: 80px;
  padding: 40px 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
}

footer .sep {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

/* =====================
   Scroll To Top
===================== */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-card);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid var(--border-accent);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  backdrop-filter: blur(10px);
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover {
  background: rgba(0, 240, 255, 0.12);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

#scrollToTopBtn svg {
  width: 20px;
  height: 20px;
}

/* =====================
   Hero Fade-in Animation
===================== */
@media (prefers-reduced-motion: no-preference) {
  .fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadein 0.8s ease-out forwards;
  }

  @keyframes fadein {
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* Section top border accent removed for clean aesthetic */

/* =====================
   Media Queries
===================== */
@media (max-width: 991px) {
  .links {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .links.show {
    display: flex;
  }

  .link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .link:hover {
    background: rgba(0, 240, 255, 0.06);
  }

  .link::after {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .card-content {
    flex-direction: column;
  }

  .card-img {
    width: 100%;
    height: auto;
  }

  .wrap {
    padding: 0 18px;
  }

  .title {
    font-size: 36px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 32px;
  }

  .tools-heading {
    font-size: 32px;
  }

  .hero {
    min-height: 90vh;
  }

  .profile {
    flex-direction: column;
    text-align: center;
  }

  .name,
  .role {
    text-align: center;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .card p {
    font-size: 0.88rem;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}
