/* ============================================
   R-010 DJ ONE-PAGER
   ============================================
   KLEUREN AANPASSEN:
   --neon-yellow : primaire neon kleur
   --neon-cyan   : secundaire neon kleur
   --neon-red    : accentkleur
   --bg-dark     : achtergrond
   ============================================ */

:root {
  --neon-yellow: #e6ff00;
  --neon-cyan: #00e5ff;
  --neon-red: #ff3348;
  --neon-green: #39ff14;
  --bg-dark: #0a0a0f;
  --bg-alt: #0f0f18;
  --text-main: #e0e0e0;
  --text-muted: #888;
  --font: 'Space Grotesk', sans-serif;
  --glow-yellow: 0 0 8px rgba(230, 255, 0, .6), 0 0 24px rgba(230, 255, 0, .25);
  --glow-cyan: 0 0 8px rgba(0, 229, 255, .6), 0 0 24px rgba(0, 229, 255, .25);
  --glow-green: 0 0 8px rgba(57, 255, 20, .5), 0 0 20px rgba(57, 255, 20, .2);
  --glow-red: 0 0 8px rgba(255, 51, 72, .5), 0 0 20px rgba(255, 51, 72, .2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- CONTAINER ---- */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   STICKY NAVIGATIE
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-nav__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1.5rem;
}

.site-nav__brand {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  color: var(--text-main);
  white-space: nowrap;
  transition: color .2s ease, text-shadow .2s ease;
}

.site-nav__brand:hover {
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.site-nav__link {
  position: relative;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: .2rem 0;
  transition: color .2s ease;
}

.site-nav__link:hover {
  color: var(--neon-cyan);
}

.site-nav__link--active {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.site-nav__link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.site-nav__cta {
  margin-left: 1.4rem;
  padding: .5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  background: var(--neon-yellow);
  color: var(--bg-dark);
  border: 2px solid var(--neon-yellow);
  box-shadow: var(--glow-yellow);
  transition: all .2s ease;
}

.site-nav__cta:hover {
  background: transparent;
  color: var(--neon-yellow);
}

.site-nav__cta:focus-visible,
.site-nav__link:focus-visible,
.site-nav__brand:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .site-nav__inner {
    gap: .5rem;
    padding: .55rem .9rem;
  }
  .site-nav__brand {
    display: none;
  }
  .site-nav__links {
    margin: 0 auto;
    gap: .95rem;
  }
  .site-nav__link {
    font-size: .85rem;
  }
  .site-nav__cta {
    margin-left: 0;
    padding: .45rem .9rem;
  }
}

/* Extra smalle telefoons: nav nog iets compacter */
@media (max-width: 380px) {
  .site-nav__links { gap: .7rem; }
  .site-nav__link { font-size: .8rem; }
  .site-nav__cta { padding: .4rem .7rem; font-size: .78rem; }
}

/* ============================================
   SCANLINES OVERLAY (CRT effect)
   ============================================ */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, .03) 0px,
    rgba(0, 0, 0, .03) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: .04;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, .08) 0%,
    rgba(230, 255, 0, .04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9996;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: transform;
}

.cursor-glow--visible {
  opacity: 1;
}

/* Hide cursor glow on touch devices */
@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ---- NEON TEXT ---- */
.neon-text {
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
}

.text-cyan {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.text-red {
  color: var(--neon-red);
  text-shadow: 0 0 8px rgba(255, 51, 72, .6);
}

.text-muted {
  color: var(--text-muted);
}

/* ============================================
   GRADIENT TEXT (cyan → yellow)
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* glow uses a blurred pseudo-element */
  position: relative;
}

.gradient-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(12px);
  opacity: .5;
  z-index: -1;
}

/* ============================================
   GLOW PULSE (breathing neon borders)
   ============================================ */
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite alternate;
}

.glow-pulse--green {
  animation-name: glowPulseGreen;
}

.glow-pulse--red {
  animation-name: glowPulseRed;
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 6px rgba(0, 229, 255, .4), 0 0 16px rgba(0, 229, 255, .15); }
  100% { box-shadow: 0 0 12px rgba(0, 229, 255, .7), 0 0 36px rgba(0, 229, 255, .3); }
}

@keyframes glowPulseGreen {
  0%   { box-shadow: 0 0 6px rgba(57, 255, 20, .3), 0 0 16px rgba(57, 255, 20, .1); }
  100% { box-shadow: 0 0 12px rgba(57, 255, 20, .6), 0 0 36px rgba(57, 255, 20, .25); }
}

