/*
    Paleta de cores base:
    Cor principal: #FF981E
    Cor base: #333
    Cor de fundo: #FBF9F5
*/
@import url("https://fonts.googleapis.com/css2?family=Brygada+1918:wght@400;500;700&family=Inter:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #333;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #FBF9F5;
  color: #333;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background: radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px), radial-gradient(circle at 72% 14%, rgba(255, 236, 207, 0.62) 0 1px, transparent 1.7px), radial-gradient(circle at 38% 68%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.6px), radial-gradient(circle at 82% 76%, rgba(255, 169, 67, 0.12), transparent 30%), radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.62), transparent 24%), linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(251, 249, 245, 0) 48%, rgba(255, 242, 224, 0.26));
  background-size: 230px 230px, 310px 310px, 190px 190px, 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.78;
}

body::after {
  z-index: 2;
  background: radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.4px), radial-gradient(circle at 58% 42%, rgba(255, 222, 178, 0.38) 0 1px, transparent 1.5px), radial-gradient(circle at 78% 64%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.4px);
  background-size: 420px 420px, 360px 360px, 520px 520px;
  opacity: 0.16;
  mix-blend-mode: screen;
}

main,
footer {
  position: relative;
  z-index: 1;
}

@keyframes galaxyDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-18px, 14px, 0);
  }
}
.width-default-center {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-area {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.base-title {
  font-size: 16px;
  color: #FF981E;
  font-weight: 500;
}
.base-title.black {
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: #fff;
  padding: 50px 16px;
}
header ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
header ul a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
header ul a:hover:not(.button) {
  opacity: 0.7;
}

.button {
  background-color: #FF981E;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.button:hover {
  background-color: rgb(234, 126.88, 0);
}
.button.secundary {
  background-color: transparent;
  border: 2px solid #333;
  color: #333;
}
.button.secundary span {
  color: #FF981E;
}
.button.secundary:hover {
  background-color: #333;
  color: #fff;
}
.button.tertiary {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border: none;
  text-decoration: none;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 0;
  border-radius: 0;
  isolation: isolate;
  transition: color 0.28s ease;
}
.button.tertiary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: -1;
  background: linear-gradient(90deg, #FF981E 0%, #FFD49B 48%, #FF981E 100%);
  transition: height 0.32s ease, border-radius 0.32s ease, opacity 0.32s ease;
}
.button.tertiary:hover {
  color: #333;
}
.button.tertiary:hover::after {
  height: 100%;
  border-radius: 10px;
  opacity: 0.28;
}
.button.big {
  padding: 15px 30px;
  font-size: 1.2em;
}
.button.small {
  padding: 5px 10px;
  font-size: 0.8em;
}

#hero {
  min-height: 80vh;
  min-height: 80dvh;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 16px 96px;
  border-radius: 40px;
}
#hero .text-area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 60%;
  max-width: 700px;
}
#hero .text-area h1 {
  font-size: 64px;
  margin-bottom: 20px;
  font-family: "Brygada 1918", serif;
  font-weight: 500;
}
#hero .text-area h1 span {
  font-family: "Brygada 1918", serif;
  color: #FF981E;
}
#hero .text-area p {
  font-size: 20px;
  max-width: 520px;
}
#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  box-shadow: inset 0px 0px 10px 30px #FBF9F5;
  border-radius: 40px;
  pointer-events: none;
}
#hero .scroll-indicator {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 10;
}
#hero .scroll-indicator span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #555;
  font-weight: 400;
  font-family: Arial, sans-serif;
}
#hero .scroll-indicator .scroll-line {
  width: 2px;
  height: 92px;
  background: linear-gradient(to bottom, transparent 0%, #f5a032 35%, #f5a032 65%, transparent 100%);
  animation: lineFade 1.8s ease-in-out infinite forwards;
}
@keyframes lineFade {
  0% {
    opacity: 0.2;
    transform: scaleY(0.75);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0.2;
    transform: scaleY(0.75);
    transform-origin: bottom;
  }
}

@media (max-width: 720px) {
  #hero {
    min-height: 680px;
    align-items: flex-end;
    padding: 130px 16px 104px;
    border-radius: 28px;
  }
  #hero .text-area {
    width: 100%;
    max-width: 520px;
    gap: 34px;
  }
  #hero .text-area h1 {
    font-size: 44px;
    margin-bottom: 0;
  }
  #hero .text-area p {
    font-size: 18px;
    max-width: 430px;
  }
  #hero video, #hero::after {
    border-radius: 28px;
  }
  #hero video {
    -o-object-position: 64% center;
       object-position: 64% center;
  }
  #hero .scroll-indicator {
    right: 18px;
    bottom: 18px;
  }
}
@media (max-width: 480px) {
  #hero {
    min-height: 650px;
    padding: 112px 16px 92px;
  }
  #hero .text-area {
    gap: 28px;
  }
  #hero .text-area h1 {
    font-size: 38px;
  }
  #hero .text-area p {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  #hero {
    min-height: 620px;
  }
  #hero .text-area h1 {
    font-size: 34px;
  }
}
#prove {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
}
#prove h2 {
  font-size: 14px;
  font-weight: 600;
  color: #A7A7A7;
}
#prove .prove-logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  filter: grayscale(100%);
  opacity: 0.4;
  max-width: 70%;
}
#prove .prove-logos img {
  max-height: 40px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#about {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}
