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

:root {
  --bg: #0a0a0b;
  --bg-alt: #111113;
  --bg-card: #18181b;
  --bg-card-hover: #1f1f23;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #8b8b95;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --border: #27272a;
  --border-hover: #3f3f46;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

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

ul,
ol {
  list-style: none
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px
}

.accent {
  color: var(--accent)
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s
}

.skip-link:focus {
  top: 12px
}

@media(min-width:768px) {
  .container {
    padding: 0 24px
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent
}

.nav--scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media(min-width:768px) {
  .nav {
    padding: 16px 0
  }

  .nav--scrolled {
    padding: 12px 0
  }

  .nav__container {
    padding: 0 24px
  }
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em
}

@media(min-width:768px) {
  .nav__logo {
    font-size: 1.5rem
  }
}

.nav__menu li {
  list-style: none
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  flex-direction: column;
  padding: 80px 32px;
  gap: 24px;
  display: flex;
  transition: var(--transition);
  z-index: 999
}

.nav__menu--open {
  right: 0
}

@media(min-width:768px) {
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    flex-direction: row;
    padding: 0;
    gap: 32px
  }
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative
}

@media(min-width:768px) {
  .nav__link {
    font-size: 0.875rem
  }
}

.nav__link:hover,
.nav__link--active {
  color: var(--text)
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition)
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px
}

@media(min-width:768px) {
  .nav__actions {
    gap: 16px
  }
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: var(--transition)
}

@media(min-width:768px) {
  .lang-toggle {
    padding: 4px 10px;
    font-size: 0.75rem
  }
}

.lang-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text)
}

.lang-toggle__option--active {
  color: var(--accent)
}

.lang-toggle__separator {
  color: var(--text-muted)
}

.nav__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1000
}

@media(min-width:768px) {
  .nav__mobile-toggle {
    display: none
  }
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 1px
}

.nav__mobile-toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.nav__mobile-toggle--active span:nth-child(2) {
  opacity: 0
}

.nav__mobile-toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 16px 48px;
  position: relative
}

@media(min-width:768px) {
  .hero {
    min-height: 100vh;
    padding: 120px 24px 80px
  }
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center
}

@media(min-width:768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 64px
  }
}

.hero__visual {
  order: -1
}

@media(min-width:768px) {
  .hero__visual {
    order: 0
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4ade80;
  margin-bottom: 16px
}

@media(min-width:768px) {
  .hero__badge {
    padding: 6px 16px;
    font-size: 0.8rem;
    margin-bottom: 20px
  }
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4)
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
  }
}

.hero__greeting {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.02em
}

@media(min-width:768px) {
  .hero__greeting {
    font-size: 1rem;
    margin-bottom: 12px
  }
}

.hero__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px
}

@media(min-width:768px) {
  .hero__name {
    font-size: clamp(2.5rem, 6vw, 4rem)
  }
}

.hero__title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 16px
}

@media(min-width:768px) {
  .hero__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 24px
  }
}

.hero__description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 24px
}

@media(min-width:768px) {
  .hero__description {
    font-size: 1.05rem;
    margin-bottom: 32px
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px
}

@media(min-width:480px) {
  .hero__actions {
    flex-direction: row;
    gap: 12px
  }
}

.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3)
}

@media(min-width:768px) {
  .hero__card {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3)
  }
}

.hero__card-header {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border)
}

@media(min-width:768px) {
  .hero__card-header {
    padding: 12px 16px
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.dot--red {
  background: #ef4444
}

.dot--yellow {
  background: #eab308
}

.dot--green {
  background: #22c55e
}

.hero__code {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  overflow-x: auto
}

@media(min-width:768px) {
  .hero__code {
    padding: 20px;
    font-size: 0.85rem;
    line-height: 1.8
  }
}

.hero__code code {
  font-family: inherit
}

.code-keyword {
  color: #c084fc
}

.code-var {
  color: #60a5fa
}

.code-key {
  color: #34d399
}

.code-string {
  color: #fbbf24
}

.code-bool {
  color: #f87171
}

.hero__scroll {
  display: none
}

@media(min-width:768px) {
  .hero__scroll {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%)
  }
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center
}

@media(min-width:768px) {
  .btn {
    padding: 12px 28px;
    font-size: 0.875rem
  }
}

.btn--primary {
  background: var(--accent);
  color: white
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow)
}

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

.btn--outline:hover {
  border-color: var(--text-secondary);
  transform: translateY(-2px)
}

.section {
  padding: 56px 0
}

@media(min-width:768px) {
  .section {
    padding: 100px 0
  }
}

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

.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px
}

@media(min-width:768px) {
  .section__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 56px
  }
}

.section__title::before {
  content: '// ';
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 400
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start
}

@media(min-width:768px) {
  .about {
    grid-template-columns: 280px 1fr;
    gap: 64px
  }
}

.about__image {
  position: relative;
  max-width: 200px;
  margin: 0 auto
}

@media(min-width:768px) {
  .about__image {
    max-width: none;
    margin: 0
  }
}

.about__image img {
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--border)
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3
}

.about__text {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.7
}

@media(min-width:768px) {
  .about__text {
    font-size: 1rem
  }
}

.about__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius)
}

@media(min-width:480px) {
  .about__details {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:768px) {
  .about__details {
    margin: 32px 0;
    padding: 24px
  }
}

.about__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px
}

.about__detail-value {
  font-size: 0.9rem;
  color: var(--text)
}

.about__tech-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tech-tag {
  padding: 5px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition)
}