@keyframes glowPulseRed {
  0%   { box-shadow: 0 0 6px rgba(255, 51, 72, .3), 0 0 16px rgba(255, 51, 72, .1); }
  100% { box-shadow: 0 0 12px rgba(255, 51, 72, .6), 0 0 36px rgba(255, 51, 72, .25); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* subtle gradient bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(230, 255, 0, .06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 229, 255, .05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  animation: flicker 3s ease-in-out infinite alternate;
}

.hero__subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-top: .5rem;
  font-weight: 600;
}

.hero__tagline {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero__photo {
  margin: 0 auto 1.5rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon-yellow);
  box-shadow: var(--glow-yellow);
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@keyframes flicker {
  0%, 90%, 100% { opacity: 1; }
  92% { opacity: .85; }
  94% { opacity: 1; }
  96% { opacity: .9; }
}

/* ============================================
   GENRE TAGS
   ============================================ */
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}

.genre-tag {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid var(--neon-cyan);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .2s ease;
}

.genre-tag:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  box-shadow: var(--glow-cyan);
}

.genre-tag[href="#"] {
  pointer-events: none;
  cursor: default;
}

.genre-tag:focus-visible {
  outline: 2px solid var(--neon-yellow);
  outline-offset: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-transform: uppercase;
  letter-spacing: .06em;
}

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

.btn--primary {
  background: var(--neon-yellow);
  color: var(--bg-dark);
  border-color: var(--neon-yellow);
  box-shadow: var(--glow-yellow);
  margin-top: 2rem;
}

.btn--primary:hover {
  background: transparent;
  color: var(--neon-yellow);
}

.btn--secondary {
  background: transparent;
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn--secondary:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
}

.btn--copied {
  border-color: var(--neon-yellow) !important;
  color: var(--neon-yellow) !important;
  box-shadow: var(--glow-yellow) !important;
  background: transparent !important;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section__heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* ============================================
   ABOUT GRID
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  margin-bottom: 1rem;
}

/* ============================================
   SKILL TREE
   ============================================ */
.skill-tree {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Animation: hidden by default, JS adds --visible */
.skill-tree--animate .skill-tree__top,
.skill-tree--animate .skill-tree__connector,
.skill-tree--animate .skill-box--green,
.skill-tree--animate .skill-box--red {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}

.skill-tree--animate.skill-tree--visible .skill-tree__top {
  opacity: 1; transform: translateY(0);
  transition-delay: 0s;
}

.skill-tree--animate.skill-tree--visible .skill-tree__connector {
  opacity: 1; transform: translateY(0);
  transition-delay: .3s;
}

.skill-tree--animate.skill-tree--visible .skill-tree__bottom .skill-box:nth-child(1) {
  opacity: 1; transform: translateY(0);
  transition-delay: .5s;
}

.skill-tree--animate.skill-tree--visible .skill-tree__bottom .skill-box:nth-child(2) {
  opacity: 1; transform: translateY(0);
  transition-delay: .65s;
}

.skill-tree--animate.skill-tree--visible .skill-tree__bottom .skill-box:nth-child(3) {
  opacity: 1; transform: translateY(0);
  transition-delay: .8s;
}

.skill-tree--animate.skill-tree--visible .skill-tree__bottom .skill-box:nth-child(4) {
  opacity: 1; transform: translateY(0);
  transition-delay: 1s;
}

.skill-tree__top {
  display: flex;
  justify-content: center;
}

.skill-tree__connector {
  position: relative;
  width: 100%;
  height: 32px;
}

.connector-line {
  position: absolute;
  background: var(--text-muted);
}

.connector-line--vertical {
  width: 2px;
  height: 12px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.connector-line--horizontal {
  height: 2px;
  top: 12px;
  left: 12.5%;
  right: 12.5%;
}

.connector-line--drop {
  width: 2px;
  height: 20px;
  top: 12px;
}

.connector-line--drop-1 { left: 12.5%; }
.connector-line--drop-2 { left: 37.5%; }
.connector-line--drop-3 { left: 62.5%; }
.connector-line--drop-4 { left: 87.5%; }

.skill-tree__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  width: 100%;
}

@media (max-width: 480px) {
  .skill-tree__bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-tree__connector {
    display: none;
  }
}

.skill-box {
  padding: .5rem .4rem;
  border-radius: 4px;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: 2px solid;
}

.skill-box--result {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(57, 255, 20, .08);
  box-shadow: var(--glow-green);
  padding: .6rem 1.5rem;
  font-size: .85rem;
}

.skill-box--green {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(57, 255, 20, .06);
}

.skill-box--red {
  border-color: var(--neon-red);
  color: var(--neon-red);
  background: rgba(255, 51, 72, .06);
  box-shadow: var(--glow-red);
}

/* ============================================
   PHOTO FRAME + FALLBACK
   ============================================ */
.photo-frame {
  aspect-ratio: 4 / 5;
  border: 2px solid var(--neon-cyan);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.photo-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: .85rem;
  justify-content: center;
  align-items: center;
}

.photo-frame--fallback .photo-frame__img {
  display: none;
}

.photo-frame--fallback .photo-frame__placeholder {
  display: flex;
}

/* ============================================
   ROTTERDAM
   ============================================ */
.rotterdam-sub {
  font-style: italic;
  margin-top: .5rem;
}

.deelder-quote {
  border-left: 3px solid var(--neon-cyan);
  padding: 1rem 1.5rem;
  margin: 1rem 0 1.5rem;
  box-shadow: -4px 0 12px rgba(0, 229, 255, .15);
}

.deelder-quote p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-main);
}