#about .about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
#about .about-cards .card {
  padding: 32px 24px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
}
#about .about-cards .card img {
  width: 52px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 32px;
}
#about .about-cards .card .card-text h3 {
  font-size: 14px;
  margin-bottom: 16px;
}
#about .about-cards .card .card-text p {
  font-size: 14px;
}

#experience {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 16px;
}
#experience .text-area {
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 45%;
  max-width: 470px;
}
#experience .text-area .base-title {
  font-size: 12px;
}
#experience .text-area h1 {
  font-size: 52px;
  font-family: "Brygada 1918", serif;
  font-weight: 700;
  max-width: 400px;
}
#experience .text-area h1 span {
  font-family: "Brygada 1918", serif;
  color: #FF981E;
}
#experience .text-area p {
  font-size: 20px;
  max-width: 520px;
}
#experience .image-area {
  width: 70%;
}
#experience .image-area img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 560px) {
  #experience {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  #experience .text-area {
    width: 100%;
    max-width: none;
    gap: 32px;
    padding: 0 16px;
  }
  #experience .text-area h1 {
    font-size: 36px;
    max-width: none;
  }
  #experience .text-area p {
    font-size: 18px;
    max-width: none;
  }
  #experience .image-area {
    width: 100%;
  }
}
#numbers {
  padding: 0 16px;
}
#numbers .cards-number {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 20px;
  border: 2px solid #E0E0E0;
}
#numbers .cards-number .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
  position: relative;
}
#numbers .cards-number .card img {
  width: 52px;
  height: 52px;
  -o-object-fit: cover;
     object-fit: cover;
}
#numbers .cards-number .card .text-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#numbers .cards-number .card .text-area .number {
  font-size: 32px;
  color: #FF981E;
  font-size: 38px;
  font-weight: 400;
}
#numbers .cards-number .card .text-area h2 {
  font-size: 16px;
  margin-bottom: 16px;
}
#numbers .cards-number .card .text-area p {
  font-size: 14px;
}
#numbers .cards-number .card:not(:last-child)::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 32px);
  background-color: #E0E0E0;
  margin-top: 20px;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 720px) {
  #numbers .cards-number {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #numbers .cards-number .card {
    padding: 28px 18px;
    align-items: flex-start;
  }
  #numbers .cards-number .card:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 520px) {
  #numbers .cards-number {
    grid-template-columns: 1fr;
  }
  #numbers .cards-number .card {
    padding: 28px 22px;
    border-bottom: 1px solid #E0E0E0;
  }
  #numbers .cards-number .card:last-child {
    border-bottom: 0;
  }
}
#projects {
  padding: 0 16px;
}
#projects .base-title {
  margin-bottom: 24px;
}
#projects .projects-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
#projects .projects-cards .card {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  gap: 12px;
  border-radius: 20px;
  padding: 16px;
  padding-right: 0;
  background-color: #F3EEEA;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}
