:root {
  --bg: #fafaf7;
  --paper: #ffffff;
  --mist: #eef3f2;
  --ink: #071a24;
  --ink-secondary: #253943;
  --muted: #52636a;
  --teal: #16dde3;
  --teal2: #0aafc4;
  --teal-glow: rgba(22, 221, 227, 0.28);
  --line: rgba(7, 26, 36, 0.1);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 34px 90px rgba(7, 26, 36, 0.12);
  --shadow-sm: 0 12px 32px rgba(7, 26, 36, 0.08);
  --display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
  line-height: 1.55;
}

img, video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--teal2);
  outline-offset: 4px;
}

.progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient i {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
}

.ambient i:nth-child(1) {
  width: 460px;
  height: 460px;
  background: var(--teal);
  right: -150px;
  top: 10vh;
}

.ambient i:nth-child(2) {
  width: 400px;
  height: 400px;
  background: #dfe7dc;
  left: -120px;
  top: 45vh;
}

.ambient i:nth-child(3) {
  width: 300px;
  height: 300px;
  background: #fff;
  left: 40%;
  bottom: 8vh;
}

/* ==========================================================================
   Header & Standalone Navigation (Isolated Frozen Glass Menu Capsule)
   ========================================================================== */
.headerRoot {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transition: all 0.35s ease;
}

/* Standalone Logo on Left */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  pointer-events: auto;
  transition: transform 0.25s ease, color 0.3s ease;
}

.brand:hover {
  transform: scale(1.03);
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 6px;
  transition: background 0.3s ease;
}

.mark i {
  border-radius: 3px;
  background: var(--teal);
}

.mark i:nth-child(2) { opacity: 0.6; }
.mark i:nth-child(3) { opacity: 0.3; }

/* Isolated Floating Frosted Glass Menu Capsule */
.navCapsule {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(7, 26, 36, 0.1);
  border-radius: 999px;
  padding: 10px 28px;
  box-shadow: 0 16px 45px rgba(7, 26, 36, 0.08);
  display: flex;
  gap: 28px;
  align-items: center;
}

.navCapsule a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-secondary);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}

.navCapsule a:hover,
.navCapsule a[aria-current="page"] {
  opacity: 1;
  color: var(--teal2);
}

