/* ===== Variables ===== */
:root {
  --bg: #0a0a0c;
  --bg-elevated: #121216;
  --bg-card: #16161a;
  --bg-card-hover: #1c1c22;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-dark: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.2);
  --border: #27272a;
  --radius: 8px;
  --radius-lg: 12px;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-height: 68px;
  --max-width: 900px;
  --space-section: 4rem;
  --space-section-lg: 4.5rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (hover: none) {
  a, button {
    -webkit-tap-highlight-color: rgba(245, 158, 11, 0.15);
  }
}

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

/* ===== Icons ===== */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.28em;
  flex-shrink: 0;
}

.icon-nav {
  width: 1em;
  height: 1em;
  margin-right: 0.5rem;
  opacity: 0.85;
}

.icon-btn {
  width: 1em;
  height: 1em;
}

.btn .icon-btn:first-child {
  margin-right: 0.45rem;
  margin-left: 0;
}

.btn .icon-btn:last-child {
  margin-left: 0.45rem;
  margin-right: 0;
}

.icon-scroll {
  width: 1.25rem;
  height: 1.25rem;
  animation: bounce-down 2s ease-in-out infinite;
}

.icon-timeline {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--bg);
}

.icon-link {
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.35rem;
  opacity: 0.9;
}

.icon-contact-brand {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-resume-sub {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.5rem;
  vertical-align: -0.2em;
  color: var(--accent);
}

.section-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  color: var(--accent);
}

.section-title-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-section) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-section-lg) 0;
  }
}

.section-title {
  display: flex;
  align-items: center;
  font-size: clamp(1.625rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 2.25rem;
  max-width: 42ch;
  line-height: 1.55;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .section-intro {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.55;
  }
}

/* ===== Header & Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.nav-logo {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

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

.nav-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.6rem;
  height: 2.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-logo-emoji {
  font-size: 1.1em;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover .icon-nav {
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-links .icon-nav {
    margin-right: 0.65rem;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.25rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .nav-links a {
    padding: 0.875rem 0.25rem;
    min-height: 3rem;
    align-items: center;
    font-size: 1rem;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-height) 1.5rem 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -5%, rgba(245, 158, 11, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 45%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 45%, black 15%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  max-width: 460px;
  animation: fade-in-up 0.8s ease-out;
}

.hero-photo {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  position: relative;
  overflow: visible;
  animation: fade-in-up 0.8s ease-out 0.1s both;
}

/* Sun-like glow: primary-color halo that gently expands and fades in/out */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.4) 0%,
    rgba(245, 158, 11, 0.2) 35%,
    rgba(245, 158, 11, 0.08) 55%,
    transparent 78%
  );
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
  animation: hero-sun-glow 4s ease-in-out infinite;
}

@keyframes hero-sun-glow {
  0%, 100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.875rem;
}

.hero-label-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.875rem;
}

.hero-title .highlight {
  color: var(--accent);
  text-shadow:
    0 0 10px rgba(245, 158, 11, 0.3),
    0 0 20px rgba(245, 158, 11, 0.18),
    0 0 30px rgba(245, 158, 11, 0.1);
  animation: hero-name-glow 4s ease-in-out infinite;
}

@keyframes hero-name-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.05); }
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.75rem;
  max-width: 40ch;
}

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

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(22, 22, 26, 0.6);
  backdrop-filter: blur(6px);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-scroll:hover {
  color: var(--accent);
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(22, 22, 26, 0.85);
}

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