#projects .projects-cards .card .left-side {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
#projects .projects-cards .card .left-side .tag {
  font-size: 12px;
  font-weight: 700;
  color: #FF981E;
  padding: 4px 12px;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
}
#projects .projects-cards .card .left-side .text-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
#projects .projects-cards .card .left-side .text-area h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Brygada 1918", serif;
}
#projects .projects-cards .card .left-side .text-area p {
  font-size: 12px;
  width: 80%;
  opacity: 0.8;
}
#projects .projects-cards .card .left-side .button-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: white;
  transform: rotate(-45deg);
  font-weight: 700;
  transition: background-color 0.28s ease, color 0.28s ease;
}
#projects .projects-cards .card img {
  width: 50%;
  max-width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  height: auto;
  transition: filter 0.28s ease;
}
#projects .projects-cards .card:hover {
  border-color: rgba(255, 152, 30, 0.32);
  background-color: #F8F3EF;
  box-shadow: 0 16px 42px rgba(51, 51, 51, 0.08);
}
#projects .projects-cards .card:hover .button-arrow {
  background-color: #fff9f1;
  color: #FF981E;
}
#projects .projects-cards .card:hover img {
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 720px) {
  #projects .projects-cards {
    grid-template-columns: 1fr;
  }
  #projects .projects-cards .card {
    min-height: 260px;
  }
}
@media (max-width: 520px) {
  #projects .projects-cards .card {
    flex-direction: column;
    gap: 20px;
    padding: 18px;
  }
  #projects .projects-cards .card .left-side {
    width: 100%;
    min-height: 150px;
  }
  #projects .projects-cards .card .left-side .text-area p {
    width: 100%;
  }
  #projects .projects-cards .card img {
    width: 100%;
    max-height: 220px;
    border-radius: 14px;
    -o-object-position: center;
       object-position: center;
  }
}
#process {
  display: flex;
  gap: 40px;
  padding: 0 16px;
}
#process .left-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
}
#process .left-area .text-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#process .left-area .text-area h1 {
  font-size: 32px;
  font-family: "Brygada 1918", serif;
  font-weight: 700;
  max-width: 400px;
}
#process .left-area .text-area h1 span {
  font-family: "Brygada 1918", serif;
  color: #FF981E;
}
#process .left-area img {
  margin-top: 32px;
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  opacity: 0.68;
}
#process .process {
  width: 100%;
}
#process .process__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#process .process__list::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 24px;
  width: 2px;
  background: #ece4dd;
  transform: translateX(-50%);
}
#process .process__item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 40px;
  align-items: flex-start;
}
#process .process__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 152, 30, 0.65);
  border-radius: 50%;
  background: rgba(255, 152, 30, 0.12);
}
#process .process__icon img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#process .process__content {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding-top: 4px;
}
#process .process__number {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #FF981E;
}
#process .process h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4b4b4b;
}
#process .process p {
  max-width: 360px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: #8d8d8d;
}
@media (max-width: 520px) {
  #process .process__list {
    gap: 30px;
  }
  #process .process__item {
    grid-template-columns: 44px 1fr;
    gap: 24px;
  }
  #process .process__icon {
    width: 44px;
    height: 44px;
  }
  #process .process__icon img {
    width: 52px;
    height: 52px;
  }
  #process .process__list::before {
    left: 22px;
  }
  #process .process__content {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 0;
  }
  #process .process__number {
    font-size: 14px;
  }
  #process .process h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #process .process p {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  #process {
    flex-direction: column;
    gap: 24px;
  }
  #process .left-area {
    width: 100%;
  }
  #process .left-area img {
    max-width: 100%;
  }
}
#contact {
  border-radius: 12px;
  background-color: #F8F3EF;
  background-image: url("../assets/contact-bg.webp");
  background-position: right;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-columns: 40% 30% 20%;
  gap: 40px;
  justify-content: space-between;
  padding: 40px 32px;
  margin-bottom: 120px;
  align-items: center;
}
#contact .text-area h1 {
  font-size: 32px;
  font-family: "Brygada 1918", serif;
  font-weight: 700;
  margin-bottom: 16px;
}
#contact .text-area h1 span {
  font-family: "Brygada 1918", serif;
  color: #FF981E;
}
#contact .text-area p {
  font-size: 14px;
  color: #8d8d8d;
  max-width: 324px;
}

@media (max-width: 750px) {
  #contact {
    grid-template-columns: 60% 1fr;
  }
}
@media (max-width: 520px) {
  #contact {
    flex-direction: column;
    display: flex;
    margin: 0 16px 92px;
    background-position: bottom;
    background-size: cover;
  }
}
.footer {
  background: #f7f5f2;
  border-radius: 24px;
  padding: 56px 0 28px;
  overflow: hidden;
}
.footer__container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__brand {
  max-width: 290px;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 28px;
}
.footer__logo svg {
  display: block;
  width: 103px;
  height: auto;
}
.footer__description {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.75;
  color: #8e8b87;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8d8a86;
  transition: 0.25s ease;
}
.footer__social a:hover {
  color: #f6a24b;
  transform: translateY(-2px);
}
.footer__social a svg {
  width: 21px;
  height: 21px;
}
.footer__column h4 {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #66625d;
}
.footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__column li {
  margin: 0;
}
.footer__column a {
  color: #8e8b87;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: 0.25s ease;
}
.footer__column a:hover {
  color: #3a3a3a;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a7a29d;
}
.footer__icon svg {
  width: 17px;
  height: 17px;
  display: block;
  flex-shrink: 0;
}
.footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #e6e1db;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__bottom p {
  margin: 0;
  font-size: 14px;
  color: #9a9691;
}
.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.footer__bottom-links a {
  font-size: 14px;
  color: #8f8b86;
  text-decoration: none;
  transition: 0.25s ease;
}
.footer__bottom-links a:hover {
  color: #3a3a3a;
}

