/* =====================
   ROOT & RESET
   ===================== */
:root {
  --bg:         #09090b;
  --bg-2:       #0f0f11;
  --surface:    #141416;
  --surface-2:  #1c1c1f;
  --accent:     #2dd4bf;
  --accent-dim: rgba(45, 212, 191, 0.55);
  --accent-bg:  rgba(45, 212, 191, 0.07);
  --text:       #f4f4f5;
  --text-muted: #71717a;
  --border:     rgba(255, 255, 255, 0.06);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.28s var(--ease);
  --radius:     6px;

  /* Z-index scale */
  --z-grain:   9000;
  --z-cursor:  9999;
  --z-ring:    9998;
  --z-nav:     1000;
  --z-menu:     999;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay — breaks digital flatness */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

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

/* Skip link for keyboard accessibility */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: calc(var(--z-cursor) + 1);
  background: var(--accent);
  color: var(--bg);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

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

.cursor-follower {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: var(--z-ring);
  transform: translate(-50%, -50%);
  transition: width 0.22s, height 0.22s, border-color 0.22s;
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 1.75rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 1rem 4rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--text);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}

.nav-logo:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #f4f4f5;
  transition: var(--transition);
  pointer-events: none;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #09090b;
}

.btn-primary:hover {
  background: #5eead4;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.985);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(0) scale(0.985);
}

.full-width { width: 100%; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-video-b {
  opacity: 0;
}

/* Inward vignette — video fades into site bg at all edges */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(9, 9, 11, 0.52) 0%, transparent 16%),
    linear-gradient(to top,    #09090b 0%, rgba(9, 9, 11, 0) 34%),
    linear-gradient(to right,  rgba(9, 9, 11, 0.65) 0%, transparent 28%),
    linear-gradient(to left,   rgba(9, 9, 11, 0.65) 0%, transparent 28%),
    radial-gradient(ellipse at center, transparent 28%, rgba(9, 9, 11, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.65s forwards 0.3s;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.8s forwards 0.44s;
  text-wrap: balance;
}

.hero-name span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 245, 0.4);
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.75rem;
  height: 1.65em;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.65s forwards 0.62s;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.cursor-blink {
  color: var(--accent);
  animation: blink 1s infinite;
}

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

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.65s forwards 0.8s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.65s forwards 1.05s;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.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; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   SECTIONS COMMON
   ===================== */
.section {
  padding: 9rem 0;
}

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

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  height: 1px;
  width: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 2rem;
  text-wrap: balance;
}

.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 245, 0.3);
}

.section-title.centered { text-align: center; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 6rem;
  align-items: start;
  margin-top: 1rem;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.about-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
}

.about-image-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  opacity: 0.18;
  z-index: -1;
}

.about-bio {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  max-width: 54ch;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat { text-align: left; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat > span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat p {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2rem;
}

.skill-tag {
  padding: 0.32rem 0.78rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--surface);
  transition: all var(--transition);
}


/* =====================
   PROJECTS
   ===================== */
.projects {
  background: var(--bg-2);
}

.projects-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.project-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  position: relative;
  transition: padding var(--transition);
}

.project-item::before {
  content: '';
  position: absolute;
  inset: 0 -4rem;
  background: var(--surface);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.project-item:hover::before { opacity: 1; }

.project-item-left {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.project-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  padding-top: 0.35rem;
  min-width: 22px;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition);
  flex-shrink: 0;
}

.project-item:hover .project-num { color: var(--accent); }

.project-item-info { min-width: 0; }

.project-item-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.45rem;
  transition: color var(--transition);
}

.project-item:hover .project-item-title { color: var(--accent); }

.project-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.68;
  max-width: 48ch;
}

.project-item-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-top: 0.3rem;
}

.project-item-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.project-item-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  display: inline-block;
}

.project-item:hover .project-item-arrow {
  transform: translate(3px, -3px);
  color: var(--accent);
}

.project-item-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.project-item:hover .project-item-link { color: var(--accent); }

/* =====================
   RESUME
   ===================== */
.resume-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.resume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.resume-col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.resume-col-title + .resume-col-title,
.skills-header {
  margin-top: 3rem;
}

.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: calc(100% - 8px);
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.75rem;
}

.timeline-dot {
  position: absolute;
  left: -4px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-date {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.timeline-company {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  display: block;
}

.timeline-content p:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.78;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.edu-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.edu-school {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.skill-category-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.skill-list li {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.3rem 0.75rem;
  cursor: default;
  user-select: none;
}


/* =====================
   CONTACT
   ===================== */
.contact {
  background: var(--bg-2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.82;
  margin-bottom: 2.5rem;
  max-width: 38ch;
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-link:hover { color: var(--text); }

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

.contact-link-icon {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-style: normal;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.contact-link:hover .contact-link-icon {
  border-color: rgba(255, 255, 255, 0.16);
}

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

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 0.55rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.16);
}

.form-group label {
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.33rem;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.07em;
}

/* Form error state */
.form-group.error input,
.form-group.error textarea {
  border-color: #f87171;
}

.form-error-msg {
  font-size: 0.72rem;
  color: #f87171;
  margin-top: 0.35rem;
  display: none;
}

.form-group.error .form-error-msg { display: block; }

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy,
.footer-credit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .resume-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; background: rgba(9, 9, 11, 0.92); }
  .nav.scrolled { padding: 0.8rem 1.5rem; }

  .container { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .section { padding: 6rem 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: #09090b;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
    z-index: var(--z-menu);
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }
  .nav-links a { font-size: 1.2rem; color: #f4f4f5; }
  .nav-toggle { display: flex; z-index: calc(var(--z-menu) + 1); }

  .about-image-wrap { max-width: 280px; margin: 0 auto; }
  .about-stats { gap: 2rem; }

  .project-item { flex-direction: column; gap: 0.75rem; }
  .project-item::before { inset: 0 -1.5rem; }
  .project-item-right { padding-top: 0; }

  .resume-header { flex-direction: column; align-items: flex-start; }

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

  .cursor,
  .cursor-follower { display: none; }
  body { cursor: auto; }
}
