* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #FDF4D4;
  color: #111;
  overflow-x: hidden;
  position: relative;
  animation: unlockScroll 4.8s forwards;
}

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

a {
  color: inherit;
}

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #FDF4D4;
  transform: translateZ(0);
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(105px);
  mix-blend-mode: multiply;
}

.yellow-blob {
  width: 520px;
  height: 520px;
  background: rgba(244, 180, 0, 0.62);
  left: -130px;
  top: 80px;
  animation: moveYellow 18s ease-in-out infinite;
}

.grey-blob {
  width: 420px;
  height: 420px;
  background: rgba(175, 175, 175, 0.58);
  right: -110px;
  top: 35%;
  animation: moveGrey 20s ease-in-out infinite;
}

.cream-blob {
  width: 430px;
  height: 430px;
  background: rgba(255, 245, 207, 0.72);
  left: 12%;
  top: -120px;
  animation: moveCream 24s ease-in-out infinite;
}

.white-blob {
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.95);
  right: 10%;
  bottom: 15%;
  animation: moveWhite 16s ease-in-out infinite;
}

@keyframes moveYellow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(180px,90px); }
}

@keyframes moveGrey {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-150px,90px); }
}

@keyframes moveCream {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(160px,120px); }
}

@keyframes moveWhite {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-120px,-80px); }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 999;
  transition: padding 0.35s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.logo-icon {
  width: 70px;
}


.menu-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-btn img {
  width: 18px;
}