@media (max-width: 991px) {
  .footer {
    padding: 44px 0 24px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer__brand {
    max-width: 100%;
    grid-column: 1/-1;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .footer {
    border-radius: 18px;
    padding: 36px 0 22px;
  }
  .footer__container {
    padding: 0 20px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__description {
    font-size: 15px;
    line-height: 1.7;
  }
  .footer__column h4 {
    margin-bottom: 16px;
  }
  .footer__column a {
    font-size: 15px;
  }
  .footer__social {
    gap: 16px;
  }
  .footer__bottom-links {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
html {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
}

::-moz-selection {
  background: rgba(255, 152, 30, 0.22);
}

::selection {
  background: rgba(255, 152, 30, 0.22);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 152, 30, 0.5);
  outline-offset: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 80;
  transition: padding 0.35s ease;
}
header::before {
  content: "";
  position: absolute;
  inset: 10px 8px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(251, 249, 245, 0.94);
  box-shadow: 0 14px 36px rgba(51, 51, 51, 0.07);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
}
header.is-scrolled::before {
  opacity: 1;
  transform: scale(1);
}
header nav a {
  position: relative;
}
header nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #FF981E;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
header nav a:not(.button):hover::after, header nav a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
header nav a.is-active {
  color: #FF981E;
}

.menu-toggle {
  display: none;
}

.button {
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.button:hover::before {
  transform: translateX(120%);
}
.button span {
  display: inline-block;
}

#hero {
  isolation: isolate;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(251, 249, 245, 0.88) 0%, rgba(251, 249, 245, 0.42) 48%, rgba(251, 249, 245, 0.04) 100%);
}
#hero video {
  z-index: -2;
}
#hero .scroll-indicator {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

#about .about-cards .card,
#numbers .cards-number .card,
#projects .projects-cards .card {
  position: relative;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

#about .about-cards .card {
  background: rgba(255, 255, 255, 0.22);
}
#about .about-cards .card:hover {
  border-color: rgba(255, 152, 30, 0.42);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(51, 51, 51, 0.07);
  transform: translateY(-4px);
}

#numbers .cards-number .card {
  background: rgba(255, 255, 255, 0.24);
}
#numbers .cards-number .card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: #FF981E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
#numbers .cards-number .card:hover {
  border-color: rgba(255, 152, 30, 0.4);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 55px rgba(51, 51, 51, 0.08);
}
#numbers .cards-number .card:hover::before {
  transform: scaleX(1);
}

#numbers .number {
  font-variant-numeric: tabular-nums;
}

#projects .projects-cards .card {
  box-shadow: 0 12px 34px rgba(51, 51, 51, 0.05);
}

#process .process__list {
  --process-progress: 0%;
}
#process .process__list::before {
  background: linear-gradient(to bottom, #FF981E 0 var(--process-progress), #ece4dd var(--process-progress) 100%);
}

#process .process__item {
  opacity: 0.48;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#process .process__item.is-active {
  opacity: 1;
  transform: translateX(4px);
}
#process .process__item.is-active .process__icon {
  background: #fff;
  border-color: #FF981E;
  box-shadow: none;
}

#contact {
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(51, 51, 51, 0.08);
}
#contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(248, 243, 239, 0.96), rgba(248, 243, 239, 0.52), rgba(248, 243, 239, 0.08));
}
#contact > * {
  position: relative;
  z-index: 1;
}

.micro-cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 152, 30, 0.12), rgba(255, 232, 205, 0.08) 34%, transparent 68%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.24s ease, width 0.24s ease, height 0.24s ease;
}
.micro-cursor-glow.is-visible {
  opacity: 1;
}
.micro-cursor-glow.is-engaged {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 152, 30, 0.16), rgba(255, 255, 255, 0.12) 36%, transparent 70%);
}

.micro-logo-target {
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.28s ease, filter 0.28s ease;
}
.micro-logo-target:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 16px rgba(255, 152, 30, 0.14));
}

