:root {
  --pink: #e6115d;
  --pink-dark: #c70649;
  --ink: #080d2e;
  --muted: #5b6275;
  --soft: #fff2f7;
  --line: #f4c1d4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

.poster {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--soft);
}

.poster-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1536 / 1024;
}

.poster img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.hotspot:hover {
  background: rgba(230, 17, 93, 0.08);
}

.hotspot:focus-visible {
  outline: 3px solid #111633;
  outline-offset: 2px;
}

.nav-home { left: 33.2%; top: 7.3%; width: 4.4%; height: 3.8%; }
.nav-about { left: 39.3%; top: 7.3%; width: 5.8%; height: 3.8%; }
.nav-services { left: 47.3%; top: 7.3%; width: 7.7%; height: 3.8%; }
.nav-why { left: 57.7%; top: 7.3%; width: 6.5%; height: 3.8%; }
.nav-careers { left: 67.3%; top: 7.3%; width: 5.7%; height: 3.8%; }
.nav-contact { left: 76.0%; top: 7.3%; width: 7.0%; height: 3.8%; }

.app-download { left: 84.0%; top: 6.6%; width: 12.4%; height: 4.9%; }
.phone-link { left: 6.0%; top: 51.0%; width: 15.8%; height: 6.6%; }
.whatsapp-link { left: 24.0%; top: 51.0%; width: 11.8%; height: 6.6%; }
.play-store { left: 55.5%; top: 63.4%; width: 14.4%; height: 7.3%; }
.app-store { left: 72.9%; top: 63.4%; width: 14.4%; height: 7.3%; }
.careers-link { left: 15.0%; top: 81.6%; width: 9.8%; height: 3.2%; }

.mobile-summary,
.content-section,
.pink-band,
.hiring,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.mobile-summary {
  display: none;
}

.content-section {
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.08;
}

h1 {
  font-size: clamp(38px, 8vw, 76px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.brand-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.brand-card span {
  color: var(--pink);
  font-weight: 900;
  letter-spacing: 1px;
}

.quick-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quick-actions a,
.store-buttons a,
.hiring a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  border-radius: 8px;
  background: var(--pink);
  font-weight: 900;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(231, 17, 93, 0.1);
}

.cards h3 {
  color: var(--pink);
}

.pink-band {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px max(16px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), #f52e82);
}

.pink-band h2,
.pink-band p,
.pink-band .eyebrow {
  color: var(--white);
}

.pink-band p {
  margin-bottom: 0;
}

.store-buttons a {
  color: var(--ink);
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.hiring {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0;
}

.hiring h2 {
  color: var(--pink);
}

.footer {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 38px max(16px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--pink-dark);
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  font-size: 32px;
}

.footer h2,
.footer p,
.footer a,
.footer span {
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .poster {
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .poster-stage {
    width: 1180px;
    min-width: 1180px;
  }

  .mobile-summary {
    display: block;
    padding: 22px 0 0;
  }

  .cards,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .pink-band,
  .hiring {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-actions a,
  .store-buttons a,
  .hiring a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .poster {
    scroll-snap-type: x proximity;
  }

  .content-section {
    padding: 38px 0;
  }
}
