:root {
  color-scheme: dark;
  --white: #ffffff;
  --ink: #080a0b;
  --teal: #20a8bd;
  --teal-deep: #061012;
  --purple: #8045d9;
  --purple-deep: #543184;
  --red: #f63a28;
  --red-deep: #b92c25;
  --text-soft: rgba(255, 255, 255, 0.84);
  --text-muted: rgba(255, 255, 255, 0.68);
  --divider: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family:
    "Outfit",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  line-height: 1.32;
}

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

.landing {
  --pattern-x: 0px;
  --pattern-y: 0px;
  --pattern-glow-x: 50%;
  --pattern-glow-y: 50%;
  position: relative;
  min-height: 100vh;
  padding: 0 clamp(20px, 4.2vw, 70px);
  overflow: hidden;
  isolation: isolate;
}

.landing::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at var(--pattern-glow-x) var(--pattern-glow-y),
    rgba(32, 168, 189, 0.18),
    transparent 32%
  );
  pointer-events: none;
}

.global-pattern {
  position: fixed;
  inset: -12%;
  z-index: -2;
  background-image: url("assets/background.webp");
  background-size: 2940px 2940px;
  background-position: calc(50% + var(--pattern-x)) calc(50% + var(--pattern-y));
  opacity: 0.78;
  filter: brightness(1.12) saturate(0.88);
  transform: translate3d(
      calc(var(--pattern-x) * -0.16),
      calc(var(--pattern-y) * -0.16),
      0
    )
    rotate(-5deg) scale(1.06);
  transition:
    opacity 420ms ease,
    filter 420ms ease;
  pointer-events: none;
  will-change: transform, background-position;
}

.hero-section,
.brand-card {
  --accent: var(--teal);
  --accent-deep: var(--teal-deep);
  --panel-x: 0px;
  --panel-y: 0px;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at var(--glow-x) var(--glow-y),
      color-mix(in srgb, var(--accent) 20%, transparent),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--accent-deep) 72%, rgba(0, 0, 0, 0.18)),
      color-mix(in srgb, var(--accent) 46%, rgba(0, 0, 0, 0.38))
    );
}

.hero-section {
  --accent: var(--teal);
  --accent-deep: #000000;
  display: grid;
  min-height: min(760px, 82svh);
  place-items: center;
  width: calc(100% + clamp(20px, 4.2vw, 70px) * 2);
  margin: 0 calc(clamp(20px, 4.2vw, 70px) * -1) clamp(28px, 4vw, 46px);
  border: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.62) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 850px);
  padding: clamp(24px, 3.4vw, 44px) clamp(22px, 5vw, 70px);
  text-align: center;
  animation: rise-in 850ms cubic-bezier(0.18, 0.78, 0.26, 1) both;
}

.hero-logo {
  width: min(76vw, 320px);
  max-height: clamp(180px, 30vh, 250px);
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.28));
  transform: translate3d(
    calc(var(--panel-x) * 0.02),
    calc(var(--panel-y) * 0.02),
    0
  );
  transition: transform 280ms ease;
}

.kicker {
  margin: clamp(14px, 2vh, 22px) 0 clamp(22px, 3vh, 34px);
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 300;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.hero-copy,
.copy-stack,
.commitment-grid {
  width: min(100%, 42rem);
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  color: var(--accent);
  font-size: clamp(1.36rem, 2.2vw, 2.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

p {
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.24vw, 1.18rem);
  font-weight: 300;
}

.hero-copy {
  display: grid;
  gap: 14px;
}

.hero-commitment {
  display: grid;
  gap: clamp(14px, 2vh, 22px);
  width: min(100%, 56rem);
  margin-top: clamp(18px, 2.4vh, 28px);
}

.hero-commitment h2 {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

.hero-commitment p {
}

.hero-copy p,
.copy-stack p,
.commitment-grid p {
  text-align: justify;
}

strong {
  color: var(--white);
  font-weight: 800;
}

.brands-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
  width: min(100%, 1220px);
  margin: 0 auto clamp(28px, 4vw, 48px);
}

.brand-card {
  --accent: var(--purple);
  --accent-deep: var(--purple-deep);
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.7vw, 48px);
  animation: rise-in 850ms cubic-bezier(0.18, 0.78, 0.26, 1) both;
}

.brand-card--logistics {
  --accent: var(--red);
  --accent-deep: var(--red-deep);
}

.brand-card-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(22px, 3vh, 34px);
}