.button,
.button-arrow,
.menu-toggle,
.footer__social a {
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.button span:not(.micro-ripple) {
  position: relative;
  z-index: 2;
}

.micro-ripple {
  position: absolute;
  z-index: 1;
  display: block !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(0);
  animation: microRipple 0.58s ease-out forwards;
}

.button.tertiary .micro-ripple,
.footer__social a .micro-ripple {
  background: rgba(255, 152, 30, 0.24);
}

.micro-spark,
.micro-star {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  background: #FF981E;
  box-shadow: 0 0 16px rgba(255, 152, 30, 0.25);
  transform: translate(-50%, -50%);
  animation: microSpark 0.72s ease-out forwards;
}

.micro-star {
  width: 5px;
  height: 5px;
  background: #fff7ec;
  box-shadow: 0 0 18px rgba(255, 152, 30, 0.38);
}

.micro-firework {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 129;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--spark-color, #FF981E);
  box-shadow: 0 0 10px #fff, 0 0 28px var(--spark-color, rgba(255, 152, 30, 0.8)), 0 0 52px var(--spark-color, rgba(255, 152, 30, 0.8));
  transform: translate(-50%, -50%) scale(0.7);
  animation: microFirework 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.micro-black-hole {
  position: fixed;
  left: 50vw;
  top: 50vh;
  z-index: 134;
  width: min(560px, 86vw);
  height: min(360px, 56vw);
  min-height: 220px;
  border-radius: 50%/46%;
  pointer-events: none;
  overflow: visible;
  background: radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px), radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px), radial-gradient(circle at 76% 78%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.7px), radial-gradient(circle, rgba(255, 152, 30, 0.13), rgba(141, 92, 255, 0.08) 38%, transparent 68%);
  background-size: 96px 96px, 132px 132px, 156px 156px, 100% 100%;
  box-shadow: 0 0 58px rgba(0, 0, 0, 0.62), 0 0 110px rgba(141, 92, 255, 0.32), 0 0 160px rgba(255, 152, 30, 0.28);
  translate: -50% -50%;
  transform: scale(0.08) rotate(0deg);
  transform-origin: center;
  animation: microBlackHole 1.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.micro-black-hole__stars,
.micro-black-hole__halo,
.micro-black-hole__disk,
.micro-black-hole__flare,
.micro-black-hole__core {
  position: absolute;
  pointer-events: none;
}

.micro-black-hole__stars {
  inset: -20%;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.8px), radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.7px), radial-gradient(circle at 84% 58%, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.8px), radial-gradient(circle at 32% 78%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.6px);
  background-size: 120px 120px, 160px 160px, 190px 190px, 140px 140px;
  opacity: 0.68;
  animation: microStarPull 1.2s ease-out forwards;
}

.micro-black-hole__halo {
  left: 50%;
  top: 50%;
  width: 55%;
  height: 82%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, transparent 0 45%, rgba(255, 219, 139, 0.96) 47%, rgba(255, 152, 30, 0.78) 56%, rgba(116, 54, 18, 0.34) 67%, transparent 74%), conic-gradient(from 20deg, rgba(255, 247, 218, 0.95), rgba(255, 152, 30, 0.86), rgba(141, 92, 255, 0.25), rgba(255, 214, 146, 0.95), rgba(255, 120, 31, 0.78), rgba(255, 247, 218, 0.95));
  box-shadow: 0 0 24px rgba(255, 238, 187, 0.78), 0 0 62px rgba(255, 152, 30, 0.58), 0 0 110px rgba(255, 180, 60, 0.32);
  mix-blend-mode: screen;
  animation: microBlackHoleRing 0.85s linear infinite;
}

.micro-black-hole__disk {
  left: 50%;
  top: 50%;
  width: 136%;
  height: 25%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 92, 15, 0.56) 8%, rgba(255, 185, 60, 0.92) 24%, rgb(255, 252, 220) 43%, rgba(255, 244, 190, 0.96) 56%, rgba(255, 145, 34, 0.88) 76%, transparent 100%), radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95), rgba(255, 152, 30, 0.64) 34%, transparent 70%);
  box-shadow: 0 0 26px rgba(255, 250, 220, 0.72), 0 0 70px rgba(255, 152, 30, 0.58), 0 0 110px rgba(255, 92, 15, 0.36);
  filter: blur(0.6px);
  mix-blend-mode: screen;
  animation: microDiskWarp 0.72s ease-in-out infinite alternate;
}

.micro-black-hole__flare {
  left: 53%;
  top: 46%;
  width: 72%;
  height: 34%;
  border-radius: 50%;
  transform: translate(-18%, -40%) rotate(-13deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 188, 76, 0.78) 34%, rgba(255, 101, 19, 0.34) 72%, transparent 100%);
  filter: blur(10px);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.micro-black-hole__core {
  left: 50%;
  top: 50%;
  width: 31%;
  height: 49%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 44%, #000 0 58%, rgba(0, 0, 0, 0.94) 63%, rgba(255, 198, 92, 0.28) 70%, transparent 76%);
  box-shadow: inset 0 0 32px rgb(0, 0, 0), 0 0 0 2px rgba(255, 236, 188, 0.42), 0 0 42px rgba(255, 193, 92, 0.46);
}

body.micro-black-hole-shock > header,
body.micro-black-hole-shock > main,
body.micro-black-hole-shock > footer {
  animation: microBlackHoleShock 0.82s cubic-bezier(0.18, 0.84, 0.31, 1) both;
  transform-origin: center;
  will-change: transform, filter;
}

body.micro-black-hole-shock > main {
  animation-delay: 0.015s;
}

body.micro-black-hole-shock > footer {
  animation-delay: 0.03s;
}

body.micro-black-hole-shock::after {
  opacity: 0.48;
  animation: galaxyDrift 4.8s ease-in-out infinite alternate;
}