.navbar.scrolled .logo {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.navbar.scrolled .menu-btn {
  background: #f4b400;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.side-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(300px, 82vw);
  height: 100vh;
  padding: 82px 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  z-index: 1000;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu a {
  width: fit-content;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  position: relative;
}

.side-menu a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #2b2b2b;
  border-radius: 999px;

  transition:
    width 0.35s cubic-bezier(.22,1,.36,1);
}

.side-menu a:hover::after {
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 22px;
  right: 25px;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  font-size: 34px;
  cursor: pointer;
}

.close-btn:hover {
  background: #f4b400;
  color: white;
}

.hero-section {
  min-height: 620px;
  padding: 110px 24px 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-phone-wrap {
  display: flex;
  justify-content: flex-start;
  transform: translateX(-70px);
}

.hero-phone {
  width: 900px;
  max-width: none;
  transform: rotate(-1deg) translateY(-110px);
}

.hero-copy {
  display: flex;
  justify-content: flex-end;
  transform: translateX(-300px);
}

.hero-text-art {
  width: 320px;
  max-width: none;
  transform: translateY(-180px);
}


.photo-story {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
   margin-top: -80px;

  padding: 80px 0;
}

.story-video {
  width:1000px;
  border-radius: 26px;

  position: relative;
  z-index: 2;
}

.story-art {
  position: absolute;
  width: 120px;

  z-index: 1;
}

.art-left {
  left: 65px;
  top: 520px;
}

.art-top {
  top: -50px;
  left: 100px;
}

.art-right {
  right: 50px;
  top: 480px;
}

.intro-text {
  max-width: 590px;
  margin: 0 auto 20px;
   margin-left: 180px;
  padding: 0 48px;
}

.intro-text h1 {
  font-size: 35px;
  margin-bottom: 54px;
  margin-top: 154px;
}

.intro-text p {
  max-width: 500px;
  font-size: 24x;
  line-height: 1.35;
  font-weight: 700;
}

.features-map {
  position: relative;
  min-height: 430px;
  max-width: 760px;
  margin: 80px auto 120px;
}

.feature-pill {
  position: absolute;
  border-radius: 999px;
  padding: 24px 52px;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.feature-pill img {
  position: absolute;
  width: 58px;
  height: auto;
}

/* positions + colors */
.report {
  top: 20px;
  left: 230px;
  background: #fff5cf;
  transform: rotate(7deg);
}

.report img {
  top: -65px;
  left: 115px;
}

.smart {
  top: 55px;
  right: 0;
  background: #f4b400;
  transform: rotate(-10deg);
}

.safe {
  top: 135px;
  left: 45px;
  background: #e5e2da;
  transform: rotate(-5deg);
}

.safe img {
  top: -50px;
  left: 10px;
}

.unmatched {
  top: 150px;
  right: 40px;
  background: #fff5cf;
}

.unmatched img {
  top: -40px;
  right: 25px;
}

.discovery {
  top: 255px;
  left: 285px;
  background: #f4b400;

  position: absolute;
}

.discovery-art {
  position: absolute;

  width: 58px;

  top: -70px;
  left: 50%;

  transform: translateX(-50%);
}


.screens-marquee {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}

.screens-line-art {
  position: absolute;
  top: 20px;
  left: -80px;
  width: 1200px;
  z-index: 0;
}

.screens-track {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  width: max-content;
  animation: moveScreens 22s linear infinite;
}

.screens-track img {
  width: 210px;
  border: 6px solid #2b2b2b;
  border-radius: 28px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

@keyframes moveScreens {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.phone-feature {
  max-width: 650px;
  margin: 0 auto 80px;
  padding: 0 45px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}

.phone-feature h2 {
  font-size: 48px;
  line-height: 1.05;
  text-align: left;
  transform: translateX(-80px);
}

.tilted-phone {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
   width: 600px;
  height: 600px;
}


.tilted-phone img {
  position: relative;
  width: 520px;
  filter: drop-shadow(0 20px 18px rgba(0,0,0,0.22));
  transform: translateX(-80px);
}

.small-description {
  max-width: 600px;
  margin: 0 auto 120px;
  padding: 0 42px;
  display: flex;
  justify-content: flex-end;
  
}

.small-description p {
  max-width: 300px;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 700;
  text-align: justify;
}

.bottom-phone-photo {
  width: 100%;
  overflow: hidden;

  display: flex;
  justify-content: center;

  padding: 80px 0 0;
}

.bottom-phone-photo img {
  width: 1260px;

  max-width: none;

  transform: rotate(0deg);

  display: block;
}


.about-section {
  position: relative;
  background: #2b2b2b;
  color: white;
  min-height: 760px;
  padding: 70px 110px 90px;
  overflow: hidden;
}

.about-section h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-left: 40px;
}

.team {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 220px;
  margin-top: 20px;
}

.person {
  position: relative;
}

.person img {
  width: 250px;
  height: 360px;
  object-fit: cover;

  border-radius: 999px;
}

.fernanda {
  margin-top: 0;
}

.nami {
  margin-top: 0;
}

.nami img {
  filter: sepia(1) saturate(2.4) hue-rotate(355deg);
}

/* Fernanda name */
.fernanda p {
  position: absolute;
  left: -70px;
  bottom: 5px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Designer text */
.role-vertical {
  position: absolute;
  left: -35px;
  top: 120px;
  font-size: 16px;
  font-weight: 300;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}


.nami p {
  margin-top: 22px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.nami span {
  display: block;

  margin-left: 180px;
  margin-top: -20px;

  font-size: 16px;
}

.nami small {
  display: block;
  font-size: 8px;
}

/* yellow art */
.about-corner {
  position: absolute;
  width: 150px;
}

.top-right {
  top: -60px;
  right: -5px;
}

.bottom-left {
  bottom: -60px;
  left: 45px;
}

.cta-section {
  background: #f4b400;
  padding: 58px 54px 35px;
  min-height: 430px;
}

.cta-logo img {
  width: 75px;
  margin-left: 35px;
  margin-bottom: 20px;
}

.cta-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-main h2 {
  font-size: 31px;
  line-height: 1.15;
  font-weight: 500;
}

.contact-circle {
  width: 120px;
  height: 120px;
  background: #282828;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 12px;
  flex: 0 0 auto;
}

.cta-line {
  height: 1px;
  background: #292929;
  margin: 28px 0 22px;
}

.store-buttons {
  display: flex;
  gap: 30px;
  margin-bottom: 70px;
}

.store-buttons a {
  min-width: 130px;
  text-align: center;
  text-decoration: none;
  background: #282828;
  color: white;
  padding: 12px 25px;
  border-radius: 999px;
  font-size: 12px;
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
}

.footer-socials {
  display: flex;
  align-items: flex-start;
  gap: 38px;
}

.footer-socials a {
  text-decoration: none;
  line-height: 1.05;
}

.footer-socials span {
  font-size: 8px;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  animation:
    splashBg 4.8s ease forwards,
    splashHide 4.8s ease forwards;
}

.splash-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  animation:
    houseIntro 1.2s cubic-bezier(.22,1,.36,1) forwards,
    houseMoveLeft 1s cubic-bezier(.22,1,.36,1) 2.2s forwards,
    houseZoomKeyhole 1s cubic-bezier(.65,0,.35,1) 3.55s forwards;
}

.splash-house {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.splash-house-orange {
  opacity: 1;
  animation: orangeDisappear 0.45s ease 1.8s forwards;
}

.splash-house-dark {
  opacity: 0;
  animation: darkAppear 0.45s ease 1.8s forwards;
}

.splash-wordmark {
  position: absolute;
  top: calc(50% - 2px);
left: 45%;
  width: 240px;
  opacity: 0;
   transform: translate(-10px, -50%);
  animation:
  wordmarkSlide 0.9s cubic-bezier(.22,1,.36,1) 2.55s forwards,
  wordmarkHide 0.25s ease 3.45s forwards;
}

@keyframes wordmarkHide {
  to {
    opacity: 0;
  }
}

@keyframes houseIntro {
  0% {
    transform: translateY(160px) scale(0.85);
    opacity: 0;
  }

  45% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  65% {
    transform: translateY(0) scale(1.18);
  }

  100% {
    transform: translateY(0) scale(0.88);
  }
}

@keyframes splashBg {
  0%, 37% {
    background: #2b2b2b;
  }

  48%, 88% {
    background: #ffffff;
  }

  100% {
    background: transparent;
  }
}

@keyframes orangeDisappear {
  to {
    opacity: 0;
  }
}

@keyframes darkAppear {
  to {
    opacity: 1;
  }
}

@keyframes houseMoveLeft {
  to {
    transform: translateX(-95px) scale(0.88);
  }
}

@keyframes wordmarkSlide {
  to {
    opacity: 1;
    transform: translate(45px, -50%);
  }
}

@keyframes houseZoomKeyhole {
  0% {
    transform: translateX(-95px) scale(0.88);
  }

  100% {
    transform: translateX(-95px) scale(28);
  }
}

@keyframes splashHide {
  0%, 92% {
    opacity: 1;
    pointer-events: auto;
  }

  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 700px) {
  .hero-section {
    min-height: 560px;
    grid-template-columns: 1fr 1fr;
    padding-top: 95px;
  }

  .hero-phone {
    width: 150px;
  }

  .hero-text-art {
    width: 190px;
  }

  .photo-story img {
    height: 300px;
  }

  .features-map {
    transform: scale(0.78);
    transform-origin: center;
    margin-top: -25px;
    margin-bottom: 35px;
  }

  .screens-strip {
    justify-content: flex-start;
    padding-left: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .screens-strip::-webkit-scrollbar {
    display: none;
  }

  .phone-feature {
    grid-template-columns: 1fr 1.1fr;
    padding: 0 30px;
  }

  .small-description p {
    font-size: 16px;
  }

  .team {
    gap: 25px;
  }
}


  .hero-phone-wrap,
  .hero-copy {
    justify-content: center;
  }

  .photo-story {
    padding: 0 16px;
  }
  .intro-text p {
  text-align: justify;
}

  .intro-text {
    padding: 0 28px;
  }

  .about-section,
  .cta-section {
    padding-left: 32px;
    padding-right: 32px;
     padding-bottom: 10px;
  }

 .cta-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  
}

  .cta-main h2 {
    font-size: 26px;
  }
.contact-circle {
  position: relative;
  overflow: hidden;

  background: #282828;
  color: white;
  width: 120px;
  height: 120px;
  transform: translate(-100px, 80px);
}

.contact-circle::before {
  content: '';

  position: absolute;
  left: 0;
  bottom: -100%;

  width: 100%;
  height: 100%;

  background: #000000;

  transition:
    bottom 0.55s cubic-bezier(.22,1,.36,1);

  z-index: 0;
}

.contact-circle:hover::before {
  bottom: 0;
}

.contact-circle span {
  position: relative;
  z-index: 2;
}


  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-socials {
  display: flex;
  align-items: flex-start;
  gap: 38px;
  transform: translate(0px, -40px);

  justify-content: flex-end;

  margin-left: auto;
}

@media (max-width: 430px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }


}


/* ===== REAL RESPONSIVE MOBILE FIX ===== */


@media (max-width: 768px) {
  .splash-wordmark {
  width: 215px !important;

  left: 28% !important;

  top: calc(50% + 4px) !important;
}
}

.side-menu a {
  position: relative;
}

.side-menu a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #2b2b2b;
  border-radius: 999px;

  transition: width 0.35s cubic-bezier(.22,1,.36,1);
}

.side-menu a:hover::after,
.side-menu a:focus::after,
.side-menu a:active::after {
  width: 100%;
}


  html,
 body {
  font-family: Arial, sans-serif;
  background: #FDF4D4;
  color: #111;
  overflow-x: hidden;
  position: relative;
  animation: unlockScroll 4.8s forwards;
}

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

  section {
    max-width: 100%;
  }

  .hero-section {
    grid-template-columns: 1fr;
    max-width: 100%;
    min-height: auto;
    padding: 110px 20px 40px;
    gap: 0;
  }

  .hero-phone-wrap,
  .hero-copy {
    transform: none !important;
    justify-content: center;
  }

  .hero-phone {
    width: min(82vw, 340px) !important;
    max-width: 100%;
    transform: rotate(-1deg) translateY(-30px) !important;
  }

  .hero-text-art {
    width: min(70vw, 260px) !important;
    max-width: 100%;
    transform: translateY(-35px) !important;
  }

  .photo-story {
    margin-top: 0 !important;
    padding: 35px 16px 70px !important;
    overflow: visible;
  }

  .story-video {
    width: 100% !important;
    max-width: 92vw !important;
    height: auto !important;
    border-radius: 18px;
  }

  .story-art {
    width: 38px !important;
     height: 38px !important;
  }

  .art-top {
    top: 0 !important;
    left: 18px !important;
  }

  .art-left {
    top: auto !important;
    bottom: 38px !important;
    left: 18px !important;
  }

  .art-right {
    top: auto !important;
    bottom: 35px !important;
    right: 18px !important;
  }

  .intro-text {
    max-width: 100% !important;
    margin: 0 0 70px !important;
    padding: 0 28px !important;
  }

  .intro-text h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .intro-text p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.35;
  }

  .features-map {
    width: 100%;
    max-width: 360px;
    min-height: 520px;
    margin: 40px auto 80px !important;
    transform: none !important;
  }

  .feature-pill {
    padding: 16px 24px;
    font-size: 16px;
    white-space: nowrap;
  }

  .feature-pill img,
  .discovery-art {
    width: 40px !important;
  }

  .report {
    top: 20px !important;
    left: 70px !important;
  }

  .smart {
    top: 105px !important;
    right: 20px !important;
  }

  .safe {
    top: 185px !important;
    left: 8px !important;
  }

  .unmatched {
    top: 285px !important;
    right: 8px !important;
  }

  .discovery {
    top: 395px !important;
    left: 90px !important;
  }

  .screens-marquee {
    padding: 45px 0 80px;
  }

  .screens-line-art {
    width: 720px !important;
    max-width: none;
  }

  .screens-track {
    gap: 26px;
  }

  .screens-track img {
    width: 145px !important;
    border-width: 4px;
    border-radius: 20px;
  }

  .phone-feature {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 26px;
    margin-bottom: 40px;
  }

  .phone-feature h2 {
    font-size: clamp(36px, 10vw, 48px);
    transform: none !important;
  }

  .tilted-phone {
    width: 100% !important;
    height: auto !important;
    min-height: 360px;
  }

  .tilted-phone img {
    width: min(82vw, 340px) !important;
    transform: none !important;
  }

  .small-description {
    max-width: 100%;
    margin-bottom: 70px;
    padding: 0 28px;
    justify-content: flex-start;
  }

  .small-description p {
    max-width: 300px;
    font-size: 16px;
  }

  .bottom-phone-photo {
    height: 320px;
    padding-top: 0;
    overflow: hidden;
  }

  .bottom-phone-photo img {
    width: 760px !important;
    max-width: none;
  }

  .about-section {
    min-height: auto;
    padding: 60px 28px 80px;
  }

  .about-section h2 {
    font-size: 42px;
    margin-left: 0;
  }

  .team {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .person img {
    width: 220px !important;
    height: 320px !important;
  }

  .fernanda p,
  .nami p {
    font-size: 22px;
  }

  .cta-section {
    min-height: auto;
    padding: 45px 28px 30px;
  }

  .cta-main {
    align-items: flex-start;
    gap: 18px;
  }

  .cta-main h2 {
    font-size: 27px;
  }

  .contact-circle {
    width: 92px !important;
    height: 92px !important;
    transform: translate(0, 45px) !important;
  }

  .store-buttons {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 38px;
  }

  .store-buttons a {
    min-width: auto;
    padding: 11px 20px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-socials {
    transform: none !important;
    margin-left: 0;
    gap: 24px;
    flex-wrap: wrap;
  }



.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,1,.36,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


.works-marquee {
  overflow: hidden !important;
  padding: 90px 0 !important;
  background: transparent !important;
}

.works-track {
  display: flex !important;
  gap: 46px !important;
  width: max-content !important;
  animation: moveWorks 55s linear infinite !important;
}

.works-track img {
    width: 420px !important;
  height: 320px !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14) !important;
}

@keyframes moveWorks {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}