.hero-scroll-text {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-label {
    margin-bottom: 0.625rem;
  }

  .hero-title {
    margin-bottom: 0.625rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
  }

  .hero-cta {
    justify-content: center;
    gap: 0.875rem;
  }

  .hero-photo {
    width: 220px;
    height: 220px;
  }

  .hero-scroll {
    bottom: 1.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: var(--header-height) 1.25rem 3.5rem;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-inner {
    gap: 1.75rem;
  }

  .hero-photo {
    width: 180px;
    height: 180px;
  }

  .hero-title {
    font-size: 2.125rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-cta .btn {
    min-height: 2.875rem;
    padding: 0.75rem 1.375rem;
    font-size: 0.9375rem;
  }

  .hero-scroll {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    padding: 0.625rem 1.125rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .hero-scroll-text {
    white-space: nowrap;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 480px) {
  .btn {
    min-height: 2.75rem;
  }
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0e;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #0c0c0e;
  box-shadow: 0 4px 14px var(--accent-glow);
}

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

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.1);
}

/* ===== About ===== */
.section {
  scroll-margin-top: var(--header-height);
}

.about .about-content {
  animation: fade-in-up 0.6s ease-out;
}

.about-grid {
  display: grid;
  gap: 1.75rem;
}

.about-lead {
  font-size: 1.0625rem;
  color: var(--text);
  margin: 0 0 0.875rem;
  line-height: 1.55;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 0.875rem;
  line-height: 1.6;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .about-grid {
    gap: 1.25rem;
  }

  .about-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.5rem;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .about-skills {
    gap: 0.4rem;
    margin-top: 1.125rem;
  }

  .skill-tag {
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
  }
}

.skill-tag {
  font-size: 0.8125rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.skill-tag:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ===== Resume / Timeline ===== */
.resume .container > .section-title {
  margin-bottom: 0;
}

.resume-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.resume-header .section-title {
  margin: 0;
}

.resume-actions {
  flex-shrink: 0;
}

.btn-download-cv {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  min-height: 2.75rem;
}

.btn-download-cv .icon-btn:first-child {
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 0.75rem;
  margin-left: 0;
}

@media (max-width: 480px) {
  .resume-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    padding-bottom: 1.25rem;
  }

  .timeline-marker {
    left: -1rem;
    width: 20px;
    height: 20px;
  }

  .timeline-content h3 {
    font-size: 1rem;
  }

  .timeline-company,
  .timeline-content p:last-child {
    font-size: 0.875rem;
  }

  .resume-edu {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .resume-edu p {
    font-size: 0.875rem;
  }

  .btn-download-cv {
    min-height: 2.875rem;
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
  }
}

.timeline {
  position: relative;
  padding-left: 1.25rem;
  border-left: 1px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -1.25rem;
  top: 0.15rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.timeline-content {
  padding-left: 0.5rem;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  display: block;
}

.timeline-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.timeline-company {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.timeline-content p:last-child {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.55;
}

.resume-edu {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.resume-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.resume-edu p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* ===== Projects ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.project-image {
  height: 152px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-body {
  padding: 1.125rem;
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  display: block;
}

.project-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.project-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 0.875rem;
  line-height: 1.55;
}

.project-links {
  display: flex;
  gap: 1.125rem;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.project-links a:hover {
  transform: translateX(2px);
}

@media (max-width: 480px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-card {
    max-width: 100%;
  }

  .project-body {
    padding: 1.125rem;
  }

  .project-body h3 {
    font-size: 1rem;
  }

  .project-body p {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }

  .project-links a {
    padding: 0.25rem 0;
    min-height: 2.75rem;
    align-items: center;
    font-size: 0.9375rem;
  }
}

/* ===== Contact ===== */
.contact-lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1.75rem;
  max-width: 42ch;
  line-height: 1.55;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 1.75rem;
  margin-bottom: 0;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 1rem;
  transition: color 0.2s ease;
}

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

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.contact-item:hover .contact-icon {
  color: var(--accent);
}

@media (max-width: 480px) {
  .contact-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .contact-item {
    padding: 0.875rem 0;
    min-height: 3rem;
    align-items: center;
    font-size: 1rem;
  }

  .contact-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .footer p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .about .about-content {
    animation: none;
  }
  .hero-label-dot { animation: none; }
  .icon-scroll { animation: none; }
  .hero-photo::before { animation: none; opacity: 0.9; }
  .hero-title .highlight { animation: none; }
}