.micro-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  max-width: min(320px, 100vw - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  background: rgba(51, 51, 51, 0.9);
  color: #FBF9F5;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(51, 51, 51, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.26s ease, transform 0.26s ease;
  backdrop-filter: blur(16px);
}
.micro-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.micro-constellation::after {
  opacity: 0.28;
  animation: galaxyDrift 10s ease-in-out infinite alternate;
}

body.micro-vupes-mode::after {
  opacity: 0.34;
  animation: galaxyDrift 7s ease-in-out infinite alternate;
}

.micro-label {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 128;
  pointer-events: none;
  padding: 6px 9px;
  border-radius: 10px;
  background: rgba(51, 51, 51, 0.88);
  color: #FBF9F5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
  animation: microLabel 0.85s ease-out forwards;
}

.micro-label--number {
  background: #FF981E;
  color: #333;
}

.micro-label--process {
  background: rgba(255, 255, 255, 0.92);
  color: #FF981E;
  box-shadow: 0 12px 28px rgba(51, 51, 51, 0.12);
}

#about .about-cards .card,
#numbers .cards-number .card,
#projects .projects-cards .card,
#process .process__item {
  isolation: isolate;
  --micro-x: 50%;
  --micro-y: 50%;
}

#numbers .cards-number .card,
#process .process__item {
  cursor: pointer;
}

.micro-card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--micro-x) var(--micro-y), rgba(255, 152, 30, 0.16), rgba(255, 255, 255, 0.08) 24%, transparent 48%);
  transition: opacity 0.24s ease;
}

#about .about-cards .card > :not(.micro-card-glow),
#numbers .cards-number .card > :not(.micro-card-glow),
#projects .projects-cards .card > :not(.micro-card-glow),
#process .process__item > :not(.micro-card-glow) {
  position: relative;
  z-index: 1;
}

#about .about-cards .card.is-micro-active .micro-card-glow,
#numbers .cards-number .card.is-micro-active .micro-card-glow,
#projects .projects-cards .card.is-micro-active .micro-card-glow,
#process .process__item.is-micro-active .micro-card-glow {
  opacity: 1;
}

#process .process__number,
#projects .projects-cards .card .button-arrow {
  transition: color 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

#process .process__item.is-micro-active .process__number {
  color: #FF981E;
}

#process .process__item.is-micro-stamped {
  opacity: 1;
  transform: translateX(7px);
}

#process.has-fox-fireworks {
  animation: processFireworkGlow 1.45s ease-out;
}

#projects .projects-cards .card.is-micro-active .button-arrow {
  transform: rotate(-45deg) translate(3px, -3px);
}

#contact .button.micro-pulse {
  animation: microButtonPulse 1.2s ease-out;
}

.pixel-fox {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 126;
  width: 118px;
  height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  touch-action: none;
  transform: translate3d(var(--fox-x, calc(100vw - 150px)), var(--fox-y, calc(100vh - 138px)), 0);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 18px 18px rgba(51, 51, 51, 0.14));
}
.pixel-fox:focus-visible {
  outline: 3px solid rgba(255, 152, 30, 0.5);
  outline-offset: 4px;
}
.pixel-fox.is-released {
  animation: foxRelease 0.72s steps(5, end);
}
.pixel-fox.is-dragging {
  z-index: 132;
  cursor: grabbing;
}
.pixel-fox.is-dragging .pixel-fox__art {
  animation: none;
  transform: translateY(-9px) rotate(-7deg);
}
.pixel-fox.is-dragging .pixel-fox__tail {
  transform: translate(-2px, 5px) rotate(-18deg);
}
.pixel-fox.is-dragging .pixel-fox__legs {
  transform: translateY(6px);
}
.pixel-fox.is-dragging .pixel-fox__ear {
  transform: translateY(3px);
}
.pixel-fox.is-dragging .pixel-fox__scruff {
  opacity: 1;
}
.pixel-fox.is-dragging .pixel-fox__speech {
  opacity: 1;
  transform: translate(-50%, -10px);
}
.pixel-fox.is-licking .pixel-fox__tongue,
.pixel-fox.is-licking .pixel-fox__paw {
  opacity: 1;
}
.pixel-fox.is-licking .pixel-fox__tongue {
  animation: foxTongue 0.5s steps(2, end) infinite;
}
.pixel-fox.is-licking .pixel-fox__paw {
  animation: foxPaw 0.72s steps(2, end) infinite;
}
.pixel-fox.is-sleepy .pixel-fox__art {
  animation: none;
  transform: translateY(4px);
}
.pixel-fox.is-sleepy .pixel-fox__eye {
  transform: scaleY(0.35);
}
.pixel-fox.is-sleepy .pixel-fox__tail {
  transform: translate(2px, 5px) rotate(-8deg);
}
.pixel-fox.is-celebrating .pixel-fox__art {
  animation: foxCelebrate 0.34s steps(2, end) infinite;
}
.pixel-fox.is-celebrating .pixel-fox__tail {
  animation-duration: 0.44s;
}
.pixel-fox.is-being-swallowed {
  position: fixed;
  z-index: 135;
  pointer-events: none;
  animation: foxSwallowed 1.35s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.pixel-fox.is-being-swallowed .pixel-fox__art {
  animation: none;
}
.pixel-fox.is-being-swallowed .pixel-fox__tail {
  animation: none;
}
.pixel-fox.show-hint .pixel-fox__speech {
  opacity: 1;
  transform: translate(-50%, -10px);
}

.pixel-fox__speech {
  position: absolute;
  left: 50%;
  top: -6px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(51, 51, 51, 0.9);
  color: #FBF9F5;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pixel-fox__shadow {
  position: absolute;
  left: 24px;
  bottom: 9px;
  width: 70px;
  height: 12px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.12);
  filter: blur(1px);
}

