:root {
  --bg0: #05070f;
  --bg1: #070a16;
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .08);
  --stroke: rgba(255, 255, 255, .10);
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, .72);
  --muted2: rgba(234, 240, 255, .55);
  --brand: #00e5ff;
  --brand2: #a78bfa;
  --warn: #f59e0b;
  --shadow: 0 24px 80px rgba(0, 0, 0, .55);
  --r: 18px;
  --container: 1120px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(0, 229, 255, .12), transparent 55%),
    radial-gradient(1200px 900px at 95% 10%, rgba(167, 139, 250, .14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none
}

strong {
  font-weight: 700
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(0, 229, 255, .95)
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 12px;
  background: #0b1024;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  z-index: 1000;
}

.skip:focus {
  left: 12px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 84px 0;
  scroll-margin-top: 90px
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none
}

#particles {
  width: 100%;
  height: 100%;
  display: block
}

.bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 480px at 50% 25%, rgba(0, 229, 255, .08), transparent 60%), radial-gradient(900px 560px at 50% 70%, rgba(167, 139, 250, .08), transparent 65%)
}

.bg-grid {
  position: absolute;
  inset: -2px;
  opacity: .14;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 60% at 50% 35%, #000 45%, transparent 75%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 15, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

@keyframes logoFlip {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.brand__logo {
  width: 68px;
  height: 64px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  animation: logoFlip 7s infinite;
}

.brand__text {
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(234, 240, 255, .92)
}

.brand--footer .brand__mark {
  box-shadow: none
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .04);
  color: inherit;
  cursor: pointer
}

.nav__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(234, 240, 255, .84);
  border-radius: 999px;
  position: relative
}

.nav__bar+.nav__bar {
  margin-top: 4px
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav__link {
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding: 10px 4px;
  transition: color .25s var(--ease)
}

.nav__link:hover {
  color: rgba(234, 240, 255, .94)
}

.nav__link.is-active {
  color: rgba(234, 240, 255, .96)
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2))
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .92);
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease)
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16)
}

.btn:active {
  transform: translateY(0)
}

.btn--primary {
  background: linear-gradient(135deg, rgba(0, 229, 255, .32), rgba(167, 139, 250, .30));
  border-color: rgba(0, 229, 255, .32);
  box-shadow: 0 10px 26px rgba(0, 229, 255, .10), 0 10px 26px rgba(167, 139, 250, .08)
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(0, 229, 255, .40), rgba(167, 139, 250, .38));
  border-color: rgba(0, 229, 255, .42)
}

.btn--ghost {
  background: rgba(255, 255, 255, .03)
}

.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px
}

.hero {
  padding-top: 64px
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: stretch
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px
}

.hero__title {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em
}

.hero__accent {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7
}

.hero__typing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  white-space: nowrap
}

.caret {
  width: 10px;
  height: 18px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  border-radius: 3px;
  display: inline-block;
  opacity: .85;
  animation: blink 1s steps(1, end) infinite
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px
}

.stat {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04)
}

.stat__num {
  font-weight: 800;
  letter-spacing: -.02em
}

.stat__label {
  margin-top: 6px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.3
}

.hero__card {
  display: flex
}

.card {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 229, 255, .18), rgba(167, 139, 250, .20));
  border: 1px solid rgba(0, 229, 255, .22)
}

.card__title {
  font-weight: 800;
  letter-spacing: -.01em
}

.card__subtitle {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 3px
}

.card__body {
  padding: 18px 18px
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px
}

.chip {
  font-size: 12px;
  font-weight: 700;
  color: rgba(234, 240, 255, .86);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04)
}

.card__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 16px
}

.line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  line-height: 1.4
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(0, 229, 255, .08)
}

.card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.card__hint {
  margin: 14px 0 0;
  color: var(--muted2);
  font-size: 12px
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.02em
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.7
}

.h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.01em
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.about__panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 18px;
}

.about__panel--wide {
  grid-column: 1/-1
}

.about__panel p {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.7
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px
}

.kpi {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 12px
}

.kpi__label {
  color: var(--muted2);
  font-size: 12px
}

.kpi__value {
  margin-top: 6px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.service {
  display: flex;
  gap: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 12px
}

.service__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 229, 255, .16), rgba(167, 139, 250, .16));
  border: 1px solid rgba(255, 255, 255, .10)
}

.service__title {
  font-weight: 800
}

.service__desc {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.3
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease)
}

.filter:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .18)
}

.filter.is-active {
  background: linear-gradient(135deg, rgba(0, 229, 255, .16), rgba(167, 139, 250, .18));
  color: rgba(234, 240, 255, .92);
  border-color: rgba(0, 229, 255, .25)
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px
}

.project {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  position: relative;
  overflow: hidden;
}

.project__preview {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  margin-bottom: 12px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease)
}

.project__preview:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .30)
}

.project__preview img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02)
}

.project__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .30));
  pointer-events: none
}

.project::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(360px 180px at 20% 0%, rgba(0, 229, 255, .12), transparent 60%), radial-gradient(360px 180px at 85% 0%, rgba(167, 139, 250, .12), transparent 60%);
  opacity: 0;
  transition: opacity .25s var(--ease)
}

.project:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05)
}

.project:hover::before {
  opacity: 1
}

.project__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px
}

.project__title {
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 0
}

.project__tag {
  font-size: 12px;
  color: rgba(234, 240, 255, .86);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .12);
  padding: 6px 10px;
  border-radius: 999px
}