/* Standalone Book a Demo Action on Right */
.headerAction {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.headerAction .btn {
  pointer-events: auto;
}

/* Reveal Menu & CTA after 1st scroll */
.headerScrolled .navCapsule,
.headerScrolled .headerAction {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dark Background Adaptation (e.g. over #employee, .attendance, .footer) */
.headerDark .navCapsule {
  background: rgba(7, 26, 36, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.headerDark .navCapsule a {
  color: rgba(255, 255, 255, 0.85);
}

.headerDark .navCapsule a:hover,
.headerDark .navCapsule a[aria-current="page"] {
  color: var(--teal);
}

.headerDark .brand {
  color: #fff;
}

.headerDark .mark {
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(7, 26, 36, 0.18);
  transition: 0.25s;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  background: #102c37;
  box-shadow: 0 22px 50px rgba(7, 26, 36, 0.24);
}

.btn.small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.72rem;
}

.textBtn {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: var(--ink);
  transition: color 0.2s;
}

.textBtn:hover {
  color: var(--teal2);
}

.menuBtn {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  position: relative;
  pointer-events: auto;
}

.menuBtn span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s;
}

.menuBtn span:first-child { top: 18px; }
.menuBtn span:last-child { top: 28px; }

.menuBtn[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menuBtn[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.mobileMenu {
  position: fixed;
  z-index: 99;
  top: 84px;
  left: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.mobileMenu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobileMenu a:last-child {
  border: 0;
  margin-top: 10px;
}

.label {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal2);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.05em;
  line-height: 0.94;
  margin: 0;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.8rem, 6.5vw, 6.8rem);
}

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

.cta {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.cta.center {
  justify-content: center;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero {
  min-height: 100svh;
  padding: 140px 5vw 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 3vw;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "WORKFLOW";
  position: absolute;
  left: -5vw;
  top: 8vh;
  font-family: var(--display);
  font-size: clamp(7rem, 20vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  color: rgba(7, 26, 36, 0.035);
  line-height: 0.78;
  pointer-events: none;
}

.heroWords {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.8rem, 9vw, 9.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 span,
.hero h1 em {
  display: block;
  font-style: normal;
}

.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.heroWords > p:not(.label) {
  max-width: 600px;
  font-size: 1.15rem;
  color: #2f454d;
  margin: 24px 0 34px;
}

.commandDeck {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.deck.heroVideoDeck {
  position: relative;
  width: min(1140px, 64vw);
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck.heroVideoDeck video {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  display: block;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  overflow: visible;
  pointer-events: auto;
}

.deckChip {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(7, 26, 36, 0.08);
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(7, 26, 36, 0.08);
  padding: 12px 20px;
  animation: chipFloat 6s ease-in-out infinite alternate;
  pointer-events: auto;
}

.deckChip b,
.deckChip span {
  display: block;
}

.deckChip b {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.deckChip span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.deckChip.one {
  left: -2%;
  top: 18%;
  animation-delay: 0s;
}

.deckChip.two {
  right: 2%;
  bottom: 18%;
  animation-delay: 2s;
}

.deckChip.three {
  left: 8%;
  bottom: 2%;
  animation-delay: 4s;
}

@keyframes chipFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.heroIndex {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ==========================================================================
   2. Chaos to Order Section (Fixed Overlap & Seamless Transition)
   ========================================================================== */
.chaos {
  height: 250vh;
  background: var(--mist);
  position: relative;
}

.chaosSticky {
  height: 100vh;
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  padding: 6vw 5vw;
  overflow: hidden;
}

.chaosIntro {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: var(--title-op, 1);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.chaosIntro h2 {
  text-align: center;
  max-width: 1300px;
  font-size: clamp(3.2rem, 7.5vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.chaosCloud {
  position: absolute;
  inset: 0;
}

.chaosCloud span {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(7, 26, 36, 0.55);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(7, 26, 36, 0.08);
  border-radius: 999px;
  padding: 0.22em 0.55em;
  box-shadow: 0 10px 30px rgba(7, 26, 36, 0.06);
  opacity: var(--op, 1);
  transform: translate(var(--x, 0), var(--y, 0)) scale(var(--scale, 1)) rotate(var(--r, 0));
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.chaosCloud span:nth-child(1) { left: 8%; top: 16%; --r: -3deg; }
.chaosCloud span:nth-child(2) { right: 8%; top: 18%; --r: 2.5deg; }
.chaosCloud span:nth-child(3) { left: 14%; bottom: 20%; --r: 2deg; }
.chaosCloud span:nth-child(4) { right: 12%; bottom: 22%; --r: -2deg; }
.chaosCloud span:nth-child(5) { left: 40%; top: 8%; --r: -1deg; }
.chaosCloud span:nth-child(6) { left: 34%; bottom: 8%; --r: 3deg; }

/* Centered Resolution Container */
.afterContainer {
  position: absolute;
  text-align: center;
  max-width: 1100px;
  padding: 0 4vw;
  opacity: var(--after, 0);
  transform: scale(calc(0.85 + 0.15 * var(--after, 0))) translateY(calc(30px * (1 - var(--after, 0))));
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.afterLabel {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal2);
}

.afterLine {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0 0 34px;
}

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

.afterStats span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-secondary);
  box-shadow: 0 12px 30px rgba(7, 26, 36, 0.06);
}

.afterStats span b {
  color: var(--teal2);
  margin-right: 4px;
}

/* ==========================================================================
   3. Connected Workflow Journey (Full Width & Clean Layout)
   ========================================================================== */
.workflow {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--mist), var(--bg));
  width: 100%;
  overflow: hidden;
}

.workflowHeader {
  text-align: center;
  padding: 0 5vw;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.workflowHeader h2 {
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800;
}

.workflowSub {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 18px auto 0;
}

.workflowDiagramVisual {
  width: min(1200px, 90vw);
  height: auto;
  max-height: 580px;
  margin: 0 auto 52px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  filter: drop-shadow(0 25px 60px rgba(7, 26, 36, 0.12));
}

.workflowDiagramVisual img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
}

.workflowTrackWrapper {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 38px 0;
}

.workflowRail {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.railStep {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.stepNum {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal2);
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
}

.stepTitle {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.railDot {
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
   4. Scroll-Controlled Story (Alternating Left/Right Layout)
   ========================================================================== */
.pinned {
  height: 720vh;
  background: #f7f7f2;
}

.pinStage {
  height: 100vh;
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 5vw;
  padding: 84px 6vw;
  overflow: hidden;
  transition: all 0.5s ease;
}

.pinStage.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.pinStage.reverse .pinContent {
  order: 2;
  text-align: left;
}

.pinStage.reverse .pinVisual {
  order: 1;
}

.pinContent {
  transition: opacity 0.3s ease;
}

.pinContent b {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal2);
  display: block;
  margin-bottom: 12px;
}

.pinContent h2 {
  font-size: clamp(3rem, 6.8vw, 7.2rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.pinContent p:last-child {
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.6;
}

.pinVisual {
  height: 72vh;
  min-height: 560px;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.pinItem {
  position: absolute;
  margin: 0;
  left: 50%;
  top: 50%;
  width: min(920px, 86%);
  height: min(540px, 65vh);
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
  opacity: 0;
  transform: translate(-50%, -38%) scale(0.92) rotate(3deg);
  transition: 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 25px 55px rgba(7, 26, 36, 0.14));
}

.pinItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px 52px 36px 48px / 46px 36px 52px 42px;
  background: transparent;
}

.pinItem.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.pinItem.phoneFrame {
  width: auto;
  max-width: 320px;
  height: min(540px, 65vh);
  filter: drop-shadow(0 25px 50px rgba(7, 26, 36, 0.18));
}

.pinItem.phoneFrame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 40px 32px 44px 36px / 36px 44px 34px 42px;
  background: transparent;
}

.approveCard {
  padding: 38px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 38px 50px 36px 46px / 46px 36px 50px 40px;
  border: 1px solid rgba(7, 26, 36, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badgeTag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal2);
  background: var(--mist);
  padding: 4px 10px;
  border-radius: 999px;
}

.approveHead h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 10px;
}

.approveList {
  margin: 20px 0;
}

.approveList p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.approveList p span {
  color: var(--muted);
  font-size: 0.85rem;
}

.approveBtn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  transition: 0.25s;
}

.approveBtn:hover {
  background: #102c37;
}

.pinProgress {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 4vh;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.pinProgress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
}

/* ==========================================================================
   5. Manager Experience (Floating Bubble Badges Over Roster)
   ========================================================================== */
.manager {
  min-height: 120vh;
  padding: 130px 0 90px;
  overflow: hidden;
  background: var(--bg);
}

.managerText {
  padding: 0 6vw;
  max-width: 1200px;
  margin-bottom: 40px;
}

.managerText p:last-child {
  max-width: 640px;
  font-size: 1.15rem;
  margin-top: 18px;
}

.managerStage {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw;
}

.managerShot {
  margin: 0;
  width: 100%;
  height: 680px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  filter: drop-shadow(0 30px 70px rgba(7, 26, 36, 0.14));
}

.managerShot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: 44px;
  background: transparent;
}

.floatingBadge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(7, 26, 36, 0.08);
  border-radius: 24px;
  padding: 14px 20px;
  box-shadow: 0 20px 45px rgba(7, 26, 36, 0.12);
  animation: badgeHover 6s ease-in-out infinite alternate;
}

.floatingBadge small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.floatingBadge b {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 700;
}

.badgeDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px currentColor;
}

.badgeDot.green { background: #10b981; color: #10b981; }
.badgeDot.teal { background: var(--teal); color: var(--teal); }
.badgeDot.purple { background: #8b5cf6; color: #8b5cf6; }
.badgeDot.blue { background: #3b82f6; color: #3b82f6; }

.badge-spend { left: 6%; top: 8%; animation-delay: 0s; }
.badge-shifts { right: 6%; top: 14%; animation-delay: 1.5s; }
.badge-warnings { left: 10%; bottom: 12%; animation-delay: 3s; }
.badge-compliance { right: 8%; bottom: 10%; animation-delay: 4.5s; }

@keyframes badgeHover {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.02); }
}

/* ==========================================================================
   6. Employee Experience (Clean Floating Screens)
   ========================================================================== */
.employee {
  min-height: 115vh;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 5vw;
  padding: 120px 6vw;
  overflow: hidden;
}

.employee h2 {
  color: #fff;
  font-weight: 800;
}

.employee p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
  margin-top: 20px;
}

.phones {
  position: relative;
  height: 720px;
  overflow: visible;
}

.phones figure {
  position: absolute;
  margin: 0;
  width: 280px;
  height: 570px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  border: none;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.45));
}

.phones figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 38px 46px 36px 48px / 44px 36px 50px 40px;
  background: transparent;
  transition: transform 0.4s ease, border-radius 0.4s ease;
}

.phones figure:hover img {
  transform: scale(1.02);
  border-radius: 46px 38px 48px 36px / 36px 48px 40px 48px;
}

.phones figure:nth-child(1) { left: 0; top: 15%; transform: rotate(-7deg); }
.phones figure:nth-child(2) { left: 32%; top: 0; z-index: 2; transform: rotate(2deg); }
.phones figure:nth-child(3) { right: 0; bottom: 5%; transform: rotate(7deg); }

.phones figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   7. Attendance Section (Fixed Image & Clean Non-Overlapping Layout)
   ========================================================================== */
.attendance {
  padding: 130px 6vw;
  background: linear-gradient(180deg, var(--ink), #0d2832);
  color: #fff;
  overflow: hidden;
}

.attendanceHeader {
  max-width: 1100px;
  margin-bottom: 40px;
}

.attendance h2 {
  color: #fff;
  font-weight: 800;
}

.attendanceHeader p:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 780px;
  margin-top: 18px;
}

.attendanceCanvas {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4vw;
}

.attendanceLeft {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.statusWords {
  display: grid;
  gap: 12px;
}

.statusWords span {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.statusWords span:nth-child(2) {
  color: var(--teal);
}

.geoNodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.geoNode {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  width: fit-content;
}

.geoNode b {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.geoNode small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.livePulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  margin-right: 6px;
}

.attendanceVisual {
  margin: 0 auto;
  width: min(340px, 90vw);
  height: 590px;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.4));
}

.attendanceVisual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 40px;
  background: transparent;
}

/* ==========================================================================
   8. Direct Payroll Export
   ========================================================================== */
.payroll {
  min-height: 110vh;
  padding: 130px 6vw;
  background: var(--bg);
  text-align: center;
}

.payrollHeader {
  max-width: 1100px;
  margin: 0 auto 36px;
}

.payroll h2 {
  font-weight: 800;
}

.payrollHeader p:last-child {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 18px auto 0;
}

.payrollFlow {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.payrollFlow span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.76rem;
  color: var(--ink-secondary);
}

.payrollIntegrations {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.payrollBadge {
  background: var(--mist);
  border: 1px solid rgba(7, 26, 36, 0.08);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal2);
}

.payrollProof {
  width: min(1060px, 88vw);
  height: 440px;
  margin: 0 auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  filter: drop-shadow(0 25px 55px rgba(7, 26, 36, 0.12));
}

.payrollProof img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 36px 48px 34px 44px / 44px 34px 46px 38px;
  background: transparent;
}

/* ==========================================================================
   9. Multi-Location Command Center
   ========================================================================== */
.locations {
  padding: 130px 6vw;
  background: var(--mist);
  overflow: hidden;
}

.locationsHeader {
  max-width: 1100px;
  margin-bottom: 50px;
}

.locations h2 {
  font-weight: 800;
}

.locationsHeader p:last-child {
  font-size: 1.15rem;
  max-width: 700px;
  margin-top: 18px;
}

.locationCommandGrid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 22px;
}

.locCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(7, 26, 36, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.locCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(7, 26, 36, 0.1);
}

.locCard.mainHub {
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hubBadge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(22, 221, 227, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}

.mainHub h3 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #fff;
  font-weight: 800;
}

.hubMetrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.hubMetrics div b {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--teal);
  display: block;
}

.hubMetrics div span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hubStatusBar {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.barFill {
  display: block;
  height: 100%;
  width: 98.4%;
  background: var(--teal);
}

.locTop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.locTop h4 {
  font-size: 1.3rem;
  font-weight: 700;
}

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

.statusDot.online { background: #10b981; box-shadow: 0 0 8px #10b981; }
.statusDot.alert { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }

.locStatus {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.locMeta {
  font-size: 0.82rem;
  color: var(--teal2);
  font-weight: 600;
}

/* ==========================================================================
   10. Smart Alerts
   ========================================================================== */
.analytics {
  min-height: 100vh;
  padding: 130px 6vw;
  background: var(--bg);
  display: grid;
  grid-template-columns: 0.75fr 1.05fr 0.55fr;
  gap: 4vw;
  align-items: center;
}

.analytics h2 {
  font-weight: 800;
}

.analytics figure {
  height: 520px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  filter: drop-shadow(0 25px 60px rgba(7, 26, 36, 0.12));
}

.analytics figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  border-radius: 38px 48px 36px 44px / 44px 36px 48px 38px;
  background: transparent;
}

.alerts {
  display: grid;
  gap: 14px;
}

.alerts p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 15px 40px rgba(7, 26, 36, 0.07);
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alertIcon {
  font-size: 1.2rem;
}

/* ==========================================================================
   11. Redesigned Industries
   ========================================================================== */
.industries {
  padding: 130px 6vw;
  background: #f8f8f4;
}

.industriesHeader {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 56px;
}

.industries h2 {
  font-weight: 800;
}

.industriesSub {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 18px auto 0;
}

.industryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}

.industryCard {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(7, 26, 36, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industryCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(7, 26, 36, 0.2);
}

.industryCard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.industryCard:hover img {
  transform: scale(1.04);
}

.industryCard:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 36, 0.15) 0%, rgba(7, 26, 36, 0.88) 65%, rgba(7, 26, 36, 0.96) 100%);
  z-index: 2;
}

.indContent {
  position: relative;
  z-index: 3;
}

.indTag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(22, 221, 227, 0.18);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.indContent h3 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.indContent p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.indFeatures {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.indFeatures li {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.indFeatures li:before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

/* ==========================================================================
   12. Outcomes
   ========================================================================== */
.outcomes {
  min-height: 110vh;
  padding: 130px 6vw;
  background: var(--bg);
  display: grid;
  align-content: center;
}

.outcomes h2 {
  font-size: clamp(3.6rem, 9vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.outcomesList {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

.outcomesList span {
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: rgba(7, 26, 36, 0.22);
  transition: color 0.3s ease;
}

.outcomesList span.visible {
  color: var(--ink);
}

/* ==========================================================================
   13. Australia Section
   ========================================================================== */
.australia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mist);
  min-height: 95vh;
}

.australia figure {
  margin: 0;
  height: 95vh;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw;
  filter: drop-shadow(0 25px 65px rgba(7, 26, 36, 0.14));
}

.australia figure img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  border-radius: 52px 80px 46px 72px / 68px 48px 76px 56px;
  background: transparent;
  transition: border-radius 0.6s ease;
}

.australia figure img:hover {
  border-radius: 72px 50px 78px 52px / 52px 74px 54px 70px;
}

.australia div {
  align-self: center;
  padding: 6vw;
}

.australia h2 {
  font-weight: 800;
  letter-spacing: -0.05em;
}

.australia p:last-child {
  font-size: 1.15rem;
  max-width: 650px;
  margin-top: 20px;
}

/* ==========================================================================
   14. Trust Section (Balanced 5-Pillar Core Advantage Grid)
   ========================================================================== */
.trust {
  min-height: 85vh;
  padding: 130px 6vw;
  background: var(--bg);
}

.trustHeader {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}

.trust h2 {
  font-weight: 800;
}

.trustSub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}

.trustCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 12px 30px rgba(7, 26, 36, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trustCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(7, 26, 36, 0.09);
}

.trustIcon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.trustCard h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.trustCard p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   15. Final CTA (Text First, 3-Platform Showcase Seamlessly Merging Below)
   ========================================================================== */
.final {
  min-height: 110vh;
  padding: 130px 6vw 40px;
  background: radial-gradient(circle at 50% 15%, rgba(22, 221, 227, 0.18), transparent 36%), var(--mist);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.finalHeader {
  max-width: 1000px;
  margin: 0 auto 30px;
}

.final h2 {
  font-size: clamp(3rem, 7.5vw, 8rem);
  max-width: 1300px;
  font-weight: 800;
  margin: 18px auto 20px;
  color: var(--ink);
}

.finalHeader > p:not(.label) {
  max-width: 680px;
  font-size: 1.15rem;
  margin: 0 auto 32px;
}

.platformPills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.platformPills span {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(7, 26, 36, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 10px 25px rgba(7, 26, 36, 0.06);
}

.finalPlatformShowcase {
  position: relative;
  width: min(1080px, 92vw);
  margin-top: 10px;
}

.finalPlatformVisual {
  width: 100%;
  height: 480px;
  margin: 0 auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  filter: drop-shadow(0 30px 70px rgba(7, 26, 36, 0.14));
  mask-image: radial-gradient(ellipse at center 48%, black 65%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center 48%, black 65%, transparent 95%);
}

.finalPlatformVisual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 40px;
}

/* ==========================================================================
   16. Footer
   ========================================================================== */
.footer {
  padding: 80px 6vw 34px;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}

.footer p,
.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.68);
}

.footer a:hover {
  color: var(--teal);
}

.footer .brand {
  color: #fff;
}

.footer .mark {
  background: #fff;
}

.footer .mark i {
  background: var(--teal2);
}

.footer h2 {
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  max-width: 900px;
  color: #fff;
  font-weight: 800;
  margin: 18px 0 12px;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: start;
}

.footer nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.footer small {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   17. Responsive Media Queries
   ========================================================================== */
@media (max-width: 1050px) {
  .navCapsule,
  .headerAction {
    display: none;
  }
  .menuBtn {
    display: block;
  }
  .hero,
  .pinStage,
  .employee,
  .attendanceCanvas,
  .analytics,
  .australia,
  .footer {
    grid-template-columns: 1fr;
  }
  .pinStage.reverse {
    grid-template-columns: 1fr;
  }
  .commandDeck {
    height: 540px;
  }
  .deck.heroVideoDeck {
    width: 90vw;
    right: auto;
    height: 440px;
  }
  .pinVisual {
    height: 55vh;
  }
  .managerShot {
    height: 520px;
  }
  .phones {
    height: 650px;
  }
  .locationCommandGrid {
    grid-template-columns: 1fr;
  }
  .locCard.mainHub {
    grid-row: auto;
  }
  .analytics {
    gap: 34px;
  }
  .analytics figure {
    height: 420px;
  }
  .industryGrid {
    grid-template-columns: 1fr;
  }
  .australia figure {
    height: 520px;
  }
  .australia figure img {
    height: 480px;
    border-radius: 36px;
  }
}

@media (max-width: 700px) {
  h2 {
    font-size: clamp(2.4rem, 10vw, 4.2rem);
  }
  .headerRoot {
    left: 16px;
    right: 16px;
  }
  .hero {
    display: block;
    padding: 118px 20px 60px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }
  .commandDeck {
    height: 420px;
    margin: 20px 0 0;
  }
  .deck.heroVideoDeck {
    width: 100%;
    right: auto;
    height: 320px;
  }
  .deck.heroVideoDeck video {
    border-radius: 28px 36px 26px 34px;
  }
  .deckChip {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
  .chaos {
    height: 180vh;
  }
  .chaosCloud span {
    position: relative !important;
    display: inline-block;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 6px;
    font-size: 1rem;
  }
  .afterLine {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
  }
  .afterStats span {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .workflow {
    padding: 88px 0;
  }
  .workflowDiagramVisual {
    width: 100%;
    max-height: 320px;
    margin-bottom: 32px;
  }
  .pinned {
    height: auto;
  }
  .pinStage {
    height: auto;
    position: relative;
    padding: 88px 20px;
  }
  .pinVisual {
    height: 460px;
  }
  .pinItem {
    width: 100%;
    height: 320px;
  }
  .pinItem img {
    border-radius: 26px 34px 24px 30px;
  }
  .pinItem:not(.active) {
    display: none;
  }
  .pinItem.phoneFrame {
    width: auto;
    max-width: 220px;
    height: 420px;
  }
  .manager {
    padding-top: 90px;
  }
  .managerText {
    padding-inline: 20px;
  }
  .managerShot {
    height: 340px;
  }
  .managerShot img {
    border-radius: 26px;
  }
  .floatingBadge {
    position: static;
    margin-top: 10px;
    animation: none;
  }
  .employee {
    padding: 88px 20px;
  }
  .phones {
    height: 760px;
    margin-inline: -10px;
  }
  .phones figure {
    width: 220px;
    height: 455px;
  }
  .phones figure img {
    border-radius: 28px 36px 26px 32px;
  }
  .phones figure:nth-child(2) {
    left: 26%;
    top: 130px;
  }
  .attendance {
    padding: 88px 20px;
  }
  .attendanceCanvas {
    min-height: auto;
  }
  .attendanceVisual {
    width: 240px;
    height: 440px;
    margin-top: 20px;
  }
  .payroll {
    padding: 88px 20px;
  }
  .payrollProof {
    width: 100%;
    height: 240px;
  }
  .payrollProof img {
    border-radius: 24px 32px 22px 28px;
  }
  .locations {
    padding: 88px 20px;
  }
  .analytics {
    padding: 88px 20px;
  }
  .analytics figure {
    height: 310px;
  }
  .analytics figure img {
    border-radius: 24px 30px 22px 28px;
  }
  .industries {
    padding: 88px 20px;
  }
  .industryCard {
    min-height: 440px;
    padding: 24px;
  }
  .outcomes {
    padding: 88px 20px;
  }
  .australia div {
    padding: 50px 20px;
  }
  .australia figure {
    height: 380px;
  }
  .australia figure img {
    height: 360px;
    border-radius: 32px;
  }
  .trust {
    padding: 88px 20px;
  }
  .trustGrid {
    grid-template-columns: 1fr;
  }
  .final {
    padding: 88px 20px;
  }
  .finalPlatformVisual {
    height: 260px;
  }
  .finalPlatformVisual img {
    border-radius: 24px 30px 22px 28px;
  }
  .footer {
    padding: 62px 20px 30px;
  }
  .footer nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .chaos,
  .pinned {
    height: auto;
  }
  .chaosSticky,
  .pinStage {
    position: relative;
    height: auto;
  }
  .pinItem {
    display: none;
  }
  .pinItem.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