.pixel-fox__art {
  position: absolute;
  left: 9px;
  bottom: 14px;
  width: 100px;
  height: auto;
  overflow: visible;
  transform-origin: 48% 80%;
  animation: foxIdle 1.9s steps(2, end) infinite;
  image-rendering: pixelated;
}

.fox-orange {
  fill: #E87424;
}

.fox-orange-dark {
  fill: #B94F1C;
}

.fox-cream {
  fill: #FFF1D8;
}

.fox-dark {
  fill: #333;
}

.fox-pink {
  fill: #FF9AA2;
}

.pixel-fox__tail,
.pixel-fox__head,
.pixel-fox__legs,
.pixel-fox__ear,
.pixel-fox__eye,
.pixel-fox__paw,
.pixel-fox__tongue {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.18s steps(2, end), opacity 0.18s ease;
}

.pixel-fox__tail {
  transform-origin: 80% 55%;
  animation: foxTail 1.5s steps(2, end) infinite;
}

.pixel-fox__paw,
.pixel-fox__tongue,
.pixel-fox__scruff {
  opacity: 0;
}

@keyframes microRipple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}
@keyframes microLabel {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.9);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -128%) scale(1);
  }
}
@keyframes microFirework {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  12% {
    opacity: 1;
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) scale(0.18);
  }
}
@keyframes microBlackHole {
  0% {
    opacity: 0;
    filter: blur(8px) saturate(0.8);
    transform: scale(0.18) rotate(0deg);
  }
  18% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    filter: blur(0) saturate(1.25);
    transform: scale(1.04) rotate(0deg);
  }
  100% {
    opacity: 0;
    filter: blur(12px) saturate(1.4);
    transform: scale(1.18) rotate(0deg);
  }
}
@keyframes microBlackHoleShock {
  0%, 100% {
    filter: blur(0) saturate(1) contrast(1);
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  7% {
    filter: blur(0.35px) saturate(0.98) contrast(0.99);
    transform: translate3d(7px, -4px, 0) rotate(0.16deg);
  }
  14% {
    filter: blur(0.7px) saturate(0.96) contrast(0.98);
    transform: translate3d(-9px, 4px, 0) rotate(-0.22deg);
  }
  22% {
    filter: blur(0.9px) saturate(0.94) contrast(0.98);
    transform: translate3d(8px, 6px, 0) rotate(0.2deg);
  }
  32% {
    filter: blur(0.75px) saturate(0.96) contrast(0.98);
    transform: translate3d(-6px, -5px, 0) rotate(-0.15deg);
  }
  44% {
    filter: blur(0.55px) saturate(0.98) contrast(0.99);
    transform: translate3d(5px, 3px, 0) rotate(0.12deg);
  }
  58% {
    filter: blur(0.35px) saturate(1) contrast(1);
    transform: translate3d(-3px, 2px, 0) rotate(-0.08deg);
  }
  74% {
    filter: blur(0.2px) saturate(1) contrast(1);
    transform: translate3d(2px, -1px, 0) rotate(0.04deg);
  }
}
@keyframes microBlackHoleRing {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes microStarPull {
  0% {
    opacity: 0;
    transform: scale(1.16) rotate(0deg);
  }
  28% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: scale(0.62) rotate(22deg);
  }
}
@keyframes microDiskWarp {
  from {
    filter: blur(0.4px) brightness(1);
  }
  to {
    filter: blur(1.4px) brightness(1.18);
  }
}
@keyframes microSpark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) scale(0);
  }
}
@keyframes processFireworkGlow {
  0%, 100% {
    box-shadow: none;
  }
  34% {
    box-shadow: 0 0 0 12px rgba(255, 152, 30, 0.08), 0 24px 80px rgba(255, 152, 30, 0.18);
  }
}
@keyframes microButtonPulse {
  0%, 100% {
    box-shadow: none;
  }
  42% {
    box-shadow: 0 0 0 10px rgba(255, 152, 30, 0.12), 0 16px 36px rgba(255, 152, 30, 0.16);
  }
}
@keyframes foxCelebrate {
  0%, 100% {
    transform: translateY(-2px) rotate(-3deg);
  }
  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}