.deelder-quote footer {
  margin-top: .5rem;
  color: var(--text-muted);
  font-size: .9rem;
}

.rotterdam-icons {
  margin-top: 1.25rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

/* ============================================
   AGENDA / TOURDATA
   ============================================ */
.agenda__year {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
  margin-bottom: 1.5rem;
}

.agenda__list {
  display: flex;
  flex-direction: column;
}

.agenda__row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s ease, padding-left .2s ease;
}

.agenda__row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.agenda__row:hover {
  background: rgba(0, 229, 255, .05);
  padding-left: .75rem;
}

.agenda__date {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neon-cyan);
  letter-spacing: .03em;
}

.agenda__location {
  font-weight: 600;
  color: var(--text-main);
}

.agenda__flag {
  margin-right: .4rem;
}

.agenda__event {
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 640px) {
  .agenda__row {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "date location"
      "date event";
    gap: .15rem 1rem;
  }
  .agenda__date { grid-area: date; align-self: center; }
  .agenda__location { grid-area: location; }
  .agenda__event { grid-area: event; text-align: left; font-size: .9rem; }
}

/* ============================================
   SPOTIFY EMBEDS
   ============================================ */
.spotify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .spotify-grid {
    grid-template-columns: 1fr;
  }
}

.spotify-embed {
  border: 1px solid rgba(0, 229, 255, .15);
  border-radius: 14px;
  padding: .75rem;
  background: rgba(0, 229, 255, .03);
}

.spotify-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 640px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-question {
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--neon-cyan);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-answer {
  padding: 0 0 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   NIEUWSBRIEF
   ============================================ */
.newsletter {
  max-width: 620px;
}

.newsletter__pitch {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.newsletter__what {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.newsletter__what li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.newsletter__what li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

/* MailerLite embed krijgt lucht; de vormgeving zelf regel je in MailerLite */
.ml-embedded {
  margin: 0 0 .75rem;
}

.newsletter__note {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ---- ARCHIEF ---- */
.newsletter__archive {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.newsletter__archive-heading {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
}

.archive-list {
  display: flex;
  flex-direction: column;
}

.archive-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.archive-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.archive-item__meta {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}

.archive-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  transition: color .2s ease, text-shadow .2s ease;
}

.archive-item__title:hover {
  color: var(--neon-yellow);
  text-shadow: var(--glow-yellow);
}

.archive-item__teaser {
  color: var(--text-muted);
  font-size: .92rem;
  margin-top: .2rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-block {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

/* Knop krijgt extra lucht; de gap regelt de rest */
.contact-block .btn--primary {
  margin-top: 1.4rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: .85rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ============================================
   FADE-IN ANIMATION (scroll-triggered via JS)
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__title {
    animation: none;
  }
  .glow-pulse,
  .glow-pulse--green,
  .glow-pulse--red {
    animation: none;
  }
  .skill-tree--animate .skill-tree__top,
  .skill-tree--animate .skill-tree__connector,
  .skill-tree--animate .skill-box--green,
  .skill-tree--animate .skill-box--red {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