.project__desc {
  position: relative;
  margin: 10px 0 12px;
  color: var(--muted);
  line-height: 1.65
}

.project__stack {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px
}

.project__links {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.skills__panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 18px
}

.skills__subhead {
  margin-top: 18px;
  color: var(--muted2);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .88);
  font-weight: 800;
  font-size: 11px;
  line-height: 1
}

.badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, rgba(0, 229, 255, .12), rgba(167, 139, 250, .12))
}

.badge__icon img,
.badge__icon svg,
.badge__icon iconify-icon {
  width: 40px;
  height: 40px;
  display: block
}

#langToggle {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

#langToggle img {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: block
}

.skill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03)
}

.skill+.skill {
  margin-top: 10px
}

.skill__name {
  font-weight: 800
}

.skill__bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden
}

.skill__fill {
  height: 100%;
  width: 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2))
}

.skill__level {
  font-size: 12px;
  color: var(--muted2);
  min-width: 44px;
  text-align: right
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55
}

.check__mark {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  margin-top: 2px;
  background: linear-gradient(135deg, rgba(0, 229, 255, .16), rgba(167, 139, 250, .16));
  border: 1px solid rgba(255, 255, 255, .12);
  position: relative
}

.check__mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(234, 240, 255, .92);
  border-bottom: 2px solid rgba(234, 240, 255, .92);
  transform: rotate(-45deg)
}

.note {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, .22);
  background: linear-gradient(135deg, rgba(0, 229, 255, .08), rgba(167, 139, 250, .06));
  padding: 14px
}

.note__title {
  font-weight: 900
}

.note__body {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px
}

.tl {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 16px;
}

.tl__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.tl__title {
  font-weight: 900;
  margin: 0
}

.tl__meta {
  color: var(--muted2);
  font-size: 13px
}

.tl__body {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.contact__panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 18px
}

.wa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px
}

.btn--wa {
  border-color: rgba(34, 197, 94, .18)
}

.btn--wa:hover {
  border-color: rgba(34, 197, 94, .28)
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field__label {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 700
}

.field__input {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
  color: rgba(234, 240, 255, .94);
  outline: none;
  transition: border-color .2s var(--ease), transform .2s var(--ease)
}

.field__input:focus {
  border-color: rgba(0, 229, 255, .30);
  transform: translateY(-1px)
}

.form__hint {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.35
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.link {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .90);
  font-weight: 800;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease)
}

.link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05)
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 14px 0
}

.cta-box {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: radial-gradient(480px 240px at 15% 0%, rgba(0, 229, 255, .10), transparent 65%), rgba(255, 255, 255, .03);
  padding: 14px
}

.cta-box__title {
  font-weight: 900
}

.cta-box__body {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(5, 7, 15, .35)
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.footer__small {
  color: var(--muted2);
  font-size: 12px;
  margin-top: 8px
}

.footer__right {
  display: flex;
  gap: 14px
}

.footer__link {
  color: var(--muted);
  font-weight: 700
}

.footer__link:hover {
  color: rgba(234, 240, 255, .92)
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(5, 7, 15, .72);
  backdrop-filter: blur(12px);
  color: rgba(234, 240, 255, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 80
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px)
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px)
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease)
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  .caret {
    animation: none
  }

  .btn,
  .project,
  .filter,
  .link,
  .field__input {
    transition: none
  }

  .reveal,
  .reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none
  }
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .about {
    grid-template-columns: 1fr
  }

  .skills {
    grid-template-columns: 1fr
  }

  .contact {
    grid-template-columns: 1fr
  }

  .kpis {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .section {
    padding: 70px 0
  }

  .section {
    scroll-margin-top: 90px
  }

  .hero {
    padding-top: 40px
  }

  .hero__meta {
    grid-template-columns: 1fr
  }

  .nav__toggle {
    display: flex
  }

  .nav__panel {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(5, 7, 15, .82);
    backdrop-filter: blur(14px);
  }

  .nav__panel.is-open {
    display: flex
  }

  .nav__link {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08)
  }
}

.preview {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  max-width: min(980px, calc(100vw - 24px));
  width: 100%
}

.preview::backdrop {
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(6px)
}

.preview__panel {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(7, 10, 20, .94);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .55);
  overflow: hidden
}

.preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.preview__title {
  font-weight: 900;
  letter-spacing: -.01em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.preview__close {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .92);
  font-weight: 800;
  cursor: pointer
}

.preview__close:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06)
}

.preview__stage {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 12px 12px
}

.preview__image {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: contain;
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px
}

.preview__nav {
  height: 44px;
  width: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .92);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  cursor: pointer
}

.preview__nav:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06)
}

.preview__nav:disabled {
  opacity: .45;
  cursor: not-allowed
}

.preview__thumbs {
  display: flex;
  gap: 10px;
  padding: 0 12px 14px;
  overflow-x: auto
}

.preview__thumb {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  border-radius: 12px;
  padding: 0;
  width: 88px;
  height: 58px;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto
}

.preview__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

.preview__thumb.is-active {
  border-color: rgba(0, 229, 255, .35);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, .08)
}

@media (max-width: 760px) {
  .preview__stage {
    grid-template-columns: 38px 1fr 38px
  }

  .preview__nav {
    width: 38px;
    height: 38px;
    border-radius: 12px
  }

  .preview__image {
    height: min(60vh, 420px)
  }
}