@keyframes foxSwallowed {
  0% {
    opacity: 1;
    filter: drop-shadow(0 18px 18px rgba(51, 51, 51, 0.14));
    transform: translate3d(var(--fox-x), var(--fox-y), 0) scale(1) rotate(0deg);
  }
  42% {
    opacity: 1;
    filter: drop-shadow(0 18px 18px rgba(51, 51, 51, 0.14)) brightness(0.82);
    transform: translate3d(calc(var(--fox-target-x) + 74px), calc(var(--fox-target-y) - 48px), 0) scale(0.68) rotate(-240deg);
  }
  74% {
    opacity: 0.92;
    filter: drop-shadow(0 0 18px rgba(255, 152, 30, 0.18)) brightness(0.58);
    transform: translate3d(calc(var(--fox-target-x) - 18px), calc(var(--fox-target-y) + 10px), 0) scale(0.26) rotate(410deg);
  }
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(51, 51, 51, 0)) brightness(0.24);
    transform: translate3d(var(--fox-target-x), var(--fox-target-y), 0) scale(0.02) rotate(760deg);
  }
}
@keyframes foxRelease {
  0% {
    opacity: 0;
    transform: translate3d(var(--fox-x), calc(var(--fox-y) - 20px), 0) scale(0.88);
  }
  100% {
    opacity: 1;
    transform: translate3d(var(--fox-x), var(--fox-y), 0) scale(1);
  }
}
@keyframes foxIdle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}
@keyframes foxTail {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg) translateY(2px);
  }
}
@keyframes foxTongue {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
@keyframes foxPaw {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, -8px);
  }
}
@media (max-width: 720px) {
  body.menu-is-open {
    overflow: hidden;
  }
  header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 26px 16px;
  }
  header svg {
    position: relative;
    z-index: 2;
  }
  header nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 16px;
    right: 16px;
    width: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(51, 51, 51, 0.96);
    box-shadow: 0 28px 80px rgba(51, 51, 51, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.28s ease, transform 0.28s ease;
    visibility: hidden;
  }
  header.menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
  header.menu-open::before {
    opacity: 1;
    transform: scale(1);
  }
  header ul {
    counter-reset: mobile-menu;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    overflow: visible;
    padding-bottom: 0;
  }
  header li {
    counter-increment: mobile-menu;
  }
  header ul a {
    white-space: normal;
  }
  header nav a:not(.button) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #FBF9F5;
    font-family: "Brygada 1918", serif;
    font-size: 24px;
    line-height: 1;
  }
  header nav a:not(.button)::before {
    content: counter(mobile-menu, decimal-leading-zero);
    order: 2;
    color: #FF981E;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
  header nav a:not(.button)::after {
    display: none;
  }
  header .button.secundary {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    padding: 15px 18px;
    border: 0;
    border-radius: 14px;
    background: #FBF9F5;
    color: #333;
  }
  header .button.secundary:hover {
    background: #FF981E;
    color: #333;
  }
  header .button.secundary span {
    color: #FF981E;
  }
  header .button.secundary:hover span {
    color: #333;
  }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(51, 51, 51, 0.16);
    border-radius: 18px;
    background: #333;
    box-shadow: 0 16px 34px rgba(51, 51, 51, 0.12);
    cursor: pointer;
    transition: background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
  }
  .menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #FBF9F5;
    transition: transform 0.28s ease, width 0.28s ease, background-color 0.28s ease;
  }
  .menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
  }
  .menu-toggle span:nth-child(2) {
    width: 16px;
    transform: translateX(4px);
  }
  .menu-toggle span:nth-child(3) {
    transform: translateY(8px);
  }
  header.menu-open .menu-toggle {
    border-color: rgba(255, 152, 30, 0.3);
    background: #FF981E;
    transform: rotate(90deg);
  }
  header.menu-open .menu-toggle span {
    background: #333;
  }
  header.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }
  header.menu-open .menu-toggle span:nth-child(2) {
    width: 0;
  }
  header.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .main-area {
    gap: 92px;
  }
}
@media (max-width: 480px) {
  header {
    padding-top: 28px;
  }
  .micro-toast {
    right: 16px;
    bottom: 16px;
  }
  .pixel-fox {
    width: 104px;
    height: 86px;
  }
  .pixel-fox__art {
    width: 88px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none !important;
  }
  body.micro-black-hole-shock > header,
  body.micro-black-hole-shock > main,
  body.micro-black-hole-shock > footer {
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }
  .micro-cursor-glow,
  .micro-spark,
  .micro-star,
  .micro-firework,
  .micro-black-hole,
  .micro-card-glow,
  .micro-label,
  .micro-ripple {
    display: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}/*# sourceMappingURL=style.css.map */