/* ===================================
   VARIÁVEIS & RESET
=================================== */
:root {
      /* Delay helper classes (replaces inline --delay styles) */
  .delay-1 { --delay: 0.2s; }
  .delay-2 { --delay: 0.4s; }
  .delay-3 { --delay: 0.5s; }
   
   /* Text alignment helper (replaces inline text-align style) */
  .text-center { text-align: center; }
  --bg:          #0a0a0c;
  --bg-2:        #0f0f13;
  --bg-3:        #141418;
  --surface:     #1a1a20;
  --surface-2:   #22222a;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);

  --text:        #e8e8f0;
  --text-muted:  #8888a0;
  --text-dim:    #555568;

  --accent:      #c8a96e;      /* dourado-cobre */
  --accent-dim:  rgba(200,169,110,0.12);
  --accent-glow: rgba(200,169,110,0.25);

  --red:    #e05555;
  --green:  #4caf7d;
  --mono:   'Share Tech Mono', monospace;
  --sans:   'Syne', sans-serif;

  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --r:      10px;
  --r-lg:   18px;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===================================
   CANVAS PARTÍCULAS
=================================== */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ===================================
   CURSOR
=================================== */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease);
}

.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  opacity: 0.5;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 50px; height: 50px;
  opacity: 0.8;
}

/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  background: rgba(10,10,12,0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,12,0.95);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logo-bracket { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.status-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,125,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(76,175,125,0); }
}

/* ===================================
   HERO
=================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 6rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.tag-line {
  width: 30px; height: 1px;
  background: var(--accent);
}

.hero-name {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.hero-name .accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: none;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0c;
  font-weight: 700;
}
.btn-primary:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-ghost {
  border-color: var(--border-2);
  color: var(--text-muted);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; justify-content: center; }

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 50px);
  grid-template-rows: repeat(3, 44px);
  gap: 6px;
  position: absolute;
  top: -30px; right: -20px;
  opacity: 0.3;
}
.hex {
  width: 50px; height: 44px;
  background: var(--surface);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hex-pulse 3s ease-in-out infinite;
}
.hex:nth-child(2n) { animation-delay: 0.5s; background: var(--accent-dim); }
.hex:nth-child(3n) { animation-delay: 1s; }

@keyframes hex-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.terminal-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px var(--accent-glow);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.t-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.t-dot.red    { background: #e05555; }
.t-dot.yellow { background: #e0b355; }
.t-dot.green  { background: var(--green); }
.t-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
}
.terminal-body {
  padding: 1.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 2;
}
.t-prompt { color: var(--accent); margin-right: 0.4rem; }
.t-out    { color: var(--text-muted); padding-left: 1.2rem; }
.t-cursor { color: var(--text-muted); }
/* ===================================
   AVATAR / HERO VISUAL
=================================== */
.avatar-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.15);
  animation: ring-spin linear infinite;
}
.ring-1 { width: 100%; height: 100%; animation-duration: 20s; }
.ring-2 { width: 78%;  height: 78%;  animation-duration: 14s; animation-direction: reverse; border-color: rgba(200,169,110,0.1); }
.ring-3 { width: 58%;  height: 58%;  animation-duration: 9s;  border-style: dashed; border-color: rgba(200,169,110,0.12); }

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.avatar-core {
  width: 160px;
  height: 160px;
  background: var(--surface);
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px var(--accent-glow), inset 0 0 30px rgba(200,169,110,0.05);
  z-index: 2;
}

.shield-svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 0 8px rgba(200,169,110,0.4));
}

.avatar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  z-index: 3;
}
.av-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.av-role {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* Orbiting dots */
.orbit {
  position: absolute;
  border-radius: 50%;
  animation: ring-spin linear infinite;
  z-index: 3;
}
.orbit-1 { width: 100%; height: 100%; animation-duration: 7s; }
.orbit-2 { width: 78%;  height: 78%;  animation-duration: 11s; animation-direction: reverse; }

.orbit-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent);
}

/* ===================================
   ABOUT (full width text)
=================================== */
.about-grid {
  max-width: 860px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}
.about-text p:last-child { margin-bottom: 0; }

.tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.3rem 0.9rem;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}



/* SCROLL HINT */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float-hint 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
}
@keyframes float-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===================================
   ANIMATE-IN (hero stagger)
=================================== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.8s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================
   REVEAL (scroll)
=================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   SECTIONS
=================================== */
.section {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}
.section-alt { background: var(--bg-2); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.label-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  opacity: 0.6;
}
.label-text {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  line-height: 1.1;
}

/* ===================================
   SOBRE (legacy - removido)
=================================== */

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-plus { font-size: 1.5rem; }
.stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.tag {
  padding: 0.3rem 0.9rem;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ===================================
   TIMELINE (EXPERIÊNCIA)
=================================== */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: -2.45rem;
  top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.timeline-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.tcard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.tcard-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.tcard-company {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tcard-badge {
  padding: 0.25rem 0.8rem;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.tcard-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tcard-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.tcard-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.tcard-list li strong { color: var(--text); }

/* ===================================
   EDUCAÇÃO
=================================== */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.edu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.edu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.edu-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.edu-card:hover::before { opacity: 1; }

.edu-year {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.edu-icon {
  font-size: 2rem;
  line-height: 1;
}

.edu-degree {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.edu-school {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.edu-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ===================================
   PROJETOS
=================================== */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.project-card.featured {
  border-color: rgba(200,169,110,0.25);
}

.project-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0.5;
}
.project-card:hover .project-glow { opacity: 1; }
.project-card:hover {
  border-color: rgba(200,169,110,0.5);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.project-type {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.project-link {
  color: var(--text-muted);
  transition: color 0.3s;
}
.project-link:hover { color: var(--accent); }

.project-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.project-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ptag {
  padding: 0.3rem 0.9rem;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.83rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  transition: gap 0.3s;
}
.project-btn:hover { gap: 0.8rem; }

/* ===================================
   CONTACTO
=================================== */
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-left {
  width: 100%;
  text-align: center;
}

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

.contact-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.contact-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-3px);
}

.contact-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 8px;
  flex-shrink: 0;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.85rem;
  outline: none;
  resize: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

/* ===================================
   FOOTER
=================================== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-name {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 3rem 4rem;
    text-align: center;
  }
  .hero-cta { justify-content: center; }
  .hero-tag { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .edu-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-inner { padding: 0 2rem; }
  .navbar { padding: 0 2rem; }
  .footer-inner { padding: 0 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-status { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .section-inner { padding: 0 1.5rem; }
  .timeline { padding-left: 1.5rem; }
  .footer-inner { padding: 0 1.5rem; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .btn { cursor: pointer; }
}