.brand-card-head {
  display: grid;
  grid-template-rows: clamp(104px, 15vh, 150px) auto;
  justify-items: center;
  align-items: center;
}

.brand-card-head .kicker {
  margin-bottom: 0;
}

.brand-logo {
  display: block;
  align-self: center;
  justify-self: center;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.28));
  transform: translate3d(
    calc(var(--panel-x) * 0.02),
    calc(var(--panel-y) * 0.02),
    0
  );
  transition: transform 280ms ease;
}

.brand-logo--creative {
  max-width: min(100%, 340px);
  max-height: 150px;
}

.brand-logo--logistics {
  max-width: min(100%, 430px);
  max-height: 96px;
}

.copy-stack {
  display: grid;
  gap: clamp(16px, 2.2vh, 24px);
  justify-self: center;
}

.brand-card h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 300;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 70%, transparent);
}

.magnetic-button {
  --btn-x: 0px;
  --btn-y: 0px;
  --btn-rotate-x: 0deg;
  --btn-rotate-y: 0deg;
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: clamp(190px, 16vw, 260px);
  min-height: 62px;
  place-items: center;
  align-self: center;
  justify-self: center;
  margin-top: clamp(24px, 3vh, 34px);
  padding: 0 34px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: clamp(1.08rem, 1.6vw, 1.36rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translate3d(var(--btn-x), var(--btn-y), 0)
    rotateX(var(--btn-rotate-x)) rotateY(var(--btn-rotate-y));
  transform-style: preserve-3d;
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  will-change: transform;
}

.magnetic-button::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
}

.magnetic-button span {
  position: relative;
  z-index: 1;
  transform: translateZ(12px);
}

.magnetic-button span::before {
  content: "";
  position: absolute;
  inset: -0.18em -0.55em -0.2em;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at 50% 54%,
    rgba(0, 0, 0, 0.34),
    rgba(0, 0, 0, 0.18) 45%,
    transparent 72%
  );
  filter: blur(1px);
}

.magnetic-button.is-active {
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: saturate(1.06) brightness(1.03);
}

.magnetic-button--purple {
  --accent: var(--purple);
}

.magnetic-button--red {
  --accent: var(--red);
}

.commitment-grid {
  display: grid;
  gap: clamp(12px, 1.8vh, 18px);
  width: min(100%, 42rem);
  max-width: 42rem;
  margin-inline: auto;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: calc(100% + clamp(20px, 4.2vw, 70px) * 2);
  margin: clamp(46px, 6vw, 78px) calc(clamp(20px, 4.2vw, 70px) * -1) 0;
  padding: 34px 20px 42px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 90%);
  color: var(--text-muted);
  text-align: center;
}

.scroll-cue {
  display: none;
}

.site-footer p {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.92rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .landing {
    padding: 0;
  }

  .hero-section {
    min-height: 100svh;
    width: 100%;
    margin: 0;
    border: 0;
  }

  .hero-inner {
    padding: 26px 22px 38px;
  }

  .hero-logo {
    width: min(78vw, 315px);
    max-height: 260px;
  }

  .hero-copy,
  .copy-stack {
    width: min(100%, 650px);
  }

  h1,
  h2 {
    font-size: clamp(1.34rem, 6vw, 2.1rem);
  }

  p,
  .feature-list li {
    font-size: clamp(1.06rem, 4.2vw, 1.24rem);
  }

  .brands-section {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }

  .brand-card {
    min-height: auto;
    padding: 42px 22px 48px;
    border-width: 0 0 1px;
  }

  .brand-card-head {
    grid-template-rows: auto auto;
  }

  .brand-logo--creative,
  .brand-logo--logistics {
    max-width: min(100%, 330px);
  }

  .brand-logo--creative {
    max-height: 150px;
  }

  .brand-logo--logistics {
    max-height: 92px;
  }

  .hero-commitment {
    margin-top: 18px;
  }

  .hero-commitment p {
    font-size: clamp(1.06rem, 4.2vw, 1.24rem);
  }

  .site-footer {
    width: 100%;
    margin: 42px 0 0;
  }

  .global-pattern {
    background-size: 1860px 1860px;
    opacity: 0.56;
  }

  .scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    transform: translateX(-50%);
    animation: cue-float 1.45s ease-in-out infinite;
  }

  .scroll-cue span {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) rotate(45deg);
  }
}

@keyframes cue-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .global-pattern,
  .hero-logo,
  .brand-logo,
  .magnetic-button {
    transform: none !important;
  }
}