@media(min-width:768px) {
  .tech-tag {
    padding: 6px 14px;
    font-size: 0.8rem
  }
}

.tech-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow)
}

.tech-tag--sm {
  padding: 3px 10px;
  font-size: 0.7rem
}

.timeline {
  position: relative;
  padding-left: 24px
}

@media(min-width:768px) {
  .timeline {
    padding-left: 32px
  }
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border)
}

.timeline__item {
  position: relative;
  padding-bottom: 32px
}

@media(min-width:768px) {
  .timeline__item {
    padding-bottom: 48px
  }
}

.timeline__item:last-child {
  padding-bottom: 0
}

.timeline__marker {
  position: absolute;
  left: -29px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent)
}

@media(min-width:768px) {
  .timeline__marker {
    left: -37px;
    width: 11px;
    height: 11px
  }
}

.timeline__item:first-child .timeline__marker {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow)
}

.timeline__content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition)
}

@media(min-width:768px) {
  .timeline__content {
    padding: 24px
  }
}

.timeline__content:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover)
}

.timeline__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px
}

@media(min-width:768px) {
  .timeline__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px
  }
}

.timeline__title {
  font-size: 0.95rem;
  font-weight: 600
}

@media(min-width:768px) {
  .timeline__title {
    font-size: 1.05rem
  }
}

.timeline__company {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 2px
}

@media(min-width:768px) {
  .timeline__company {
    font-size: 0.9rem
  }
}

.timeline__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 3px 8px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 20px;
  font-weight: 500;
  align-self: flex-start
}

@media(min-width:768px) {
  .timeline__date {
    font-size: 0.8rem;
    padding: 4px 10px
  }
}

.timeline__list {
  margin-bottom: 12px
}

@media(min-width:768px) {
  .timeline__list {
    margin-bottom: 16px
  }
}

.timeline__list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 6px;
  line-height: 1.5
}

@media(min-width:768px) {
  .timeline__list li {
    font-size: 0.9rem;
    margin-bottom: 8px
  }
}

.timeline__list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent)
}

.timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px
}

@media(min-width:768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px
  }
}

@media(min-width:1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3)
}

.project-card--featured:first-child,
.project-card--featured:nth-child(2) {
  grid-column: auto
}

@media(min-width:1024px) {
  .project-card--featured:first-child {
    grid-column: 1/3
  }

  .project-card--featured:nth-child(2) {
    grid-column: 3
  }
}

.project-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

@media(min-width:768px) {
  .project-card__badge {
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    font-size: 0.7rem
  }
}

.project-card__content {
  padding: 20px
}

@media(min-width:768px) {
  .project-card__content {
    padding: 28px
  }
}

.project-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px
}

@media(min-width:768px) {
  .project-card__title {
    font-size: 1.35rem;
    margin-bottom: 12px
  }
}

.project-card__description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px
}

@media(min-width:768px) {
  .project-card__description {
    font-size: 0.9rem;
    margin-bottom: 20px
  }
}

.project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px
}

@media(min-width:768px) {
  .project-card__tech {
    margin-bottom: 20px
  }
}

.project-card__links {
  display: flex;
  gap: 16px
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: var(--transition)
}

.project-card__link:hover {
  color: var(--accent-hover);
  gap: 8px
}

.legacy {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden
}

.legacy__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-card);
  border: none;
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition)
}

@media(min-width:768px) {
  .legacy__toggle {
    padding: 16px 24px;
    font-size: 0.9rem
  }
}

.legacy__toggle:hover {
  background: var(--bg-card-hover);
  color: var(--text)
}

.legacy__arrow {
  transition: var(--transition)
}

.legacy__toggle--active .legacy__arrow {
  transform: rotate(180deg)
}

.legacy__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.legacy__content--open {
  max-height: 600px
}

.legacy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border)
}

@media(min-width:480px) {
  .legacy__grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.legacy__item {
  padding: 16px;
  background: var(--bg-card)
}

@media(min-width:768px) {
  .legacy__item {
    padding: 20px
  }
}

.legacy__item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px
}

.legacy__item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px
}

.legacy__date {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono)
}

.contact {
  text-align: center;
  max-width: 560px;
  margin: 0 auto
}

.contact__text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7
}

@media(min-width:768px) {
  .contact__text {
    font-size: 1.1rem;
    margin-bottom: 32px
  }
}

.contact__email {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 2px solid var(--accent);
  transition: var(--transition);
  margin-bottom: 32px;
  word-break: break-all
}

@media(min-width:480px) {
  .contact__email {
    font-size: 1.25rem;
    word-break: normal
  }
}

@media(min-width:768px) {
  .contact__email {
    font-size: 1.5rem;
    padding: 12px 0;
    margin-bottom: 40px
  }
}

.contact__email:hover {
  color: var(--accent)
}

.contact__links {
  display: flex;
  justify-content: center;
  gap: 16px
}

@media(min-width:768px) {
  .contact__links {
    gap: 20px
  }
}

.contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition)
}

@media(min-width:768px) {
  .contact__social {
    width: 48px;
    height: 48px
  }
}

.contact__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px)
}

.footer {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center
}

@media(min-width:768px) {
  .footer {
    padding: 24px 0
  }
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted)
}

@media(min-width:768px) {
  .footer p {
    font-size: 0.8rem
  }
}

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

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

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

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

@media(prefers-reduced-motion:reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none
  }

  .hero__badge-dot,
  .hero__scroll-line {
    animation: none
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important
  }
}
